]> git.eshelyaron.com Git - emacs.git/commitdiff
Use decoded time accessors in appt
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 30 Jul 2019 11:07:17 +0000 (13:07 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 30 Jul 2019 11:07:17 +0000 (13:07 +0200)
* lisp/calendar/appt.el (appt-check, appt-make-list): Use decoded
time accessors.

lisp/calendar/appt.el

index b7aa2123a43fc7967b65f57ab8d783640498cdce..944054eee3533838a5030b67e0647b6b01f1f9ab 100644 (file)
@@ -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)))))))