aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2008-03-08 03:42:30 +0000
committerGlenn Morris2008-03-08 03:42:30 +0000
commitad20a664492675fe93f76f5b14e18c07d6fa7965 (patch)
tree76b733e71741d7fe07d6635c79f04fb8de5cf982 /lisp
parentc645b7bb0d76d236fa8e9b2517fcee59900396c3 (diff)
downloademacs-ad20a664492675fe93f76f5b14e18c07d6fa7965.tar.gz
emacs-ad20a664492675fe93f76f5b14e18c07d6fa7965.zip
Add autoload cookies to functions formerly autoloaded in calendar.el.
Set `generated-autoload-file' to "cal-loaddefs.el".
Diffstat (limited to 'lisp')
-rw-r--r--lisp/calendar/cal-html.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/calendar/cal-html.el b/lisp/calendar/cal-html.el
index 9be16bd82d9..9c005d0589b 100644
--- a/lisp/calendar/cal-html.el
+++ b/lisp/calendar/cal-html.el
@@ -1,6 +1,7 @@
1;;; cal-html.el --- functions for printing HTML calendars 1;;; cal-html.el --- functions for printing HTML calendars
2 2
3;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 3;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
4;; Free Software Foundation, Inc.
4 5
5;; Author: Anna M. Bigatti <bigatti@dima.unige.it> 6;; Author: Anna M. Bigatti <bigatti@dima.unige.it>
6;; Keywords: calendar 7;; Keywords: calendar
@@ -410,6 +411,7 @@ four-digit YEAR. Diary entries in DIARY-LIST are included."
410 411
411;;; User commands. 412;;; User commands.
412 413
414;;;###autoload
413(defun cal-html-cursor-month (month year dir) 415(defun cal-html-cursor-month (month year dir)
414 "Write an HTML calendar file for numeric MONTH of four-digit YEAR. 416 "Write an HTML calendar file for numeric MONTH of four-digit YEAR.
415The output directory DIR is created if necessary. Interactively, 417The output directory DIR is created if necessary. Interactively,
@@ -422,6 +424,7 @@ that any existing output files are overwritten."
422 (make-directory dir t) 424 (make-directory dir t)
423 (cal-html-one-month month year dir)) 425 (cal-html-one-month month year dir))
424 426
427;;;###autoload
425(defun cal-html-cursor-year (year dir) 428(defun cal-html-cursor-year (year dir)
426 "Write HTML calendar files (index and monthly pages) for four-digit YEAR. 429 "Write HTML calendar files (index and monthly pages) for four-digit YEAR.
427The output directory DIR is created if necessary. Interactively, 430The output directory DIR is created if necessary. Interactively,
@@ -440,6 +443,9 @@ existing output files are overwritten."
440 443
441(provide 'cal-html) 444(provide 'cal-html)
442 445
446;; Local Variables:
447;; generated-autoload-file: "cal-loaddefs.el"
448;; End:
443 449
444;; arch-tag: 4e73377d-d2c1-46ea-a103-02c111da5f57 450;; arch-tag: 4e73377d-d2c1-46ea-a103-02c111da5f57
445;;; cal-html.el ends here 451;;; cal-html.el ends here