diff options
author | Glenn Morris <rgm@gnu.org> | 2008-03-13 05:43:00 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-03-13 05:43:00 +0000 |
commit | d3a0e5bf712df4ea9a7f0d3aa486a8c966b70ec9 (patch) | |
tree | b3070969d3afe1c11ca6d6b7017637e331b4a3d9 /lisp/calendar/cal-html.el | |
parent | 28b3c0f557dcb884bd7632ebe1d7955b9220af91 (diff) | |
download | emacs-d3a0e5bf712df4ea9a7f0d3aa486a8c966b70ec9.tar.gz |
(diary-list-entries): Fix autoload.
(generated-autoload-file): Don't set, instead use different values of
generate-autoload-cookie plus Makefile rules to allow for a mixture of
internal calendar autoloads and normal autoloads.
Diffstat (limited to 'lisp/calendar/cal-html.el')
-rw-r--r-- | lisp/calendar/cal-html.el | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lisp/calendar/cal-html.el b/lisp/calendar/cal-html.el index 9c005d0589b..8eff4233601 100644 --- a/lisp/calendar/cal-html.el +++ b/lisp/calendar/cal-html.el @@ -341,7 +341,7 @@ DATE-LIST is a list of diary entries. Return only those matching DATE." ;; Monthly calendar ;;------------------------------------------------------------ -(autoload 'diary-list-entries "diary-lib" nil t) +(autoload 'diary-list-entries "diary-lib") (defun cal-html-list-diary-entries (d1 d2) "Generate a list of all diary-entries from absolute date D1 to D2." @@ -411,7 +411,7 @@ four-digit YEAR. Diary entries in DIARY-LIST are included." ;;; User commands. -;;;###autoload +;;;###cal-autoload (defun cal-html-cursor-month (month year dir) "Write an HTML calendar file for numeric MONTH of four-digit YEAR. The output directory DIR is created if necessary. Interactively, @@ -424,7 +424,7 @@ that any existing output files are overwritten." (make-directory dir t) (cal-html-one-month month year dir)) -;;;###autoload +;;;###cal-autoload (defun cal-html-cursor-year (year dir) "Write HTML calendar files (index and monthly pages) for four-digit YEAR. The output directory DIR is created if necessary. Interactively, @@ -443,9 +443,5 @@ existing output files are overwritten." (provide 'cal-html) -;; Local Variables: -;; generated-autoload-file: "cal-loaddefs.el" -;; End: - ;; arch-tag: 4e73377d-d2c1-46ea-a103-02c111da5f57 ;;; cal-html.el ends here |