]> git.eshelyaron.com Git - emacs.git/commitdiff
(cal-tex-cursor-filofax-week): Renamed from cal-tex-cursor-week6.
authorRichard M. Stallman <rms@gnu.org>
Sun, 19 Nov 1995 21:28:06 +0000 (21:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 19 Nov 1995 21:28:06 +0000 (21:28 +0000)
(cal-tex-cursor-filofax-2week): Renamed from cal-tex-cursor-week5.
(cal-tex-cursor-week-monday): Renamed from cal-tex-cursor-week4.
(cal-tex-cursor-week-iso): Renamed from cal-tex-cursor-week3.

lisp/calendar/calendar.el

index ad60d2dea968cb74eae50184fc103ecd15bada30..2b4850e5f2d701b5507af42a64630c435f8df250 100644 (file)
@@ -1471,28 +1471,41 @@ Optional prefix argument specifies number of months to be produced.")
   "Make a buffer with LaTeX commands for the day cursor is on.")
 
 (autoload 'cal-tex-cursor-week "cal-tex"
-  "Make a buffer with LaTeX commands for a one page weekly calendar.
-Optional prefix argument specifies number of weeks.")
-
-(autoload 'cal-tex-cursor-week2 "cal-tex"
-  "Make a buffer with LaTeX commands for a two page weekly calendar.
-Optional prefix argument specifies number of weeks.")
-
-(autoload 'cal-tex-cursor-week3 "cal-tex"
-  "Make a buffer with LaTeX commands for a one page weekly calendar.
-Optional prefix argument specifies number of weeks.")
-
-(autoload 'cal-tex-cursor-week4 "cal-tex"
-  "Make a buffer with LaTeX commands for a one page weekly calendar.
-Optional prefix argument specifies number of weeks.")
-
-(autoload 'cal-tex-cursor-week5 "cal-tex"
-  "Make a buffer with LaTeX commands for a Filofax one page weekly calendar.
-Optional prefix argument specifies number of weeks.")
-
-(autoload 'cal-tex-cursor-week6 "cal-tex"
-  "Make a buffer with LaTeX commands for a Filofax two page weekly calendar.
-Optional prefix argument specifies number of weeks.")
+  "Make a buffer with LaTeX commands for a two-page one-week calendar.
+It applies to the week that point is in.
+Optional prefix argument specifies number of weeks.
+Holidays are included if `cal-tex-holidays' is t.")
+
+(autoload 'cal-tex-cursor-week2 "cal-tex" 
+  "Make a buffer with LaTeX commands for a two-page one-week calendar.
+It applies to the week that point is in.
+Optional prefix argument specifies number of weeks.
+Holidays are included if `cal-tex-holidays' is t.")
+
+(autoload 'cal-tex-cursor-week-iso "cal-tex"
+  "Make a buffer with LaTeX commands for a one page ISO-style weekly calendar.
+Optional prefix argument specifies number of weeks."
+Diary entries are included if `cal-tex-diary' is t.
+Holidays are included if `cal-tex-holidays' is t.")
+
+(autoload 'cal-tex-cursor-week-monday "cal-tex"
+  "Make a buffer with LaTeX commands for a two-page one-week calendar.
+It applies to the week that point is in, and starts on Monday.
+Optional prefix argument specifies number of weeks.
+Holidays are included if `cal-tex-holidays' is t.")
+
+(autoload 'cal-tex-cursor-filofax-2week "cal-tex"
+  "Two-weeks-at-a-glance Filofax style calendar for week indicated by cursor.
+Optional prefix argument specifies number of weeks.
+Diary entries are included if cal-tex-diary is t.
+Holidays are included if `cal-tex-holidays' is t.")
+
+(autoload 'cal-tex-cursor-filofax-week "cal-tex"
+  "One-week-at-a-glance Filofax style calendar for week indicated by cursor.
+Optional prefix argument specifies number of weeks.
+Weeks start on Monday. 
+Diary entries are included if cal-tex-diary is t.
+Holidays are included if `cal-tex-holidays' is t.")
 
 (autoload 'cal-tex-cursor-year "cal-tex"
   "Make a buffer with LaTeX commands for a year's calendar.
@@ -1733,10 +1746,10 @@ the inserted text.  Value is always t."
   (define-key calendar-mode-map "td" 'cal-tex-cursor-day)
   (define-key calendar-mode-map "tw1" 'cal-tex-cursor-week)
   (define-key calendar-mode-map "tw2" 'cal-tex-cursor-week2)
-  (define-key calendar-mode-map "tw3" 'cal-tex-cursor-week3)
-  (define-key calendar-mode-map "tw4" 'cal-tex-cursor-week4)
-  (define-key calendar-mode-map "tfw" 'cal-tex-cursor-week5)
-  (define-key calendar-mode-map "tfW" 'cal-tex-cursor-week6)
+  (define-key calendar-mode-map "tw3" 'cal-tex-cursor-week-iso)
+  (define-key calendar-mode-map "tw4" 'cal-tex-cursor-week-monday)
+  (define-key calendar-mode-map "tfw" 'cal-tex-cursor-filofax-2week)
+  (define-key calendar-mode-map "tfW" 'cal-tex-cursor-filofax-week)
   (define-key calendar-mode-map "tfy" 'cal-tex-cursor-filofax-year)
   (define-key calendar-mode-map "ty" 'cal-tex-cursor-year)
   (define-key calendar-mode-map "tY" 'cal-tex-cursor-year-landscape))