From: Glenn Morris Date: Tue, 18 Mar 2008 03:35:58 +0000 (+0000) Subject: (initial-calendar-window-hook, today-visible-calendar-hook): Doc fixes. X-Git-Tag: emacs-pretest-23.0.90~7067 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=acab8b97406fd465afd3811f6b5f0c4b5fb95e4d;p=emacs.git (initial-calendar-window-hook, today-visible-calendar-hook): Doc fixes. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7da2e61e36d..491a69e2bd9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-03-18 Glenn Morris + + * calendar/calendar.el (initial-calendar-window-hook) + (today-visible-calendar-hook): Doc fixes. + 2008-03-17 Michael Albinus * net/tramp.el (tramp-root-regexp): Simplify. diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index bf314499682..c5a1d372e23 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el @@ -288,7 +288,7 @@ This is the place to add key bindings to `calendar-mode-map'." (defcustom initial-calendar-window-hook nil "List of functions to be called when the calendar window is created. -Qutting the calendar and re-entering it will cause these functions +Quitting the calendar and re-entering it will cause these functions to be called again." :type 'hook :group 'calendar-hooks) @@ -297,11 +297,10 @@ to be called again." "List of functions called whenever the current date is visible. To mark today's date, add the function `calendar-mark-today'. To replace the date with asterisks, add the function `calendar-star-date'. - See also `today-invisible-calendar-hook'. -Changing characters in the calendar buffer, except via the provided -functions, may cause the calendar movement commands to fail." +In general, be careful about changing characters in the calendar buffer, +since it may cause the movement commands to fail." :type 'hook :options '(calendar-mark-today calendar-star-date) :group 'calendar-hooks)