aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2006-09-23 21:39:42 +0000
committerGlenn Morris2006-09-23 21:39:42 +0000
commit8a76ffd1435bc0fc42983f5c1bf9b4ce59c1d679 (patch)
treeaddaa7e174fb30a58d91a469dc40b897be9503e9
parent47c131a004fef4cb1b5363e9e075b75c57509362 (diff)
downloademacs-8a76ffd1435bc0fc42983f5c1bf9b4ce59c1d679.tar.gz
emacs-8a76ffd1435bc0fc42983f5c1bf9b4ce59c1d679.zip
From Jeff Miller <jmiller at cablespeed.com> (tiny change)
(appt-check): Fix typo for appointments just after midnight.
-rw-r--r--lisp/calendar/appt.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calendar/appt.el b/lisp/calendar/appt.el
index 29e6fe56b6e..892c76bba0c 100644
--- a/lisp/calendar/appt.el
+++ b/lisp/calendar/appt.el
@@ -394,8 +394,8 @@ displayed in a window:
394 (if (and (< appt-comp-time appt-message-warning-time) 394 (if (and (< appt-comp-time appt-message-warning-time)
395 (> (+ cur-comp-time appt-message-warning-time) 395 (> (+ cur-comp-time appt-message-warning-time)
396 appt-max-time)) 396 appt-max-time))
397 (setq min-to-app (+ (- (1+ appt-max-time) cur-comp-time)) 397 (setq min-to-app (+ (- (1+ appt-max-time) cur-comp-time)
398 appt-comp-time)) 398 appt-comp-time)))
399 399
400 ;; issue warning if the appointment time is 400 ;; issue warning if the appointment time is
401 ;; within appt-message-warning time 401 ;; within appt-message-warning time