Refill some long/short copyright headers.
[bpt/emacs.git] / lisp / calendar / appt.el
1 ;;; appt.el --- appointment notification functions
2
3 ;; Copyright (C) 1989-1990, 1994, 1998, 2001-2011
4 ;; Free Software Foundation, Inc.
5
6 ;; Author: Neil Mager <neilm@juliet.ll.mit.edu>
7 ;; Maintainer: Glenn Morris <rgm@gnu.org>
8 ;; Keywords: calendar
9 ;; Package: calendar
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Commentary:
27
28 ;;
29 ;; appt.el - visible and/or audible notification of
30 ;; appointments from diary file.
31 ;;
32 ;;
33 ;; Thanks to Edward M. Reingold for much help and many suggestions,
34 ;; And to many others for bug fixes and suggestions.
35 ;;
36 ;;
37 ;; This functions in this file will alert the user of a
38 ;; pending appointment based on his/her diary file. This package
39 ;; is documented in the Emacs manual.
40 ;;
41 ;; To activate this package, simply use (appt-activate 1).
42 ;; A `diary-file' with appointments of the format described in the
43 ;; documentation of the function `appt-check' is required.
44 ;; Relevant customizable variables are also listed in the
45 ;; documentation of that function.
46 ;;
47 ;; Today's appointment list is initialized from the diary when this
48 ;; package is activated. Additionally, the appointments list is
49 ;; recreated automatically at 12:01am for those who do not logout
50 ;; every day or are programming late. It is also updated when the
51 ;; `diary-file' (or a file it includes) is saved. Calling
52 ;; `appt-check' with an argument (or re-enabling the package) forces a
53 ;; 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 ;;
58
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 ;;
75
76 ;;; Code:
77
78 (require 'diary-lib)
79
80
81 (defgroup appt nil
82 "Appointment notification."
83 :prefix "appt-"
84 :group 'calendar)
85
86 (defcustom appt-message-warning-time 12
87 "Time in minutes before an appointment that the warning begins."
88 :type 'integer
89 :group 'appt)
90
91 (defcustom appt-audible t
92 "Non-nil means beep to indicate appointment."
93 :type 'boolean
94 :group 'appt)
95
96 ;; TODO - add popup.
97 (defcustom appt-display-format 'window
98 "How appointment reminders should be displayed.
99 The options are:
100 window - use a separate window
101 echo - use the echo area
102 nil - no visible reminder.
103 See also `appt-audible' and `appt-display-mode-line'."
104 :type '(choice
105 (const :tag "Separate window" window)
106 (const :tag "Echo-area" echo)
107 (const :tag "No visible display" nil))
108 :group 'appt
109 :version "24.1") ; no longer inherit from deleted obsolete variables
110
111 (defcustom appt-display-mode-line t
112 "Non-nil means display minutes to appointment and time on the mode line.
113 This is in addition to any other display of appointment messages."
114 :type 'boolean
115 :group 'appt)
116
117 (defcustom appt-display-duration 10
118 "The number of seconds an appointment message is displayed.
119 Only relevant if reminders are to be displayed in their own window."
120 :type 'integer
121 :group 'appt)
122
123 (defcustom appt-display-diary t
124 "Non-nil displays the diary when the appointment list is first initialized.
125 This will occur at midnight when the appointment list is updated."
126 :type 'boolean
127 :group 'appt)
128
129 (defcustom appt-display-interval 3
130 "Number of minutes to wait between checking the appointment list."
131 :type 'integer
132 :group 'appt)
133
134 (defcustom appt-disp-window-function 'appt-disp-window
135 "Function called to display appointment window.
136 Only relevant if reminders are being displayed in a window.
137 It should take three string arguments: the number of minutes till
138 the appointment, the current time, and the text of the appointment."
139 :type '(choice (const appt-disp-window)
140 function)
141 :group 'appt)
142
143 (defcustom appt-delete-window-function 'appt-delete-window
144 "Function called to remove appointment window and buffer.
145 Only relevant if reminders are being displayed in a window."
146 :type '(choice (const appt-delete-window)
147 function)
148 :group 'appt)
149
150
151 ;;; Internal variables below this point.
152
153 (defconst appt-buffer-name "*appt-buf*"
154 "Name of the appointments buffer.")
155
156 ;; TODO Turn this into an alist? It would be easier to add more
157 ;; optional elements.
158 ;; TODO There should be a way to set WARNTIME (and other properties)
159 ;; from the diary-file. Implementing that would be a good reason
160 ;; to change this to an alist.
161 (defvar appt-time-msg-list nil
162 "The list of appointments for today.
163 Use `appt-add' and `appt-delete' to add and delete appointments.
164 The original list is generated from today's `diary-entries-list', and
165 can be regenerated using the function `appt-check'.
166 Each element of the generated list has the form
167 \(MINUTES STRING [FLAG] [WARNTIME])
168 where MINUTES is the time in minutes of the appointment after midnight,
169 and STRING is the description of the appointment.
170 FLAG and WARNTIME can only be present if the element was made
171 with `appt-add'. A non-nil FLAG indicates that the element was made
172 with `appt-add', so calling `appt-make-list' again should preserve it.
173 If WARNTIME is non-nil, it is an integer to use in place
174 of `appt-message-warning-time'.")
175
176 (defconst appt-max-time (1- (* 24 60))
177 "11:59pm in minutes - number of minutes in a day minus 1.")
178
179 (defvar appt-mode-string nil
180 "String being displayed in the mode line saying you have an appointment.
181 The actual string includes the amount of time till the appointment.
182 Only used if `appt-display-mode-line' is non-nil.")
183 (put 'appt-mode-string 'risky-local-variable t) ; for 'face property
184
185 (defvar appt-prev-comp-time nil
186 "Time of day (mins since midnight) at which we last checked appointments.
187 A nil value forces the diary file to be (re-)checked for appointments.")
188
189 (defvar appt-now-displayed nil
190 "Non-nil when we have started notifying about a appointment that is near.")
191
192 (defvar appt-display-count nil
193 "Internal variable used to count number of consecutive reminders.")
194
195 (defvar appt-timer nil
196 "Timer used for diary appointment notifications (`appt-check').
197 If this is non-nil, appointment checking is active.")
198
199
200 ;;; Functions.
201
202 (defun appt-display-message (string mins)
203 "Display a reminder about an appointment.
204 The string STRING describes the appointment, due in integer MINS minutes.
205 The format of the visible reminder is controlled by `appt-display-format'.
206 The variable `appt-audible' controls the audible reminder."
207 (if appt-audible (beep 1))
208 (cond ((eq appt-display-format 'window)
209 (funcall appt-disp-window-function
210 (number-to-string mins)
211 ;; TODO - use calendar-month-abbrev-array rather than %b?
212 (format-time-string "%a %b %e " (current-time))
213 string)
214 (run-at-time (format "%d sec" appt-display-duration)
215 nil
216 appt-delete-window-function))
217 ((eq appt-display-format 'echo)
218 (message "%s" string))))
219
220
221 (defun appt-check (&optional force)
222 "Check for an appointment and update any reminder display.
223 If optional argument FORCE is non-nil, reparse the diary file for
224 appointments. Otherwise the diary file is only parsed once per day,
225 or when it (or a file it includes) is saved.
226
227 Note: the time must be the first thing in the line in the diary
228 for a warning to be issued. The format of the time can be either
229 24 hour or am/pm. For example:
230
231 02/23/89
232 18:00 Dinner
233
234 Thursday
235 11:45am Lunch meeting.
236
237 Appointments are checked every `appt-display-interval' minutes.
238 The following variables control appointment notification:
239
240 `appt-display-format'
241 Controls the format in which reminders are displayed.
242
243 `appt-audible'
244 Variable used to determine if reminder is audible.
245 Default is t.
246
247 `appt-message-warning-time'
248 Variable used to determine when appointment message
249 should first be displayed.
250
251 `appt-display-mode-line'
252 If non-nil, a generic message giving the time remaining
253 is shown in the mode-line when an appointment is due.
254
255 `appt-display-interval'
256 Interval in minutes at which to check for pending appointments.
257
258 `appt-display-diary'
259 Display the diary buffer when the appointment list is
260 initialized for the first time in a day.
261
262 The following variables are only relevant if reminders are being
263 displayed in a window:
264
265 `appt-display-duration'
266 The number of seconds an appointment message is displayed.
267
268 `appt-disp-window-function'
269 Function called to display appointment window.
270
271 `appt-delete-window-function'
272 Function called to remove appointment window and buffer."
273 (interactive "P") ; so people can force updates
274 (let* ((min-to-app -1)
275 (prev-appt-mode-string appt-mode-string)
276 (prev-appt-display-count (or appt-display-count 0))
277 ;; Non-nil means do a full check for pending appointments and
278 ;; display in whatever ways the user has selected. When no
279 ;; appointment is being displayed, we always do a full check.
280 (full-check
281 (or (not appt-now-displayed)
282 ;; This is true every appt-display-interval minutes.
283 (zerop (mod prev-appt-display-count appt-display-interval))))
284 ;; Non-nil means only update the interval displayed in the mode line.
285 (mode-line-only (unless full-check appt-now-displayed))
286 now cur-comp-time appt-comp-time appt-warn-time)
287 (when (or full-check mode-line-only)
288 (save-excursion ; FIXME ?
289 ;; Convert current time to minutes after midnight (12.01am = 1).
290 (setq now (decode-time)
291 cur-comp-time (+ (* 60 (nth 2 now)) (nth 1 now)))
292 ;; At first check in any day, update appointments to today's list.
293 (if (or force ; eg initialize, diary save
294 (null appt-prev-comp-time) ; first check
295 (< cur-comp-time appt-prev-comp-time)) ; new day
296 (ignore-errors
297 (let ((diary-hook (if (assoc 'appt-make-list diary-hook)
298 diary-hook
299 (cons 'appt-make-list diary-hook))))
300 (if appt-display-diary
301 (diary)
302 ;; Not displaying the diary, so we can ignore
303 ;; diary-number-of-entries. Since appt.el only
304 ;; works on a daily basis, no need for more entries.
305 (diary-list-entries (calendar-current-date) 1 t)))))
306 (setq appt-prev-comp-time cur-comp-time
307 appt-mode-string nil
308 appt-display-count nil)
309 ;; If there are entries in the list, and the user wants a
310 ;; message issued, get the first time off of the list and
311 ;; calculate the number of minutes until the appointment.
312 (when appt-time-msg-list
313 (setq appt-comp-time (caar (car appt-time-msg-list))
314 appt-warn-time (or (nth 3 (car appt-time-msg-list))
315 appt-message-warning-time)
316 min-to-app (- appt-comp-time cur-comp-time))
317 (while (and appt-time-msg-list
318 (< appt-comp-time cur-comp-time))
319 (setq appt-time-msg-list (cdr appt-time-msg-list))
320 (if appt-time-msg-list
321 (setq appt-comp-time (caar (car appt-time-msg-list)))))
322 ;; If we have an appointment between midnight and
323 ;; `appt-warn-time' minutes after midnight, we
324 ;; must begin to issue a message before midnight. Midnight
325 ;; is considered 0 minutes and 11:59pm is 1439
326 ;; minutes. Therefore we must recalculate the minutes to
327 ;; appointment variable. It is equal to the number of
328 ;; minutes before midnight plus the number of minutes after
329 ;; midnight our appointment is.
330 (if (and (< appt-comp-time appt-warn-time)
331 (> (+ cur-comp-time appt-warn-time)
332 appt-max-time))
333 (setq min-to-app (+ (- (1+ appt-max-time) cur-comp-time)
334 appt-comp-time)))
335 ;; Issue warning if the appointment time is within
336 ;; appt-message-warning time.
337 (when (and (<= min-to-app appt-warn-time)
338 (>= min-to-app 0))
339 (setq appt-now-displayed t
340 appt-display-count (1+ prev-appt-display-count))
341 (unless mode-line-only
342 (appt-display-message (cadr (car appt-time-msg-list))
343 min-to-app))
344 (when appt-display-mode-line
345 (setq appt-mode-string
346 (concat " " (propertize
347 (format "App't in %s min." min-to-app)
348 'face 'mode-line-emphasis))))
349 ;; When an appointment is reached, delete it from the
350 ;; list. Reset the count to 0 in case we display another
351 ;; appointment on the next cycle.
352 (if (zerop min-to-app)
353 (setq appt-time-msg-list (cdr appt-time-msg-list)
354 appt-display-count nil))))
355 ;; If we have changed the mode line string, redisplay all mode lines.
356 (and appt-display-mode-line
357 (not (string-equal appt-mode-string
358 prev-appt-mode-string))
359 (progn
360 (force-mode-line-update t)
361 ;; If the string now has a notification, redisplay right now.
362 (if appt-mode-string
363 (sit-for 0))))))))
364
365 (defun appt-disp-window (min-to-app new-time appt-msg)
366 "Display appointment due in MIN-TO-APP (a string) minutes.
367 NEW-TIME is a string giving the date. Displays the appointment
368 message APPT-MSG in a separate buffer."
369 (let ((this-window (selected-window))
370 (appt-disp-buf (get-buffer-create appt-buffer-name)))
371 ;; Make sure we're not in the minibuffer before splitting the window.
372 ;; FIXME this seems needlessly complicated?
373 (when (minibufferp)
374 (other-window 1)
375 (and (minibufferp) (display-multi-frame-p) (other-frame 1)))
376 (if (cdr (assq 'unsplittable (frame-parameters)))
377 ;; In an unsplittable frame, use something somewhere else.
378 (progn
379 (set-buffer appt-disp-buf)
380 (display-buffer appt-disp-buf))
381 (unless (or (special-display-p (buffer-name appt-disp-buf))
382 (same-window-p (buffer-name appt-disp-buf)))
383 ;; By default, split the bottom window and use the lower part.
384 (appt-select-lowest-window)
385 ;; Split the window, unless it's too small to do so.
386 (when (>= (window-height) (* 2 window-min-height))
387 (select-window (split-window))))
388 (switch-to-buffer appt-disp-buf))
389 ;; FIXME Link to diary entry?
390 (calendar-set-mode-line
391 (format " Appointment %s. %s "
392 (if (string-equal "0" min-to-app) "now"
393 (format "in %s minute%s" min-to-app
394 (if (string-equal "1" min-to-app) "" "s")))
395 new-time))
396 (setq buffer-read-only nil
397 buffer-undo-list t)
398 (erase-buffer)
399 (insert appt-msg)
400 (shrink-window-if-larger-than-buffer (get-buffer-window appt-disp-buf t))
401 (set-buffer-modified-p nil)
402 (setq buffer-read-only t)
403 (raise-frame (selected-frame))
404 (select-window this-window)))
405
406 (defun appt-delete-window ()
407 "Function called to undisplay appointment messages.
408 Usually just deletes the appointment buffer."
409 (let ((window (get-buffer-window appt-buffer-name t)))
410 (and window
411 (or (eq window (frame-root-window (window-frame window)))
412 (delete-window window))))
413 (kill-buffer appt-buffer-name)
414 (if appt-audible
415 (beep 1)))
416
417 (defun appt-select-lowest-window ()
418 "Select the lowest window on the frame."
419 (let ((lowest-window (selected-window))
420 (bottom-edge (nth 3 (window-edges)))
421 next-bottom-edge)
422 (walk-windows (lambda (w)
423 (when (< bottom-edge (setq next-bottom-edge
424 (nth 3 (window-edges w))))
425 (setq bottom-edge next-bottom-edge
426 lowest-window w))) 'nomini)
427 (select-window lowest-window)))
428
429 (defconst appt-time-regexp
430 "[0-9]?[0-9]\\(h\\([0-9][0-9]\\)?\\|[:.][0-9][0-9]\\)\\(am\\|pm\\)?")
431
432 ;;;###autoload
433 (defun appt-add (time msg &optional warntime)
434 "Add an appointment for today at TIME with message MSG.
435 The time should be in either 24 hour format or am/pm format.
436 Optional argument WARNTIME is an integer (or string) giving the number
437 of minutes before the appointment at which to start warning.
438 The default is `appt-message-warning-time'."
439 (interactive "sTime (hh:mm[am/pm]): \nsMessage:
440 sMinutes before the appointment to start warning: ")
441 (unless (string-match appt-time-regexp time)
442 (error "Unacceptable time-string"))
443 (and (stringp warntime)
444 (setq warntime (unless (string-equal warntime "")
445 (string-to-number warntime))))
446 (and warntime
447 (not (integerp warntime))
448 (error "Argument WARNTIME must be an integer, or nil"))
449 (or appt-timer (appt-activate))
450 (let ((time-msg (list (list (appt-convert-time time))
451 (concat time " " msg) t)))
452 ;; It is presently non-sensical to have multiple warnings about
453 ;; the same appointment with just different delays, but it might
454 ;; not always be so. TODO
455 (if warntime (setq time-msg (append time-msg (list warntime))))
456 (unless (member time-msg appt-time-msg-list)
457 (setq appt-time-msg-list
458 (appt-sort-list (nconc appt-time-msg-list (list time-msg)))))))
459
460 (defun appt-delete ()
461 "Delete an appointment from the list of appointments."
462 (interactive)
463 (let ((tmp-msg-list appt-time-msg-list))
464 (dolist (element tmp-msg-list)
465 (if (y-or-n-p (concat "Delete "
466 ;; We want to quote any doublequotes in the
467 ;; string, as well as put doublequotes around it.
468 (prin1-to-string
469 (substring-no-properties (cadr element) 0))
470 " from list? "))
471 (setq appt-time-msg-list (delq element appt-time-msg-list)))))
472 (appt-check)
473 (message ""))
474
475
476 (defvar number)
477 (defvar original-date)
478 (defvar diary-entries-list)
479
480 (defun appt-make-list ()
481 "Update the appointments list from today's diary buffer.
482 The time must be at the beginning of a line for it to be
483 put in the appointments list (see examples in documentation of
484 the function `appt-check'). We assume that the variables DATE and
485 NUMBER hold the arguments that `diary-list-entries' received.
486 They specify the range of dates that the diary is being processed for.
487
488 Any appointments made with `appt-add' are not affected by this function."
489 ;; We have something to do if the range of dates that the diary is
490 ;; considering includes the current date.
491 (if (and (not (calendar-date-compare
492 (list (calendar-current-date))
493 (list original-date)))
494 (calendar-date-compare
495 (list (calendar-current-date))
496 (list (calendar-gregorian-from-absolute
497 (+ (calendar-absolute-from-gregorian original-date)
498 number)))))
499 (save-excursion
500 ;; Clear the appointments list, then fill it in from the diary.
501 (dolist (elt appt-time-msg-list)
502 ;; Delete any entries that were not made with appt-add.
503 (unless (nth 2 elt)
504 (setq appt-time-msg-list
505 (delq elt appt-time-msg-list))))
506 (if diary-entries-list
507 ;; Cycle through the entry-list (diary-entries-list)
508 ;; looking for entries beginning with a time. If the
509 ;; entry begins with a time, add it to the
510 ;; appt-time-msg-list. Then sort the list.
511 (let ((entry-list diary-entries-list)
512 (new-time-string "")
513 time-string)
514 ;; Below, we assume diary-entries-list was in date
515 ;; order. It is, unless something on
516 ;; diary-list-entries-hook has changed it, eg
517 ;; diary-include-other-files (bug#7019). It must be
518 ;; in date order if number = 1.
519 (and diary-list-entries-hook
520 appt-display-diary
521 (not (eq diary-number-of-entries 1))
522 (not (memq (car (last diary-list-entries-hook))
523 '(diary-sort-entries sort-diary-entries)))
524 (setq entry-list (sort entry-list 'diary-entry-compare)))
525 ;; Skip diary entries for dates before today.
526 (while (and entry-list
527 (calendar-date-compare
528 (car entry-list) (list (calendar-current-date))))
529 (setq entry-list (cdr entry-list)))
530 ;; Parse the entries for today.
531 (while (and entry-list
532 (calendar-date-equal
533 (calendar-current-date) (caar entry-list)))
534 (setq time-string (cadr (car entry-list)))
535 (while (string-match appt-time-regexp time-string)
536 (let* ((beg (match-beginning 0))
537 ;; Get just the time for this appointment.
538 (only-time (match-string 0 time-string))
539 ;; Find the end of this appointment
540 ;; (the start of the next).
541 (end (string-match
542 (concat "\n[ \t]*" appt-time-regexp)
543 time-string
544 (match-end 0)))
545 ;; Get the whole string for this appointment.
546 (appt-time-string
547 (substring time-string beg end))
548 (appt-time (list (appt-convert-time only-time)))
549 (time-msg (list appt-time appt-time-string)))
550 ;; Add this appointment to appt-time-msg-list.
551 (setq appt-time-msg-list
552 (nconc appt-time-msg-list (list time-msg))
553 ;; Discard this appointment from the string.
554 time-string
555 (if end (substring time-string end) ""))))
556 (setq entry-list (cdr entry-list)))))
557 (setq appt-time-msg-list (appt-sort-list appt-time-msg-list))
558 ;; Convert current time to minutes after midnight (12:01am = 1),
559 ;; so that elements in the list that are earlier than the
560 ;; present time can be removed.
561 (let* ((now (decode-time))
562 (cur-comp-time (+ (* 60 (nth 2 now)) (nth 1 now)))
563 (appt-comp-time (caar (car appt-time-msg-list))))
564 (while (and appt-time-msg-list (< appt-comp-time cur-comp-time))
565 (setq appt-time-msg-list (cdr appt-time-msg-list))
566 (if appt-time-msg-list
567 (setq appt-comp-time (caar (car appt-time-msg-list)))))))))
568
569
570 (defun appt-sort-list (appt-list)
571 "Sort an appointment list, putting earlier items at the front.
572 APPT-LIST is a list of the same format as `appt-time-msg-list'."
573 (sort appt-list (lambda (e1 e2) (< (caar e1) (caar e2)))))
574
575
576 (defun appt-convert-time (time2conv)
577 "Convert hour:min[am/pm] format TIME2CONV to minutes from midnight.
578 A period (.) can be used instead of a colon (:) to separate the
579 hour and minute parts."
580 ;; Formats that should be accepted:
581 ;; 10:00 10.00 10h00 10h 10am 10:00am 10.00am
582 (let ((min (if (string-match "[h:.]\\([0-9][0-9]\\)" time2conv)
583 (string-to-number (match-string 1 time2conv))
584 0))
585 (hr (if (string-match "[0-9]*[0-9]" time2conv)
586 (string-to-number (match-string 0 time2conv))
587 0)))
588 ;; Convert the time appointment time into 24 hour time.
589 (cond ((and (string-match "pm" time2conv) (< hr 12))
590 (setq hr (+ 12 hr)))
591 ((and (string-match "am" time2conv) (= hr 12))
592 (setq hr 0)))
593 ;; Convert the actual time into minutes.
594 (+ (* hr 60) min)))
595
596 (defun appt-update-list ()
597 "If the current buffer is visiting the diary, update appointments.
598 This function also acts on any file listed in `diary-included-files'.
599 It is intended for use with `write-file-functions'."
600 (and (member buffer-file-name (append diary-included-files
601 (list (expand-file-name diary-file))))
602 appt-timer
603 (let ((appt-display-diary nil))
604 (appt-check t)))
605 nil)
606
607 ;;;###autoload
608 (defun appt-activate (&optional arg)
609 "Toggle checking of appointments.
610 With optional numeric argument ARG, turn appointment checking on if
611 ARG is positive, otherwise off."
612 (interactive "P")
613 (let ((appt-active appt-timer))
614 (setq appt-active (if arg (> (prefix-numeric-value arg) 0)
615 (not appt-active)))
616 (remove-hook 'write-file-functions 'appt-update-list)
617 (or global-mode-string (setq global-mode-string '("")))
618 (delq 'appt-mode-string global-mode-string)
619 (when appt-timer
620 (cancel-timer appt-timer)
621 (setq appt-timer nil))
622 (if appt-active
623 (progn
624 (add-hook 'write-file-functions 'appt-update-list)
625 (setq appt-timer (run-at-time t 60 'appt-check)
626 global-mode-string
627 (append global-mode-string '(appt-mode-string)))
628 (appt-check t)
629 (message "Appointment reminders enabled%s"
630 ;; Someone might want to use appt-add without a diary.
631 (if (ignore-errors (diary-check-diary-file))
632 ""
633 " (no diary file found)")))
634 (message "Appointment reminders disabled"))))
635
636
637 (provide 'appt)
638
639 ;;; appt.el ends here