comparison lisp/calendar/calendar.el @ 93043:0e73f340ef25

(initial-calendar-window-hook, today-visible-calendar-hook): Doc fixes.
author Glenn Morris <rgm@gnu.org>
date Tue, 18 Mar 2008 03:33:52 +0000
parents 8e1a78482251
children b801762e0062
comparison
equal deleted inserted replaced
93042:72a40ea6bec7 93043:0e73f340ef25
286 :type 'hook 286 :type 'hook
287 :group 'calendar-hooks) 287 :group 'calendar-hooks)
288 288
289 (defcustom initial-calendar-window-hook nil 289 (defcustom initial-calendar-window-hook nil
290 "List of functions to be called when the calendar window is created. 290 "List of functions to be called when the calendar window is created.
291 Qutting the calendar and re-entering it will cause these functions 291 Quitting the calendar and re-entering it will cause these functions
292 to be called again." 292 to be called again."
293 :type 'hook 293 :type 'hook
294 :group 'calendar-hooks) 294 :group 'calendar-hooks)
295 295
296 (defcustom today-visible-calendar-hook nil 296 (defcustom today-visible-calendar-hook nil
297 "List of functions called whenever the current date is visible. 297 "List of functions called whenever the current date is visible.
298 To mark today's date, add the function `calendar-mark-today'. 298 To mark today's date, add the function `calendar-mark-today'.
299 To replace the date with asterisks, add the function `calendar-star-date'. 299 To replace the date with asterisks, add the function `calendar-star-date'.
300
301 See also `today-invisible-calendar-hook'. 300 See also `today-invisible-calendar-hook'.
302 301
303 Changing characters in the calendar buffer, except via the provided 302 In general, be careful about changing characters in the calendar buffer,
304 functions, may cause the calendar movement commands to fail." 303 since it may cause the movement commands to fail."
305 :type 'hook 304 :type 'hook
306 :options '(calendar-mark-today calendar-star-date) 305 :options '(calendar-mark-today calendar-star-date)
307 :group 'calendar-hooks) 306 :group 'calendar-hooks)
308 307
309 (defcustom today-invisible-calendar-hook nil 308 (defcustom today-invisible-calendar-hook nil