diff options
author | Glenn Morris <rgm@gnu.org> | 2008-03-18 03:35:58 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-03-18 03:35:58 +0000 |
commit | acab8b97406fd465afd3811f6b5f0c4b5fb95e4d (patch) | |
tree | 63de59ba7f72dfdc5e76c613ea16942a97ded2a1 | |
parent | 57671b7218249e42f7c84d2c202a1d56966f233b (diff) | |
download | emacs-acab8b97406fd465afd3811f6b5f0c4b5fb95e4d.tar.gz emacs-acab8b97406fd465afd3811f6b5f0c4b5fb95e4d.tar.bz2 emacs-acab8b97406fd465afd3811f6b5f0c4b5fb95e4d.zip |
(initial-calendar-window-hook, today-visible-calendar-hook): Doc fixes.
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/calendar/calendar.el | 7 |
2 files changed, 8 insertions, 4 deletions
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 <rgm@gnu.org> + + * calendar/calendar.el (initial-calendar-window-hook) + (today-visible-calendar-hook): Doc fixes. + 2008-03-17 Michael Albinus <michael.albinus@gmx.de> * 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) |