aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Pluim2023-01-23 14:42:11 +0100
committerRobert Pluim2023-01-23 14:44:37 +0100
commit3e62ddc0d87dfceb67af49c5f1caee4d03fc33b8 (patch)
tree87da83bdbc051051b7d17e1a800a19a80dc00325
parentb88d47beb00da7b302aaf757be611f200ae803b3 (diff)
downloademacs-3e62ddc0d87dfceb67af49c5f1caee4d03fc33b8.tar.gz
emacs-3e62ddc0d87dfceb67af49c5f1caee4d03fc33b8.zip
; * lisp/calendar/appt.el (appt-check): Fix byte-compile warning
-rw-r--r--lisp/calendar/appt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/appt.el b/lisp/calendar/appt.el
index a209623b65e..49597739446 100644
--- a/lisp/calendar/appt.el
+++ b/lisp/calendar/appt.el
@@ -409,7 +409,7 @@ displayed in a window:
409 'face 'mode-line-emphasis) 409 'face 'mode-line-emphasis)
410 " "))) 410 " ")))
411 ;; Reset count to 0 in case we display another appt on the next cycle. 411 ;; Reset count to 0 in case we display another appt on the next cycle.
412 (setq appt-display-count (if (eq '(0) min-list) 0 412 (setq appt-display-count (if (equal '(0) min-list) 0
413 (1+ prev-appt-display-count)))) 413 (1+ prev-appt-display-count))))
414 ;; If we have changed the mode line string, redisplay all mode lines. 414 ;; If we have changed the mode line string, redisplay all mode lines.
415 (and appt-display-mode-line 415 (and appt-display-mode-line