]> git.eshelyaron.com Git - emacs.git/commitdiff
(Special Diary Entries): Fix Thanksgiving example.
authorGlenn Morris <rgm@gnu.org>
Sun, 11 Nov 2007 03:20:35 +0000 (03:20 +0000)
committerGlenn Morris <rgm@gnu.org>
Sun, 11 Nov 2007 03:20:35 +0000 (03:20 +0000)
doc/emacs/ChangeLog
doc/emacs/calendar.texi

index 3c020fcc5e7c5f7166c0d461d8b3030321dfb3ea..dbb2340cab5d6d2bfb0b9db04ebb29b20d1c697c 100644 (file)
@@ -1,3 +1,7 @@
+2007-11-11  Glenn Morris  <rgm@gnu.org>
+
+       * calendar.texi (Special Diary Entries): Fix Thanksgiving example.
+
 2007-11-10  Paul Pogonyshev  <pogonyshev@gmx.net>
 
        * search.texi (Query Replace): Mention
index 6b28509473587ecc65827c34a4564ff3eae90f88..bb359a962a3e87d39c40ec1d7239a1d48b443fb6 100644 (file)
@@ -1397,19 +1397,19 @@ nonmarking (with @samp{&}) when possible.
 specifies a regularly occurring event by offsets specified in days,
 weeks, and months.  It is comparable to a crontab entry interpreted by
 the @code{cron} utility.  Here is a nonmarking, floating diary entry
-that applies to the last Thursday in November:
+that applies to the fourth Thursday in November:
 
 @findex diary-float
 @example
-&%%(diary-float 11 4 -1) American Thanksgiving
+&%%(diary-float 11 4 4) American Thanksgiving
 @end example
 
 @noindent
 The 11 specifies November (the eleventh month), the 4 specifies Thursday
 (the fourth day of the week, where Sunday is numbered zero), and the
-@minus{}1 specifies ``last'' (1 would mean ``first,'' 2 would mean
-``second,'' @minus{}2 would mean ``second-to-last,'' and so on).  The
-month can be a single month or a list of months.  Thus you could change
+second 4 specifies the fourth Thursday (1 would mean ``first,'' 2 would
+mean ``second,'' @minus{}2 would mean ``second-to-last,'' and so on).
+The month can be a single month or a list of months.  Thus you could change
 the 11 above to @samp{'(1 2 3)} and have the entry apply to the last
 Thursday of January, February, and March.  If the month is @code{t}, the
 entry applies to all months of the year.@refill