(appt-interval): Variable deleted.
[bpt/emacs.git] / lisp / calendar / appt.el
CommitLineData
c0274f38
ER
1;;; appt.el --- appointment notification functions.
2
f3e7c0dc 3;; Copyright (C) 1989, 1990, 1994, 1998 Free Software Foundation, Inc.
3a801d0c 4
e5167999 5;; Author: Neil Mager <neilm@juliet.ll.mit.edu>
0dba5606 6;; Maintainer: FSF
e5167999
ER
7;; Keywords: calendar
8
902a0e3c
JB
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
e5167999 13;; the Free Software Foundation; either version 2, or (at your option)
902a0e3c
JB
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
902a0e3c 25
e5167999
ER
26;;; Commentary:
27
902a0e3c
JB
28;;
29;; appt.el - visible and/or audible notification of
f3e7c0dc 30;; appointments from ~/diary file.
902a0e3c 31;;
902a0e3c
JB
32;;
33;; Comments, corrections, and improvements should be sent to
34;; Neil M. Mager
35;; Net <neilm@juliet.ll.mit.edu>
36;; Voice (617) 981-4803
37;;;
38;;; Thanks to Edward M. Reingold for much help and many suggestions,
39;;; And to many others for bug fixes and suggestions.
40;;;
41;;;
42;;; This functions in this file will alert the user of a
43;;; pending appointment based on their diary file.
44;;;
f3e7c0dc
KH
45;;; A message will be displayed in the mode line of the Emacs buffer
46;;; and (if you request) the terminal will beep and display a message
47;;; from the diary in the mini-buffer, or you can choose to
902a0e3c
JB
48;;; have a message displayed in a new buffer.
49;;;
f3e7c0dc 50;;; The variable `appt-message-warning-time' allows the
902a0e3c 51;;; user to specify how much notice they want before the appointment. The
f3e7c0dc 52;;; variable `appt-issue-message' specifies whether the user wants
902a0e3c
JB
53;;; to to be notified of a pending appointment.
54;;;
f3e7c0dc
KH
55;;; In order to use the appt package, you only need
56;;; to load it---provided you have appointments.
902a0e3c 57;;;
efa434d9
RS
58;;; Before that, you can also set some options if you want
59;;; (setq view-diary-entries-initially t)
60;;; (setq appt-issue-message t)
902a0e3c
JB
61;;;
62;;; This is an example of what can be in your diary file:
63;;; Monday
64;;; 9:30am Coffee break
65;;; 12:00pm Lunch
66;;;
67;;; Based upon the above lines in your .emacs and diary files,
68;;; the calendar and diary will be displayed when you enter
f3e7c0dc 69;;; Emacs and your appointments list will automatically be created.
902a0e3c
JB
70;;; You will then be reminded at 9:20am about your coffee break
71;;; and at 11:50am to go to lunch.
72;;;
73;;; Use describe-function on appt-check for a description of other variables
74;;; that can be used to personalize the notification system.
75;;;
76;;; In order to add or delete items from todays list, use appt-add
77;;; and appt-delete.
78;;;
79;;; Additionally, the appointments list is recreated automatically
80;;; at 12:01am for those who do not logout every day or are programming
81;;; late.
82;;;
83;;; Brief internal description - Skip this if your not interested!
84;;;
902a0e3c
JB
85;;; The function appt-make-list creates the appointments list which appt-check
86;;; reads. This is all done automatically.
87;;; It is invoked from the function list-diary-entries.
88;;;
5b586155
RS
89;;; You can change the way the appointment window is created/deleted by
90;;; setting the variables
91;;;
92;;; appt-disp-window-function
93;;; and
94;;; appt-delete-window-function
95;;;
96;;; For instance, these variables can be set to functions that display
97;;; appointments in pop-up frames, which are lowered or iconified after
f3e7c0dc 98;;; appt-display-interval minutes.
5b586155 99;;;
e5167999
ER
100
101;;; Code:
102
6afadb57
RS
103;; Make sure calendar is loaded when we compile this.
104(require 'calendar)
105
cc3511de
KH
106(provide 'appt)
107
7e1dae73 108;;;###autoload
8db540c5 109(defcustom appt-issue-message t
902a0e3c
JB
110 "*Non-nil means check for appointments in the diary buffer.
111To be detected, the diary entry must have the time
8db540c5
RS
112as the first thing on a line."
113 :type 'boolean
114 :group 'appt)
902a0e3c 115
7e1dae73 116;;;###autoload
8db540c5
RS
117(defcustom appt-message-warning-time 12
118 "*Time in minutes before an appointment that the warning begins."
119 :type 'integer
120 :group 'appt)
902a0e3c 121
7e1dae73 122;;;###autoload
8db540c5
RS
123(defcustom appt-audible t
124 "*Non-nil means beep to indicate appointment."
125 :type 'boolean
126 :group 'appt)
902a0e3c 127
7e1dae73 128;;;###autoload
8db540c5
RS
129(defcustom appt-visible t
130 "*Non-nil means display appointment message in echo area."
131 :type 'boolean
132 :group 'appt)
902a0e3c 133
7e1dae73 134;;;###autoload
8db540c5
RS
135(defcustom appt-display-mode-line t
136 "*Non-nil means display minutes to appointment and time on the mode line."
137 :type 'boolean
138 :group 'appt)
902a0e3c 139
7e1dae73 140;;;###autoload
8db540c5
RS
141(defcustom appt-msg-window t
142 "*Non-nil means display appointment message in another window."
143 :type 'boolean
144 :group 'appt)
902a0e3c 145
7e1dae73 146;;;###autoload
8db540c5
RS
147(defcustom appt-display-duration 10
148 "*The number of seconds an appointment message is displayed."
149 :type 'integer
150 :group 'appt)
902a0e3c 151
7e1dae73 152;;;###autoload
8db540c5 153(defcustom appt-display-diary t
902a0e3c 154 "*Non-nil means to display the next days diary on the screen.
8db540c5
RS
155This will occur at midnight when the appointment list is updated."
156 :type 'boolean
157 :group 'appt)
902a0e3c
JB
158
159(defvar appt-time-msg-list nil
160 "The list of appointments for today.
161Use `appt-add' and `appt-delete' to add and delete appointments from list.
162The original list is generated from the today's `diary-entries-list'.
163The number before each time/message is the time in minutes from midnight.")
164
f3e7c0dc 165(defconst appt-max-time 1439
902a0e3c
JB
166 "11:59pm in minutes - number of minutes in a day minus 1.")
167
8db540c5
RS
168(defcustom appt-display-interval 3
169 "*Number of minutes to wait between checking the appointment list."
170 :type 'integer
171 :group 'appt)
5b586155
RS
172
173(defvar appt-buffer-name " *appt-buf*"
174 "Name of the appointments buffer.")
175
176(defvar appt-disp-window-function 'appt-disp-window
177 "Function called to display appointment window.")
178
179(defvar appt-delete-window-function 'appt-delete-window
180 "Function called to remove appointment window and buffer.")
b570e652 181
efa434d9 182(defvar appt-mode-string nil
f3e7c0dc
KH
183 "String being displayed in the mode line saying you have an appointment.
184The actual string includes the amount of time till the appointment.")
185
186(defvar appt-prev-comp-time nil
187 "Time of day (mins since midnight) at which we last checked 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)
efa434d9 193
902a0e3c
JB
194(defun appt-check ()
195 "Check for an appointment and update the mode line.
196Note: the time must be the first thing in the line in the diary
197for a warning to be issued.
198
199The format of the time can be either 24 hour or am/pm.
200Example:
201
202 02/23/89
203 18:00 Dinner
204
205 Thursday
206 11:45am Lunch meeting.
207
f3e7c0dc
KH
208Appointments are checked every `appt-display-interval' minutes.
209The following variables control appointment notification:
902a0e3c 210
efa434d9
RS
211`appt-issue-message'
212 If t, the diary buffer is checked for appointments.
902a0e3c 213
efa434d9 214`appt-message-warning-time'
b570e652
RS
215 Variable used to determine if appointment message
216 should be displayed.
902a0e3c 217
efa434d9 218`appt-audible'
b570e652
RS
219 Variable used to determine if appointment is audible.
220 Default is t.
902a0e3c 221
efa434d9 222`appt-visible'
b570e652 223 Variable used to determine if appointment message should be
efa434d9 224 displayed in the mini-buffer. Default is t.
902a0e3c 225
efa434d9 226`appt-msg-window'
b570e652 227 Variable used to determine if appointment message
efa434d9
RS
228 should temporarily appear in another window. Mutually exclusive
229 to `appt-visible'.
902a0e3c 230
efa434d9 231`appt-display-duration'
b570e652
RS
232 The number of seconds an appointment message
233 is displayed in another window.
234
f3e7c0dc 235`appt-disp-window-function'
efa434d9 236 Function called to display appointment window. You can customize
adae5323
RS
237 appt.el by setting this variable to a function different from the
238 one provided with this package.
239
f3e7c0dc 240`appt-delete-window-function'
adae5323
RS
241 Function called to remove appointment window and buffer. You can
242 customize appt.el by setting this variable to a function different
efa434d9 243 from the one provided with this package."
902a0e3c 244
f3e7c0dc
KH
245 (let* ((min-to-app -1)
246 (new-time "")
247 (prev-appt-mode-string appt-mode-string)
248 (prev-appt-display-count (or appt-display-count 0))
249 ;; Non-nil means do a full check for pending appointments
250 ;; and display in whatever ways the user has selected.
251 ;; When no appointment is being displayed,
252 ;; we always do a full check.
253 (full-check
254 (or (not appt-now-displayed)
255 ;; This is true every appt-display-interval minutes.
256 (= 0 (mod prev-appt-display-count appt-display-interval))))
257 ;; Non-nil means only update the interval displayed in the mode line.
258 (mode-line-only
259 (and (not full-check) appt-now-displayed)))
260
261 (when (or full-check mode-line-only)
262 (save-excursion
263
264 ;; Get the current time and convert it to minutes
265 ;; from midnight. ie. 12:01am = 1, midnight = 0.
902a0e3c 266
f3e7c0dc
KH
267 (let* ((now (decode-time))
268 (cur-hour (nth 2 now))
269 (cur-min (nth 1 now))
270 (cur-comp-time (+ (* cur-hour 60) cur-min)))
271
272 ;; At the first check in any given day, update our
273 ;; appointments to today's list.
274
275 (if (or (null appt-prev-comp-time)
276 (< cur-comp-time appt-prev-comp-time))
277 (condition-case nil
278 (progn
279 (if (and view-diary-entries-initially appt-display-diary)
280 (diary)
281 (let ((diary-display-hook 'appt-make-list))
282 (diary))))
283 (error nil)))
284 (setq appt-prev-comp-time cur-comp-time)
285
286 (setq appt-mode-string nil)
287 (setq appt-display-count nil)
288
289 ;; If there are entries in the list, and the
290 ;; user wants a message issued,
291 ;; get the first time off of the list
292 ;; and calculate the number of minutes until the appointment.
293
294 (if (and appt-issue-message appt-time-msg-list)
295 (let ((appt-comp-time (car (car (car appt-time-msg-list)))))
296 (setq min-to-app (- appt-comp-time cur-comp-time))
297
298 (while (and appt-time-msg-list
299 (< appt-comp-time cur-comp-time))
300 (setq appt-time-msg-list (cdr appt-time-msg-list))
301 (if appt-time-msg-list
302 (setq appt-comp-time
303 (car (car (car appt-time-msg-list))))))
304
305 ;; If we have an appointment between midnight and
306 ;; 'appt-message-warning-time' minutes after midnight,
307 ;; we must begin to issue a message before midnight.
308 ;; Midnight is considered 0 minutes and 11:59pm is
309 ;; 1439 minutes. Therefore we must recalculate the minutes
310 ;; to appointment variable. It is equal to the number of
311 ;; minutes before midnight plus the number of
312 ;; minutes after midnight our appointment is.
313
314 (if (and (< appt-comp-time appt-message-warning-time)
315 (> (+ cur-comp-time appt-message-warning-time)
316 appt-max-time))
317 (setq min-to-app (+ (- (1+ appt-max-time) cur-comp-time))
318 appt-comp-time))
319
320 ;; issue warning if the appointment time is
321 ;; within appt-message-warning time
322
323 (when (and (<= min-to-app appt-message-warning-time)
324 (>= min-to-app 0))
325 (setq appt-now-displayed t)
326 (setq appt-display-count
327 (1+ prev-appt-display-count))
328 (unless mode-line-only
efa434d9
RS
329 (if appt-msg-window
330 (progn
331 (setq new-time (format-time-string "%a %b %e "
332 (current-time)))
333 (funcall
334 appt-disp-window-function
335 min-to-app new-time
336 (car (cdr (car appt-time-msg-list))))
f3e7c0dc 337
efa434d9
RS
338 (run-at-time
339 (format "%d sec" appt-display-duration)
340 nil
341 appt-delete-window-function))
f3e7c0dc 342 ;;; else
b570e652 343
efa434d9
RS
344 (if appt-visible
345 (message "%s"
346 (car (cdr (car appt-time-msg-list)))))
b570e652 347
efa434d9 348 (if appt-audible
f3e7c0dc
KH
349 (beep 1))))
350
351 (when appt-display-mode-line
352 (setq appt-mode-string
353 (concat " App't in " min-to-app " min. ")))
354
355 ;; When an appointment is reached,
356 ;; delete it from the list.
357 ;; Reset the count to 0 in case we display another
358 ;; appointment on the next cycle.
359 (if (= min-to-app 0)
360 (setq appt-time-msg-list
361 (cdr appt-time-msg-list)
362 appt-display-count nil)))))
363
364 ;; If we have changed the mode line string,
365 ;; redisplay all mode lines.
366 (and appt-display-mode-line
367 (not (equal appt-mode-string
368 prev-appt-mode-string))
369 (progn
370 (force-mode-line-update t)
371 ;; If the string now has a notification,
372 ;; redisplay right now.
373 (if appt-mode-string
374 (sit-for 0)))))))))
902a0e3c
JB
375
376
377;; Display appointment message in a separate buffer.
378(defun appt-disp-window (min-to-app new-time appt-msg)
379 (require 'electric)
5b586155
RS
380
381 ;; Make sure we're not in the minibuffer
382 ;; before splitting the window.
383
384 (if (equal (selected-window) (minibuffer-window))
385 (if (other-window 1)
386 (select-window (other-window 1))
387 (if window-system
388 (select-frame (other-frame 1)))))
389
390 (let* ((this-buffer (current-buffer))
391 (this-window (selected-window))
392 (appt-disp-buf (set-buffer (get-buffer-create appt-buffer-name))))
393
394 (appt-select-lowest-window)
d5b22d88
RS
395 (if (cdr (assq 'unsplittable (frame-parameters)))
396 ;; In an unsplittable frame, use something somewhere else.
397 (display-buffer appt-disp-buf)
398 ;; Otherwise, split the bottom window and use the lower part.
399 (split-window)
400 (pop-to-buffer appt-disp-buf))
5b586155
RS
401 (setq mode-line-format
402 (concat "-------------------- Appointment in "
403 min-to-app " minutes. " new-time " %-"))
efa434d9 404 (erase-buffer)
5b586155 405 (insert-string appt-msg)
d5b22d88 406 (shrink-window-if-larger-than-buffer (get-buffer-window appt-disp-buf t))
5b586155 407 (set-buffer-modified-p nil)
725ec4bc 408 (raise-frame (selected-frame))
5b586155
RS
409 (select-window this-window)
410 (if appt-audible
411 (beep 1))))
412
413(defun appt-delete-window ()
414 "Function called to undisplay appointment messages.
415Usually just deletes the appointment buffer."
95cdbff5
RS
416 (let ((window (get-buffer-window appt-buffer-name t)))
417 (and window
418 (or (and (fboundp 'frame-root-window)
419 (eq window (frame-root-window (window-frame window))))
420 (delete-window window))))
5b586155
RS
421 (kill-buffer appt-buffer-name)
422 (if appt-audible
423 (beep 1)))
902a0e3c 424
dc6d9681 425;; Select the lowest window on the frame.
902a0e3c 426(defun appt-select-lowest-window ()
95cdbff5
RS
427 (let* ((lowest-window (selected-window))
428 (bottom-edge (car (cdr (cdr (cdr (window-edges))))))
902a0e3c
JB
429 (last-window (previous-window))
430 (window-search t))
431 (while window-search
432 (let* ((this-window (next-window))
433 (next-bottom-edge (car (cdr (cdr (cdr
434 (window-edges this-window)))))))
435 (if (< bottom-edge next-bottom-edge)
436 (progn
437 (setq bottom-edge next-bottom-edge)
438 (setq lowest-window this-window)))
439
440 (select-window this-window)
441 (if (eq last-window this-window)
442 (progn
443 (select-window lowest-window)
444 (setq window-search nil)))))))
445
446
f3e7c0dc 447;;;###autoload
902a0e3c
JB
448(defun appt-add (new-appt-time new-appt-msg)
449 "Add an appointment for the day at TIME and issue MESSAGE.
450The time should be in either 24 hour format or am/pm format."
451
452 (interactive "sTime (hh:mm[am/pm]): \nsMessage: ")
453 (if (string-match "[0-9]?[0-9]:[0-9][0-9]\\(am\\|pm\\)?" new-appt-time)
454 nil
455 (error "Unacceptable time-string"))
456
457 (let* ((appt-time-string (concat new-appt-time " " new-appt-msg))
458 (appt-time (list (appt-convert-time new-appt-time)))
459 (time-msg (cons appt-time (list appt-time-string))))
460 (setq appt-time-msg-list (append appt-time-msg-list
461 (list time-msg)))
462 (setq appt-time-msg-list (appt-sort-list appt-time-msg-list))))
463
f3e7c0dc 464;;;###autoload
902a0e3c
JB
465(defun appt-delete ()
466 "Delete an appointment from the list of appointments."
467 (interactive)
468 (let* ((tmp-msg-list appt-time-msg-list))
469 (while tmp-msg-list
470 (let* ((element (car tmp-msg-list))
471 (prompt-string (concat "Delete "
472 (prin1-to-string (car (cdr element)))
473 " from list? "))
474 (test-input (y-or-n-p prompt-string)))
475 (setq tmp-msg-list (cdr tmp-msg-list))
476 (if test-input
95cdbff5 477 (setq appt-time-msg-list (delq element appt-time-msg-list)))))
902a0e3c
JB
478 (message "")))
479
480
481;; Create the appointments list from todays diary buffer.
482;; The time must be at the beginning of a line for it to be
483;; put in the appointments list.
484;; 02/23/89
485;; 12:00pm lunch
486;; Wednesday
9c197f24
RS
487;; 10:00am group meeting
488;; We assume that the variables DATE and NUMBER
489;; hold the arguments that list-diary-entries received.
490;; They specify the range of dates that the diary is being processed for.
902a0e3c 491
637a8ae9 492;;;###autoload
902a0e3c 493(defun appt-make-list ()
9c197f24
RS
494 ;; We have something to do if the range of dates that the diary is
495 ;; considering includes the current date.
496 (if (and (not (calendar-date-compare
497 (list (calendar-current-date))
498 (list original-date)))
499 (calendar-date-compare
500 (list (calendar-current-date))
501 (list (calendar-gregorian-from-absolute
502 (+ (calendar-absolute-from-gregorian original-date)
503 number)))))
504 (save-excursion
505 ;; Clear the appointments list, then fill it in from the diary.
506 (setq appt-time-msg-list nil)
507 (if diary-entries-list
508
509 ;; Cycle through the entry-list (diary-entries-list)
510 ;; looking for entries beginning with a time. If
511 ;; the entry begins with a time, add it to the
512 ;; appt-time-msg-list. Then sort the list.
513
514 (let ((entry-list diary-entries-list)
515 (new-time-string ""))
516 ;; Skip diary entries for dates before today.
517 (while (and entry-list
518 (calendar-date-compare
519 (car entry-list) (list (calendar-current-date))))
520 (setq entry-list (cdr entry-list)))
521 ;; Parse the entries for today.
522 (while (and entry-list
523 (calendar-date-equal
524 (calendar-current-date) (car (car entry-list))))
525 (let ((time-string (substring (prin1-to-string
526 (cdr (car entry-list))) 2 -2)))
527
528 (while (string-match
529 "[0-9]?[0-9]:[0-9][0-9]\\(am\\|pm\\)?.*"
530 time-string)
531 (let* ((appt-time-string (substring time-string
532 (match-beginning 0)
533 (match-end 0))))
534
535 (if (< (match-end 0) (length time-string))
536 (setq new-time-string (substring time-string
537 (+ (match-end 0) 1)
538 nil))
539 (setq new-time-string ""))
540
541 (string-match "[0-9]?[0-9]:[0-9][0-9]\\(am\\|pm\\)?"
542 time-string)
543
544 (let* ((appt-time (list (appt-convert-time
545 (substring time-string
546 (match-beginning 0)
547 (match-end 0)))))
548 (time-msg (cons appt-time
549 (list appt-time-string))))
550 (setq time-string new-time-string)
551 (setq appt-time-msg-list (append appt-time-msg-list
552 (list time-msg)))))))
553 (setq entry-list (cdr entry-list)))))
554 (setq appt-time-msg-list (appt-sort-list appt-time-msg-list))
555
556 ;; Get the current time and convert it to minutes
557 ;; from midnight. ie. 12:01am = 1, midnight = 0,
558 ;; so that the elements in the list
559 ;; that are earlier than the present time can
560 ;; be removed.
561
0d26feea
KH
562 (let* ((now (decode-time))
563 (cur-hour (nth 2 now))
564 (cur-min (nth 1 now))
9c197f24
RS
565 (cur-comp-time (+ (* cur-hour 60) cur-min))
566 (appt-comp-time (car (car (car appt-time-msg-list)))))
567
568 (while (and appt-time-msg-list (< appt-comp-time cur-comp-time))
569 (setq appt-time-msg-list (cdr appt-time-msg-list))
570 (if appt-time-msg-list
571 (setq appt-comp-time (car (car (car appt-time-msg-list))))))))))
902a0e3c
JB
572
573
574;;Simple sort to put the appointments list in order.
575;;Scan the list for the smallest element left in the list.
576;;Append the smallest element left into the new list, and remove
577;;it from the original list.
578(defun appt-sort-list (appt-list)
579 (let ((order-list nil))
580 (while appt-list
581 (let* ((element (car appt-list))
582 (element-time (car (car element)))
583 (tmp-list (cdr appt-list)))
584 (while tmp-list
585 (if (< element-time (car (car (car tmp-list))))
586 nil
587 (setq element (car tmp-list))
588 (setq element-time (car (car element))))
589 (setq tmp-list (cdr tmp-list)))
590 (setq order-list (append order-list (list element)))
591 (setq appt-list (delq element appt-list))))
592 order-list))
593
594
595(defun appt-convert-time (time2conv)
596 "Convert hour:min[am/pm] format to minutes from midnight."
597
598 (let ((conv-time 0)
599 (hr 0)
600 (min 0))
601
602 (string-match ":[0-9][0-9]" time2conv)
603 (setq min (string-to-int
604 (substring time2conv
605 (+ (match-beginning 0) 1) (match-end 0))))
606
607 (string-match "[0-9]?[0-9]:" time2conv)
608 (setq hr (string-to-int
609 (substring time2conv
610 (match-beginning 0)
611 (match-end 0))))
612
613 ;; convert the time appointment time into 24 hour time
614
615 (if (and (string-match "[p][m]" time2conv) (< hr 12))
616 (progn
617 (string-match "[0-9]?[0-9]:" time2conv)
618 (setq hr (+ 12 hr))))
619
620 ;; convert the actual time
621 ;; into minutes for comparison
622 ;; against the actual time.
623
624 (setq conv-time (+ (* hr 60) min))
625 conv-time))
626
efa434d9
RS
627(defvar appt-timer nil
628 "Timer used for diary appointment notifications (`appt-check').")
902a0e3c 629
f3e7c0dc
KH
630(unless appt-timer
631 (setq appt-timer (run-at-time t 60 'appt-check)))
efa434d9
RS
632
633(or global-mode-string (setq global-mode-string '("")))
634(or (memq 'appt-mode-string global-mode-string)
635 (setq global-mode-string
636 (append global-mode-string '(appt-mode-string))))
5b586155 637
efa434d9 638;;; appt.el ends here