summaryrefslogtreecommitdiff
path: root/lisp/calendar
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2006-10-28 21:53:34 +0000
committerGlenn Morris <rgm@gnu.org>2006-10-28 21:53:34 +0000
commit19faafc9e9d7903cdb2afb85f182e859f2efce06 (patch)
treeda41abc13558e79ff35ab92775249265783e5c92 /lisp/calendar
parent88e5d405eb366efa5fbac2ae7614372f2405b549 (diff)
downloademacs-19faafc9e9d7903cdb2afb85f182e859f2efce06.tar.gz
(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/calendar')
-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)
"Make a buffer with LaTeX commands for a year's calendar (Filofax).
Optional prefix argument specifies number of years." t)
+(autoload 'cal-html-cursor-month "cal-html"
+ "Write an HTML calendar file for numeric MONTH of four-digit YEAR.
+The output directory DIR is created if necessary. Interactively,
+MONTH and YEAR are taken from the calendar cursor position. Note
+that any existing output files are overwritten." t)
+
+(autoload 'cal-html-cursor-year "cal-html"
+ "Write HTML calendar files (index and monthly pages) for four-digit YEAR.
+The output directory DIR is created if necessary. Interactively,
+YEAR is taken from the calendar cursor position. Note that any
+existing output files are overwritten." t)
+
(autoload 'mark-calendar-holidays "holidays"
"Mark notable days in the calendar window."
t)
@@ -2288,6 +2300,8 @@ movement commands will not work correctly."
(define-key map "iBm" 'insert-monthly-bahai-diary-entry)
(define-key map "iBy" 'insert-yearly-bahai-diary-entry)
(define-key map "?" 'calendar-goto-info-node)
+ (define-key map "Hm" 'cal-html-cursor-month)
+ (define-key map "Hy" 'cal-html-cursor-year)
(define-key map "tm" 'cal-tex-cursor-month)
(define-key map "tM" 'cal-tex-cursor-month-landscape)
(define-key map "td" 'cal-tex-cursor-day)