comparison lisp/calendar/calendar.el @ 73518:099deb7b2cbd

(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.
author Glenn Morris <rgm@gnu.org>
date Sat, 28 Oct 2006 21:53:34 +0000
parents 97319c05f531
children 4b70fa58f083 7eeafaaa9eab
comparison
equal deleted inserted replaced
73517:2881aec6b925 73518:099deb7b2cbd
2009 Optional prefix argument specifies number of years." t) 2009 Optional prefix argument specifies number of years." t)
2010 2010
2011 (autoload 'cal-tex-cursor-filofax-year "cal-tex" 2011 (autoload 'cal-tex-cursor-filofax-year "cal-tex"
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
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)
2014 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)
2018 2030
2286 (define-key map "iiy" 'insert-yearly-islamic-diary-entry) 2298 (define-key map "iiy" 'insert-yearly-islamic-diary-entry)
2287 (define-key map "iBd" 'insert-bahai-diary-entry) 2299 (define-key map "iBd" 'insert-bahai-diary-entry)
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)
2294 (define-key map "tw1" 'cal-tex-cursor-week) 2308 (define-key map "tw1" 'cal-tex-cursor-week)
2295 (define-key map "tw2" 'cal-tex-cursor-week2) 2309 (define-key map "tw2" 'cal-tex-cursor-week2)