aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2006-10-28 21:53:34 +0000
committerGlenn Morris2006-10-28 21:53:34 +0000
commit582172c6aa419905dc3a9c9264f43dae1986d0aa (patch)
treeab7e0c3a37ef4e9454e5f983e6f9c3c9f9490ef7 /lisp
parent94ce023059fcc9856a3914a70ea462e385551bed (diff)
downloademacs-582172c6aa419905dc3a9c9264f43dae1986d0aa.tar.gz
emacs-582172c6aa419905dc3a9c9264f43dae1986d0aa.zip
(cal-html-cursor-month, cal-html-cursor-year): Add autoloads for this
new package. (calendar-mode-map): Bind cal-html-cursor-month, cal-html-cursor-year.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/calendar/calendar.el14
1 files changed, 14 insertions, 0 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el
index 6fc18d05837..c5e7f85f51b 100644
--- a/lisp/calendar/calendar.el
+++ b/lisp/calendar/calendar.el
@@ -2012,6 +2012,18 @@ Optional prefix argument specifies number of years." t)
2012 "Make a buffer with LaTeX commands for a year's calendar (Filofax). 2012 "Make a buffer with LaTeX commands for a year's calendar (Filofax).
2013Optional prefix argument specifies number of years." t) 2013Optional prefix argument specifies number of years." t)
2014 2014
2015(autoload 'cal-html-cursor-month "cal-html"
2016 "Write an HTML calendar file for numeric MONTH of four-digit YEAR.
2017The output directory DIR is created if necessary. Interactively,
2018MONTH and YEAR are taken from the calendar cursor position. Note
2019that any existing output files are overwritten." t)
2020
2021(autoload 'cal-html-cursor-year "cal-html"
2022 "Write HTML calendar files (index and monthly pages) for four-digit YEAR.
2023The output directory DIR is created if necessary. Interactively,
2024YEAR is taken from the calendar cursor position. Note that any
2025existing output files are overwritten." t)
2026
2015(autoload 'mark-calendar-holidays "holidays" 2027(autoload 'mark-calendar-holidays "holidays"
2016 "Mark notable days in the calendar window." 2028 "Mark notable days in the calendar window."
2017 t) 2029 t)
@@ -2288,6 +2300,8 @@ movement commands will not work correctly."
2288 (define-key map "iBm" 'insert-monthly-bahai-diary-entry) 2300 (define-key map "iBm" 'insert-monthly-bahai-diary-entry)
2289 (define-key map "iBy" 'insert-yearly-bahai-diary-entry) 2301 (define-key map "iBy" 'insert-yearly-bahai-diary-entry)
2290 (define-key map "?" 'calendar-goto-info-node) 2302 (define-key map "?" 'calendar-goto-info-node)
2303 (define-key map "Hm" 'cal-html-cursor-month)
2304 (define-key map "Hy" 'cal-html-cursor-year)
2291 (define-key map "tm" 'cal-tex-cursor-month) 2305 (define-key map "tm" 'cal-tex-cursor-month)
2292 (define-key map "tM" 'cal-tex-cursor-month-landscape) 2306 (define-key map "tM" 'cal-tex-cursor-month-landscape)
2293 (define-key map "td" 'cal-tex-cursor-day) 2307 (define-key map "td" 'cal-tex-cursor-day)