Formatting changes only.
[emacs.git] / lisp / calendar / appt.el
blobd8663e02afc35523d4a67e9e06a1f02c375b3b44
1 ;;; appt.el --- appointment notification functions
3 ;; Copyright (C) 1989, 1990, 1994, 1998, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Neil Mager <neilm@juliet.ll.mit.edu>
7 ;; Maintainer: Glenn Morris <rgm@gnu.org>
8 ;; Keywords: calendar
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
27 ;;; Commentary:
30 ;; appt.el - visible and/or audible notification of
31 ;; appointments from diary file.
33 ;;;
34 ;;; Thanks to Edward M. Reingold for much help and many suggestions,
35 ;;; And to many others for bug fixes and suggestions.
36 ;;;
37 ;;;
38 ;;; This functions in this file will alert the user of a
39 ;;; pending appointment based on his/her diary file. This package
40 ;;; is documented in the Emacs manual.
41 ;;;
42 ;;; To activate this package, simply use (appt-activate 1).
43 ;;; A `diary-file' with appointments of the format described in the
44 ;;; documentation of the function `appt-check' is required.
45 ;;; Relevant customizable variables are also listed in the
46 ;;; documentation of that function.
47 ;;;
48 ;;; Today's appointment list is initialized from the diary when this
49 ;;; package is activated. Additionally, the appointments list is
50 ;;; recreated automatically at 12:01am for those who do not logout
51 ;;; every day or are programming late. It is also updated when the
52 ;;; `diary-file' is saved. Calling `appt-check' with an argument forces
53 ;;; a re-initialization at any time.
54 ;;;
55 ;;; In order to add or delete items from today's list, without
56 ;;; changing the diary file, use `appt-add' and `appt-delete'.
57 ;;;
59 ;;; Brief internal description - Skip this if you are not interested!
60 ;;;
61 ;;; The function `appt-make-list' creates the appointments list which
62 ;;; `appt-check' reads.
63 ;;;
64 ;;; You can change the way the appointment window is created/deleted by
65 ;;; setting the variables
66 ;;;
67 ;;; appt-disp-window-function
68 ;;; and
69 ;;; appt-delete-window-function
70 ;;;
71 ;;; For instance, these variables could be set to functions that display
72 ;;; appointments in pop-up frames, which are lowered or iconified after
73 ;;; `appt-display-interval' minutes.
74 ;;;
76 ;;; Code:
78 ;; Make sure calendar is loaded when we compile this.
79 (require 'calendar)
81 (defvar diary-selective-display)
84 (defgroup appt nil
85 "Appointment notification."
86 :group 'calendar)
88 (defcustom appt-issue-message t
89 "Non-nil means check for appointments in the diary buffer.
90 To be detected, the diary entry must have the format described in the
91 documentation of the function `appt-check'."
92 :type 'boolean
93 :group 'appt)
95 (make-obsolete-variable 'appt-issue-message
96 "use the function `appt-activate', and the \
97 variable `appt-display-format' instead." "22.1")
99 (defcustom appt-message-warning-time 12
100 "Time in minutes before an appointment that the warning begins."
101 :type 'integer
102 :group 'appt)
104 (defcustom appt-audible t
105 "Non-nil means beep to indicate appointment."
106 :type 'boolean
107 :group 'appt)
109 (defcustom appt-visible t
110 "Non-nil means display appointment message in echo area.
111 This variable is only relevant if `appt-msg-window' is nil."
112 :type 'boolean
113 :group 'appt)
115 (make-obsolete-variable 'appt-visible 'appt-display-format "22.1")
117 (defcustom appt-msg-window t
118 "Non-nil means display appointment message in another window.
119 If non-nil, this variable overrides `appt-visible'."
120 :type 'boolean
121 :group 'appt)
123 (make-obsolete-variable 'appt-msg-window 'appt-display-format "22.1")
125 ;; TODO - add popup.
126 (defcustom appt-display-format 'ignore
127 "How appointment reminders should be displayed.
128 The options are:
129 window - use a separate window
130 echo - use the echo area
131 nil - no visible reminder.
132 See also `appt-audible' and `appt-display-mode-line'.
134 The default value is 'ignore, which means to fall back on the value
135 of the (obsolete) variables `appt-msg-window' and `appt-visible'."
136 :type '(choice
137 (const :tag "Separate window" window)
138 (const :tag "Echo-area" echo)
139 (const :tag "No visible display" nil)
140 (const :tag "Backwards compatibility setting - choose another value"
141 ignore))
142 :group 'appt
143 :version "22.1")
145 (defcustom appt-display-mode-line t
146 "Non-nil means display minutes to appointment and time on the mode line.
147 This is in addition to any other display of appointment messages."
148 :type 'boolean
149 :group 'appt)
151 (defcustom appt-display-duration 10
152 "The number of seconds an appointment message is displayed.
153 Only relevant if reminders are to be displayed in their own window."
154 :type 'integer
155 :group 'appt)
157 (defcustom appt-display-diary t
158 "Non-nil displays the diary when the appointment list is first initialized.
159 This will occur at midnight when the appointment list is updated."
160 :type 'boolean
161 :group 'appt)
163 (defcustom appt-display-interval 3
164 "Number of minutes to wait between checking the appointment list."
165 :type 'integer
166 :group 'appt)
168 (defcustom appt-disp-window-function 'appt-disp-window
169 "Function called to display appointment window.
170 Only relevant if reminders are being displayed in a window."
171 :type '(choice (const appt-disp-window)
172 function)
173 :group 'appt)
175 (defcustom appt-delete-window-function 'appt-delete-window
176 "Function called to remove appointment window and buffer.
177 Only relevant if reminders are being displayed in a window."
178 :type '(choice (const appt-delete-window)
179 function)
180 :group 'appt)
183 ;;; Internal variables below this point.
185 (defconst appt-buffer-name " *appt-buf*"
186 "Name of the appointments buffer.")
188 (defvar appt-time-msg-list nil
189 "The list of appointments for today.
190 Use `appt-add' and `appt-delete' to add and delete appointments.
191 The original list is generated from today's `diary-entries-list', and
192 can be regenerated using the function `appt-check'.
193 Each element of the generated list has the form (MINUTES STRING [FLAG]); where
194 MINUTES is the time in minutes of the appointment after midnight, and
195 STRING is the description of the appointment.
196 FLAG, if non-nil, says that the element was made with `appt-add'
197 so calling `appt-make-list' again should preserve it.")
199 (defconst appt-max-time (1- (* 24 60))
200 "11:59pm in minutes - number of minutes in a day minus 1.")
202 (defvar appt-mode-string nil
203 "String being displayed in the mode line saying you have an appointment.
204 The actual string includes the amount of time till the appointment.
205 Only used if `appt-display-mode-line' is non-nil.")
207 (defvar appt-prev-comp-time nil
208 "Time of day (mins since midnight) at which we last checked appointments.
209 A nil value forces the diary file to be (re-)checked for appointments.")
211 (defvar appt-now-displayed nil
212 "Non-nil when we have started notifying about a appointment that is near.")
214 (defvar appt-display-count nil
215 "Internal variable used to count number of consecutive reminders.")
217 (defvar appt-timer nil
218 "Timer used for diary appointment notifications (`appt-check').
219 If this is non-nil, appointment checking is active.")
222 ;;; Functions.
224 (defun appt-display-message (string mins)
225 "Display a reminder about an appointment.
226 The string STRING describes the appointment, due in integer MINS minutes.
227 The format of the visible reminder is controlled by `appt-display-format'.
228 The variable `appt-audible' controls the audible reminder."
229 ;; Let-binding for backwards compatability. Remove when obsolete
230 ;; vars appt-msg-window and appt-visible are dropped.
231 (let ((appt-display-format
232 (if (eq appt-display-format 'ignore)
233 (cond (appt-msg-window 'window)
234 (appt-visible 'echo))
235 appt-display-format)))
236 (cond ((eq appt-display-format 'window)
237 (funcall appt-disp-window-function
238 (number-to-string mins)
239 ;; TODO - use calendar-month-abbrev-array rather than %b?
240 (format-time-string "%a %b %e " (current-time))
241 string)
242 (run-at-time (format "%d sec" appt-display-duration)
244 appt-delete-window-function))
245 ((eq appt-display-format 'echo)
246 (message "%s" string)))
247 (if appt-audible (beep 1))))
250 (defun appt-check (&optional force)
251 "Check for an appointment and update any reminder display.
252 If optional argument FORCE is non-nil, reparse the diary file for
253 appointments. Otherwise the diary file is only parsed once per day,
254 and when saved.
256 Note: the time must be the first thing in the line in the diary
257 for a warning to be issued. The format of the time can be either
258 24 hour or am/pm. For example:
260 02/23/89
261 18:00 Dinner
263 Thursday
264 11:45am Lunch meeting.
266 Appointments are checked every `appt-display-interval' minutes.
267 The following variables control appointment notification:
269 `appt-display-format'
270 Controls the format in which reminders are displayed.
272 `appt-audible'
273 Variable used to determine if reminder is audible.
274 Default is t.
276 `appt-message-warning-time'
277 Variable used to determine when appointment message
278 should first be displayed.
280 `appt-display-mode-line'
281 If non-nil, a generic message giving the time remaining
282 is shown in the mode-line when an appointment is due.
284 `appt-display-interval'
285 Interval in minutes at which to check for pending appointments.
287 `appt-display-diary'
288 Display the diary buffer when the appointment list is
289 initialized for the first time in a day.
291 The following variables are only relevant if reminders are being
292 displayed in a window:
294 `appt-display-duration'
295 The number of seconds an appointment message is displayed.
297 `appt-disp-window-function'
298 Function called to display appointment window.
300 `appt-delete-window-function'
301 Function called to remove appointment window and buffer."
302 (let* ((min-to-app -1)
303 (prev-appt-mode-string appt-mode-string)
304 (prev-appt-display-count (or appt-display-count 0))
305 ;; Non-nil means do a full check for pending appointments and
306 ;; display in whatever ways the user has selected. When no
307 ;; appointment is being displayed, we always do a full check.
308 (full-check
309 (or (not appt-now-displayed)
310 ;; This is true every appt-display-interval minutes.
311 (zerop (mod prev-appt-display-count appt-display-interval))))
312 ;; Non-nil means only update the interval displayed in the mode line.
313 (mode-line-only
314 (and (not full-check) appt-now-displayed)))
315 (when (or full-check mode-line-only)
316 (save-excursion
317 ;; Get the current time and convert it to minutes
318 ;; from midnight, i.e.: 12:01am = 1, midnight = 0.
319 (let* ((now (decode-time))
320 (cur-hour (nth 2 now))
321 (cur-min (nth 1 now))
322 (cur-comp-time (+ (* cur-hour 60) cur-min)))
323 ;; At the first check in any given day, update our
324 ;; appointments to today's list.
325 (if (or force ; eg initialize, diary save
326 (null appt-prev-comp-time) ; first check
327 (< cur-comp-time appt-prev-comp-time)) ; new day
328 (condition-case nil
329 (if appt-display-diary
330 (let ((diary-hook
331 (if (assoc 'appt-make-list diary-hook)
332 diary-hook
333 (cons 'appt-make-list diary-hook))))
334 (diary))
335 (let* ((diary-display-hook 'appt-make-list)
336 (d-buff (find-buffer-visiting
337 (substitute-in-file-name diary-file)))
338 (selective
339 (if d-buff ; diary buffer exists
340 (with-current-buffer d-buff
341 diary-selective-display))))
342 (diary)
343 ;; If the diary buffer existed before this command,
344 ;; restore its display state. Otherwise, kill it.
345 (if d-buff
346 ;; Displays the diary buffer.
347 (or selective (diary-show-all-entries))
348 (and
349 (setq d-buff (find-buffer-visiting
350 (substitute-in-file-name diary-file)))
351 (kill-buffer d-buff)))))
352 (error nil)))
353 (setq appt-prev-comp-time cur-comp-time
354 appt-mode-string nil
355 appt-display-count nil)
356 ;; If there are entries in the list, and the user wants a
357 ;; message issued, get the first time off of the list and
358 ;; calculate the number of minutes until the appointment.
359 (if (and appt-issue-message appt-time-msg-list)
360 (let ((appt-comp-time (car (car (car appt-time-msg-list)))))
361 (setq min-to-app (- appt-comp-time cur-comp-time))
363 (while (and appt-time-msg-list
364 (< appt-comp-time cur-comp-time))
365 (setq appt-time-msg-list (cdr appt-time-msg-list))
366 (if appt-time-msg-list
367 (setq appt-comp-time
368 (car (car (car appt-time-msg-list))))))
369 ;; If we have an appointment between midnight and
370 ;; `appt-message-warning-time' minutes after midnight,
371 ;; we must begin to issue a message before midnight.
372 ;; Midnight is considered 0 minutes and 11:59pm is
373 ;; 1439 minutes. Therefore we must recalculate the
374 ;; minutes to appointment variable. It is equal to the
375 ;; number of minutes before midnight plus the number
376 ;; of minutes after midnight our appointment is.
377 (if (and (< appt-comp-time appt-message-warning-time)
378 (> (+ cur-comp-time appt-message-warning-time)
379 appt-max-time))
380 (setq min-to-app (+ (- (1+ appt-max-time) cur-comp-time)
381 appt-comp-time)))
382 ;; Issue warning if the appointment time is within
383 ;; appt-message-warning time.
384 (when (and (<= min-to-app appt-message-warning-time)
385 (>= min-to-app 0))
386 (setq appt-now-displayed t
387 appt-display-count (1+ prev-appt-display-count))
388 (unless mode-line-only
389 (appt-display-message (cadr (car appt-time-msg-list))
390 min-to-app))
391 (when appt-display-mode-line
392 (setq appt-mode-string
393 (format " App't in %s min." min-to-app)))
394 ;; When an appointment is reached, delete it from
395 ;; the list. Reset the count to 0 in case we
396 ;; display another appointment on the next cycle.
397 (if (zerop min-to-app)
398 (setq appt-time-msg-list (cdr appt-time-msg-list)
399 appt-display-count nil)))))
400 ;; If we have changed the mode line string, redisplay all
401 ;; mode lines.
402 (and appt-display-mode-line
403 (not (equal appt-mode-string
404 prev-appt-mode-string))
405 (progn
406 (force-mode-line-update t)
407 ;; If the string now has a notification, redisplay
408 ;; right now.
409 (if appt-mode-string
410 (sit-for 0)))))))))
412 (defun appt-disp-window (min-to-app new-time appt-msg)
413 "Display appointment message APPT-MSG in a separate buffer.
414 The appointment is due in MIN-TO-APP (a string) minutes.
415 NEW-TIME is a string giving the date."
416 ;; Make sure we're not in the minibuffer before splitting the window.
417 ;; FIXME this seems needlessly complicated?
418 (when (minibufferp)
419 (other-window 1)
420 (and (minibufferp) (display-multi-frame-p) (other-frame 1)))
421 (let ((this-window (selected-window))
422 (appt-disp-buf (set-buffer (get-buffer-create appt-buffer-name))))
423 (if (cdr (assq 'unsplittable (frame-parameters)))
424 ;; In an unsplittable frame, use something somewhere else.
425 (display-buffer appt-disp-buf)
426 (unless (or (special-display-p (buffer-name appt-disp-buf))
427 (same-window-p (buffer-name appt-disp-buf)))
428 ;; By default, split the bottom window and use the lower part.
429 (appt-select-lowest-window)
430 ;; Split the window, unless it's too small to do so.
431 (when (>= (window-height) (* 2 window-min-height))
432 (select-window (split-window))))
433 (switch-to-buffer appt-disp-buf))
434 (calendar-set-mode-line
435 (format " Appointment in %s minutes. %s " min-to-app new-time))
436 (erase-buffer)
437 (insert appt-msg)
438 (shrink-window-if-larger-than-buffer (get-buffer-window appt-disp-buf t))
439 (set-buffer-modified-p nil)
440 (raise-frame (selected-frame))
441 (select-window this-window)))
443 (defun appt-delete-window ()
444 "Function called to undisplay appointment messages.
445 Usually just deletes the appointment buffer."
446 (let ((window (get-buffer-window appt-buffer-name t)))
447 (and window
448 (or (eq window (frame-root-window (window-frame window)))
449 (delete-window window))))
450 (kill-buffer appt-buffer-name)
451 (if appt-audible
452 (beep 1)))
454 (defun appt-select-lowest-window ()
455 "Select the lowest window on the frame."
456 (let ((lowest-window (selected-window))
457 (bottom-edge (nth 3 (window-edges))))
458 (walk-windows (lambda (w)
459 (let ((next-bottom-edge (nth 3 (window-edges w))))
460 (when (< bottom-edge next-bottom-edge)
461 (setq bottom-edge next-bottom-edge
462 lowest-window w)))) 'nomini)
463 (select-window lowest-window)))
465 (defconst appt-time-regexp
466 "[0-9]?[0-9]\\(h\\([0-9][0-9]\\)?\\|[:.][0-9][0-9]\\)\\(am\\|pm\\)?")
468 ;;;###autoload
469 (defun appt-add (new-appt-time new-appt-msg)
470 "Add an appointment for today at NEW-APPT-TIME with message NEW-APPT-MSG.
471 The time should be in either 24 hour format or am/pm format."
472 (interactive "sTime (hh:mm[am/pm]): \nsMessage: ")
473 (unless (string-match appt-time-regexp new-appt-time)
474 (error "Unacceptable time-string"))
475 (let ((time-msg (list (list (appt-convert-time new-appt-time))
476 (concat new-appt-time " " new-appt-msg) t)))
477 (unless (member time-msg appt-time-msg-list)
478 (setq appt-time-msg-list
479 (appt-sort-list (nconc appt-time-msg-list (list time-msg)))))))
481 ;;;###autoload
482 (defun appt-delete ()
483 "Delete an appointment from the list of appointments."
484 (interactive)
485 (let ((tmp-msg-list appt-time-msg-list))
486 (while tmp-msg-list
487 (let* ((element (car tmp-msg-list))
488 (prompt-string (concat "Delete "
489 ;; We want to quote any doublequotes
490 ;; in the string, as well as put
491 ;; doublequotes around it.
492 (prin1-to-string
493 (substring-no-properties
494 (car (cdr element)) 0))
495 " from list? "))
496 (test-input (y-or-n-p prompt-string)))
497 (setq tmp-msg-list (cdr tmp-msg-list))
498 (if test-input
499 (setq appt-time-msg-list (delq element appt-time-msg-list)))))
500 (appt-check)
501 (message "")))
504 (defvar number)
505 (defvar original-date)
506 (defvar diary-entries-list)
507 ;;;###autoload
508 (defun appt-make-list ()
509 "Update the appointments list from today's diary buffer.
510 The time must be at the beginning of a line for it to be
511 put in the appointments list (see examples in documentation of
512 the function `appt-check'). We assume that the variables DATE and
513 NUMBER hold the arguments that `diary-list-entries' received.
514 They specify the range of dates that the diary is being processed for.
516 Any appointments made with `appt-add' are not affected by this
517 function.
519 For backwards compatibility, this function activates the
520 appointment package (if it is not already active)."
521 ;; See comments above appt-activate defun.
522 (if (not appt-timer)
523 (appt-activate 1)
524 ;; We have something to do if the range of dates that the diary is
525 ;; considering includes the current date.
526 (if (and (not (calendar-date-compare
527 (list (calendar-current-date))
528 (list original-date)))
529 (calendar-date-compare
530 (list (calendar-current-date))
531 (list (calendar-gregorian-from-absolute
532 (+ (calendar-absolute-from-gregorian original-date)
533 number)))))
534 (save-excursion
535 ;; Clear the appointments list, then fill it in from the diary.
536 (dolist (elt appt-time-msg-list)
537 ;; Delete any entries that were not made with appt-add.
538 (unless (nth 2 elt)
539 (setq appt-time-msg-list
540 (delq elt appt-time-msg-list))))
541 (if diary-entries-list
542 ;; Cycle through the entry-list (diary-entries-list)
543 ;; looking for entries beginning with a time. If the
544 ;; entry begins with a time, add it to the
545 ;; appt-time-msg-list. Then sort the list.
546 (let ((entry-list diary-entries-list)
547 (new-time-string ""))
548 ;; Skip diary entries for dates before today.
549 (while (and entry-list
550 (calendar-date-compare
551 (car entry-list) (list (calendar-current-date))))
552 (setq entry-list (cdr entry-list)))
553 ;; Parse the entries for today.
554 (while (and entry-list
555 (calendar-date-equal
556 (calendar-current-date) (car (car entry-list))))
557 (let ((time-string (cadr (car entry-list))))
558 (while (string-match appt-time-regexp time-string)
559 (let* ((beg (match-beginning 0))
560 ;; Get just the time for this appointment.
561 (only-time (match-string 0 time-string))
562 ;; Find the end of this appointment
563 ;; (the start of the next).
564 (end (string-match
565 (concat "\n[ \t]*" appt-time-regexp)
566 time-string
567 (match-end 0)))
568 ;; Get the whole string for this appointment.
569 (appt-time-string
570 (substring time-string beg (if end (1- end)))))
571 ;; Add this appointment to appt-time-msg-list.
572 (let* ((appt-time (list (appt-convert-time only-time)))
573 (time-msg (list appt-time appt-time-string)))
574 (setq appt-time-msg-list
575 (nconc appt-time-msg-list (list time-msg))))
576 ;; Discard this appointment from the string.
577 (setq time-string
578 (if end (substring time-string end) "")))))
579 (setq entry-list (cdr entry-list)))))
580 (setq appt-time-msg-list (appt-sort-list appt-time-msg-list))
581 ;; Get the current time and convert it to minutes from
582 ;; midnight, i.e. 12:01am = 1, midnight = 0, so that the
583 ;; elements in the list that are earlier than the present
584 ;; time can be removed.
585 (let* ((now (decode-time))
586 (cur-hour (nth 2 now))
587 (cur-min (nth 1 now))
588 (cur-comp-time (+ (* cur-hour 60) cur-min))
589 (appt-comp-time (car (caar appt-time-msg-list))))
591 (while (and appt-time-msg-list (< appt-comp-time cur-comp-time))
592 (setq appt-time-msg-list (cdr appt-time-msg-list))
593 (if appt-time-msg-list
594 (setq appt-comp-time (car (caar appt-time-msg-list))))))))))
597 (defun appt-sort-list (appt-list)
598 "Sort an appointment list, putting earlier items at the front.
599 APPT-LIST is a list of the same format as `appt-time-msg-list'."
600 (sort appt-list (lambda (e1 e2) (< (caar e1) (caar e2)))))
603 (defun appt-convert-time (time2conv)
604 "Convert hour:min[am/pm] format to minutes from midnight.
605 A period (.) can be used instead of a colon (:) to separate the
606 hour and minute parts."
607 ;; Formats that should be accepted:
608 ;; 10:00 10.00 10h00 10h 10am 10:00am 10.00am
609 (let ((min (if (string-match "[h:.]\\([0-9][0-9]\\)" time2conv)
610 (string-to-number (match-string 1 time2conv))
612 (hr (if (string-match "[0-9]*[0-9]" time2conv)
613 (string-to-number (match-string 0 time2conv))
614 0)))
615 ;; Convert the time appointment time into 24 hour time.
616 (cond ((and (string-match "pm" time2conv) (< hr 12))
617 (setq hr (+ 12 hr)))
618 ((and (string-match "am" time2conv) (= hr 12))
619 (setq hr 0)))
620 ;; Convert the actual time into minutes.
621 (+ (* hr 60) min)))
623 (defun appt-update-list ()
624 "If the current buffer is visiting the diary, update appointments.
625 This function is intended for use with `write-file-functions'."
626 (and (string-equal buffer-file-name (expand-file-name diary-file))
627 appt-timer
628 (let ((appt-display-diary nil))
629 (appt-check t)))
630 nil)
632 ;; In Emacs-21.3, the manual documented the following procedure to
633 ;; activate this package:
634 ;; (display-time)
635 ;; (add-hook 'diary-hook 'appt-make-list)
636 ;; (diary 0)
637 ;; The display-time call was not necessary, AFAICS.
638 ;; What was really needed was to add the hook and load this file.
639 ;; Calling (diary 0) once the hook had been added was in some sense a
640 ;; roundabout way of loading this file. This file used to have code at
641 ;; the top-level that set up the appt-timer and global-mode-string.
642 ;; One way to maintain backwards compatibility would be to call
643 ;; (appt-activate 1) at top-level. However, this goes against the
644 ;; convention that just loading an Emacs package should not activate
645 ;; it. Instead, we make appt-make-list activate the package (after a
646 ;; suggestion from rms). This means that one has to call diary in
647 ;; order to get it to work, but that is in line with the old (weird,
648 ;; IMO) documented behavior for activating the package.
649 ;; Actually, since (diary 0) does not run diary-hook, I don't think
650 ;; the documented behavior in Emacs-21.3 would ever have worked.
651 ;; Oh well, at least with the changes to appt-make-list it will now
652 ;; work as well as it ever did.
653 ;; The new method is just to use (appt-activate 1).
654 ;; -- gmorris
656 ;;;###autoload
657 (defun appt-activate (&optional arg)
658 "Toggle checking of appointments.
659 With optional numeric argument ARG, turn appointment checking on if
660 ARG is positive, otherwise off."
661 (interactive "P")
662 (let ((appt-active appt-timer))
663 (setq appt-active (if arg (> (prefix-numeric-value arg) 0)
664 (not appt-active)))
665 (remove-hook 'write-file-functions 'appt-update-list)
666 (or global-mode-string (setq global-mode-string '("")))
667 (delq 'appt-mode-string global-mode-string)
668 (when appt-timer
669 (cancel-timer appt-timer)
670 (setq appt-timer nil))
671 (when appt-active
672 (add-hook 'write-file-functions 'appt-update-list)
673 (setq appt-timer (run-at-time t 60 'appt-check)
674 global-mode-string
675 (append global-mode-string '(appt-mode-string)))
676 (appt-check t))))
679 (provide 'appt)
681 ;; arch-tag: bf5791c4-8921-499e-a26f-772b1788d347
682 ;;; appt.el ends here