diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-30 13:07:17 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-30 13:07:17 +0200 |
commit | e3bbd665a9ab8208fdc9c20aee8ac0b4cee682d8 (patch) | |
tree | 3eab3943af8e5d9a2bb6425ad6cc690a6d1961ff /lisp/calendar/appt.el | |
parent | bd3bc1c924d4b65f0413a7df9b74f6facd0d2a1a (diff) | |
download | emacs-e3bbd665a9ab8208fdc9c20aee8ac0b4cee682d8.tar.gz emacs-e3bbd665a9ab8208fdc9c20aee8ac0b4cee682d8.tar.bz2 emacs-e3bbd665a9ab8208fdc9c20aee8ac0b4cee682d8.zip |
Use decoded time accessors in appt
* lisp/calendar/appt.el (appt-check, appt-make-list): Use decoded
time accessors.
Diffstat (limited to 'lisp/calendar/appt.el')
-rw-r--r-- | lisp/calendar/appt.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/calendar/appt.el b/lisp/calendar/appt.el index b7aa2123a43..944054eee35 100644 --- a/lisp/calendar/appt.el +++ b/lisp/calendar/appt.el @@ -325,7 +325,7 @@ displayed in a window: (prev-appt-display-count appt-display-count) ;; Convert current time to minutes after midnight (12.01am = 1). (now (decode-time)) - (now-mins (+ (* 60 (nth 2 now)) (nth 1 now))) + (now-mins (+ (* 60 (decoded-time-hour now)) (decoded-time-minute now))) appt-mins appt-warn-time min-to-app min-list string-list) (save-excursion ; FIXME ? ;; At first check in any day, update appointments to today's list. @@ -647,7 +647,8 @@ Any appointments made with `appt-add' are not affected by this function." ;; Convert current time to minutes after midnight (12:01am = 1), ;; and remove elements in the list that are in the past. (let* ((now (decode-time)) - (now-mins (+ (* 60 (nth 2 now)) (nth 1 now)))) + (now-mins (+ (* 60 (decoded-time-hour now)) + (decoded-time-minute now)))) (while (and appt-time-msg-list (< (caar (car appt-time-msg-list)) now-mins)) (setq appt-time-msg-list (cdr appt-time-msg-list))))))) |