]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fancy Diary Display): Update for diary-display-function replacing
authorGlenn Morris <rgm@gnu.org>
Fri, 30 May 2008 03:01:07 +0000 (03:01 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 30 May 2008 03:01:07 +0000 (03:01 +0000)
diary-display-hook.

doc/emacs/ChangeLog
doc/emacs/cal-xtra.texi

index 15831dc28bf2e930ac93b9f12d02da5ee6089e81..97bb760822cf713026538fbb0d71dff6cd75bd4c 100644 (file)
@@ -1,3 +1,8 @@
+2008-05-30  Glenn Morris  <rgm@gnu.org>
+
+       * cal-xtra.texi (Fancy Diary Display): Update for
+       diary-display-function replacing diary-display-hook.
+
 2008-05-29  Drew Adams  <drew.adams@oracle.com>
 
        * msdog.texi (Windows Keyboard): Add descriptions of
index c0e1e62bf92fa335fe91b9eefa722f7cbaed8cda..1f543f6f0a091b4f509166e339619ec7c415593d 100644 (file)
@@ -1,5 +1,6 @@
 @c This is part of the Emacs manual.
-@c Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+@c Copyright (C) 2004, 2005, 2006, 2007, 2008
+@c   Free Software Foundation, Inc.
 @c See file emacs.texi for copying conditions.
 @c
 @c This file is included either in emacs-xtra.texi (when producing the
@@ -525,18 +526,19 @@ diary entry.
 
 @node Fancy Diary Display
 @subsection Fancy Diary Display
-@vindex diary-display-hook
+@vindex diary-display-function
 @findex diary-simple-display
 
   Diary display works by preparing the diary buffer and then running the
-hook @code{diary-display-hook}.  The default value of this hook
-(@code{diary-simple-display}) hides the irrelevant diary entries and
-then displays the buffer.  However, if you specify the hook as follows,
+function specified by the variable @code{diary-display-function}.  The
+default value (@code{diary-simple-display}) hides the irrelevant diary
+entries and then displays the buffer.  However, if you set the variable
+as follows,
 
 @cindex diary buffer
 @findex diary-fancy-display
 @example
-(add-hook 'diary-display-hook 'diary-fancy-display)
+(setq diary-display-function 'diary-fancy-display)
 @end example
 
 @noindent