aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-11-19 21:28:06 +0000
committerRichard M. Stallman1995-11-19 21:28:06 +0000
commit5a2c140aa7a6220b0f036bee7e945d9ab0ae78eb (patch)
tree75def89d0660dc5d2d176ea0348eb6d02a73c13b
parentab3a4359338aee8adb3da6f416a5dadd4e70ffef (diff)
downloademacs-5a2c140aa7a6220b0f036bee7e945d9ab0ae78eb.tar.gz
emacs-5a2c140aa7a6220b0f036bee7e945d9ab0ae78eb.zip
(cal-tex-cursor-filofax-week): Renamed from cal-tex-cursor-week6.
(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.
-rw-r--r--lisp/calendar/calendar.el65
1 files changed, 39 insertions, 26 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el
index ad60d2dea96..2b4850e5f2d 100644
--- a/lisp/calendar/calendar.el
+++ b/lisp/calendar/calendar.el
@@ -1471,28 +1471,41 @@ Optional prefix argument specifies number of months to be produced.")
1471 "Make a buffer with LaTeX commands for the day cursor is on.") 1471 "Make a buffer with LaTeX commands for the day cursor is on.")
1472 1472
1473(autoload 'cal-tex-cursor-week "cal-tex" 1473(autoload 'cal-tex-cursor-week "cal-tex"
1474 "Make a buffer with LaTeX commands for a one page weekly calendar. 1474 "Make a buffer with LaTeX commands for a two-page one-week calendar.
1475Optional prefix argument specifies number of weeks.") 1475It applies to the week that point is in.
1476 1476Optional prefix argument specifies number of weeks.
1477(autoload 'cal-tex-cursor-week2 "cal-tex" 1477Holidays are included if `cal-tex-holidays' is t.")
1478 "Make a buffer with LaTeX commands for a two page weekly calendar. 1478
1479Optional prefix argument specifies number of weeks.") 1479(autoload 'cal-tex-cursor-week2 "cal-tex"
1480 1480 "Make a buffer with LaTeX commands for a two-page one-week calendar.
1481(autoload 'cal-tex-cursor-week3 "cal-tex" 1481It applies to the week that point is in.
1482 "Make a buffer with LaTeX commands for a one page weekly calendar. 1482Optional prefix argument specifies number of weeks.
1483Optional prefix argument specifies number of weeks.") 1483Holidays are included if `cal-tex-holidays' is t.")
1484 1484
1485(autoload 'cal-tex-cursor-week4 "cal-tex" 1485(autoload 'cal-tex-cursor-week-iso "cal-tex"
1486 "Make a buffer with LaTeX commands for a one page weekly calendar. 1486 "Make a buffer with LaTeX commands for a one page ISO-style weekly calendar.
1487Optional prefix argument specifies number of weeks.") 1487Optional prefix argument specifies number of weeks."
1488 1488Diary entries are included if `cal-tex-diary' is t.
1489(autoload 'cal-tex-cursor-week5 "cal-tex" 1489Holidays are included if `cal-tex-holidays' is t.")
1490 "Make a buffer with LaTeX commands for a Filofax one page weekly calendar. 1490
1491Optional prefix argument specifies number of weeks.") 1491(autoload 'cal-tex-cursor-week-monday "cal-tex"
1492 1492 "Make a buffer with LaTeX commands for a two-page one-week calendar.
1493(autoload 'cal-tex-cursor-week6 "cal-tex" 1493It applies to the week that point is in, and starts on Monday.
1494 "Make a buffer with LaTeX commands for a Filofax two page weekly calendar. 1494Optional prefix argument specifies number of weeks.
1495Optional prefix argument specifies number of weeks.") 1495Holidays are included if `cal-tex-holidays' is t.")
1496
1497(autoload 'cal-tex-cursor-filofax-2week "cal-tex"
1498 "Two-weeks-at-a-glance Filofax style calendar for week indicated by cursor.
1499Optional prefix argument specifies number of weeks.
1500Diary entries are included if cal-tex-diary is t.
1501Holidays are included if `cal-tex-holidays' is t.")
1502
1503(autoload 'cal-tex-cursor-filofax-week "cal-tex"
1504 "One-week-at-a-glance Filofax style calendar for week indicated by cursor.
1505Optional prefix argument specifies number of weeks.
1506Weeks start on Monday.
1507Diary entries are included if cal-tex-diary is t.
1508Holidays are included if `cal-tex-holidays' is t.")
1496 1509
1497(autoload 'cal-tex-cursor-year "cal-tex" 1510(autoload 'cal-tex-cursor-year "cal-tex"
1498 "Make a buffer with LaTeX commands for a year's calendar. 1511 "Make a buffer with LaTeX commands for a year's calendar.
@@ -1733,10 +1746,10 @@ the inserted text. Value is always t."
1733 (define-key calendar-mode-map "td" 'cal-tex-cursor-day) 1746 (define-key calendar-mode-map "td" 'cal-tex-cursor-day)
1734 (define-key calendar-mode-map "tw1" 'cal-tex-cursor-week) 1747 (define-key calendar-mode-map "tw1" 'cal-tex-cursor-week)
1735 (define-key calendar-mode-map "tw2" 'cal-tex-cursor-week2) 1748 (define-key calendar-mode-map "tw2" 'cal-tex-cursor-week2)
1736 (define-key calendar-mode-map "tw3" 'cal-tex-cursor-week3) 1749 (define-key calendar-mode-map "tw3" 'cal-tex-cursor-week-iso)
1737 (define-key calendar-mode-map "tw4" 'cal-tex-cursor-week4) 1750 (define-key calendar-mode-map "tw4" 'cal-tex-cursor-week-monday)
1738 (define-key calendar-mode-map "tfw" 'cal-tex-cursor-week5) 1751 (define-key calendar-mode-map "tfw" 'cal-tex-cursor-filofax-2week)
1739 (define-key calendar-mode-map "tfW" 'cal-tex-cursor-week6) 1752 (define-key calendar-mode-map "tfW" 'cal-tex-cursor-filofax-week)
1740 (define-key calendar-mode-map "tfy" 'cal-tex-cursor-filofax-year) 1753 (define-key calendar-mode-map "tfy" 'cal-tex-cursor-filofax-year)
1741 (define-key calendar-mode-map "ty" 'cal-tex-cursor-year) 1754 (define-key calendar-mode-map "ty" 'cal-tex-cursor-year)
1742 (define-key calendar-mode-map "tY" 'cal-tex-cursor-year-landscape)) 1755 (define-key calendar-mode-map "tY" 'cal-tex-cursor-year-landscape))