diff options
| author | Glenn Morris | 2006-10-28 21:53:34 +0000 |
|---|---|---|
| committer | Glenn Morris | 2006-10-28 21:53:34 +0000 |
| commit | 582172c6aa419905dc3a9c9264f43dae1986d0aa (patch) | |
| tree | ab7e0c3a37ef4e9454e5f983e6f9c3c9f9490ef7 | |
| parent | 94ce023059fcc9856a3914a70ea462e385551bed (diff) | |
| download | emacs-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.
| -rw-r--r-- | lisp/calendar/calendar.el | 14 |
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). |
| 2013 | Optional prefix argument specifies number of years." t) | 2013 | Optional 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. | ||
| 2017 | The output directory DIR is created if necessary. Interactively, | ||
| 2018 | MONTH and YEAR are taken from the calendar cursor position. Note | ||
| 2019 | that 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. | ||
| 2023 | The output directory DIR is created if necessary. Interactively, | ||
| 2024 | YEAR is taken from the calendar cursor position. Note that any | ||
| 2025 | existing 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) |