|
@@ -759,11 +759,10 @@ was started."
|
|
|
(goto-char (match-end 0)))
|
|
|
nil))))))
|
|
|
(let (char-pressed)
|
|
|
- (if (featurep 'xemacs)
|
|
|
- (progn
|
|
|
- (message (concat (funcall prompt-fn clock)
|
|
|
- " [(kK)eep (sS)ubtract (C)ancel]? "))
|
|
|
- (setq char-pressed (read-char-exclusive)))
|
|
|
+ (when (featurep 'xemacs)
|
|
|
+ (message (concat (funcall prompt-fn clock)
|
|
|
+ " [(kK)eep (sS)ubtract (C)ancel]? "))
|
|
|
+ (setq char-pressed (read-char-exclusive)))
|
|
|
(while (or (null char-pressed)
|
|
|
(and (not (memq char-pressed '(?k ?K ?s ?S ?C ?i)))
|
|
|
(or (ding) t)))
|
|
@@ -771,7 +770,7 @@ was started."
|
|
|
(read-char (concat (funcall prompt-fn clock)
|
|
|
" [(kK)p (sS)ub (C)ncl (i)gn]? ")
|
|
|
nil 45)))
|
|
|
- (and (not (eq char-pressed ?i)) char-pressed))))))
|
|
|
+ (and (not (eq char-pressed ?i)) char-pressed)))))
|
|
|
(default (floor (/ (org-float-time
|
|
|
(time-subtract (current-time) last-valid)) 60)))
|
|
|
(keep (and (memq ch '(?k ?K))
|