diff options
author | Glenn Morris <rgm@gnu.org> | 2008-03-13 05:41:16 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-03-13 05:41:16 +0000 |
commit | 1d0c7fdfd5b83efff68b171203893de85b0f69ac (patch) | |
tree | 54e71e95832dfab52a4daa3283494679d3a1a7bc /lisp/calendar/cal-coptic.el | |
parent | dedac6ab10e26307aca17b23fa173efb1523b020 (diff) | |
download | emacs-1d0c7fdfd5b83efff68b171203893de85b0f69ac.tar.gz emacs-1d0c7fdfd5b83efff68b171203893de85b0f69ac.tar.bz2 emacs-1d0c7fdfd5b83efff68b171203893de85b0f69ac.zip |
(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-coptic.el')
-rw-r--r-- | lisp/calendar/cal-coptic.el | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/lisp/calendar/cal-coptic.el b/lisp/calendar/cal-coptic.el index 3a206d9866a..9e5664d9129 100644 --- a/lisp/calendar/cal-coptic.el +++ b/lisp/calendar/cal-coptic.el @@ -105,7 +105,7 @@ Gregorian date Sunday, December 31, 1 BC." (1- (calendar-absolute-from-coptic (list month 1 year)))))) (list month day year)))) -;;;###autoload +;;;###cal-autoload (defun calendar-coptic-date-string (&optional date) "String of Coptic date of Gregorian DATE. Returns the empty string if DATE is pre-Coptic calendar. @@ -124,7 +124,7 @@ Defaults to today's date if DATE is not given." (year (int-to-string y))) (mapconcat 'eval calendar-date-display-form ""))))) -;;;###autoload +;;;###cal-autoload (defun calendar-print-coptic-date () "Show the Coptic calendar equivalent of the selected date." (interactive) @@ -133,7 +133,7 @@ Defaults to today's date if DATE is not given." (message "Date is pre-%s calendar" coptic-name) (message "%s date: %s" coptic-name f)))) -;;;###autoload +;;;###cal-autoload (defun calendar-goto-coptic-date (date &optional noecho) "Move cursor to Coptic date DATE. Echo Coptic date unless NOECHO is t." @@ -170,6 +170,7 @@ Echo Coptic date unless NOECHO is t." (defvar date) ;; To be called from list-sexp-diary-entries, where DATE is bound. +;;;###diary-autoload (defun diary-coptic-date () "Coptic calendar equivalent of date diary entry." (let ((f (calendar-coptic-date-string date))) @@ -201,7 +202,7 @@ Gregorian date Sunday, December 31, 1 BC." (let ((coptic-calendar-epoch ethiopic-calendar-epoch)) (calendar-coptic-from-absolute date))) -;;;###autoload +;;;###cal-autoload (defun calendar-ethiopic-date-string (&optional date) "String of Ethiopic date of Gregorian DATE. Returns the empty string if DATE is pre-Ethiopic calendar. @@ -211,7 +212,7 @@ Defaults to today's date if DATE is not given." (coptic-calendar-month-name-array ethiopic-calendar-month-name-array)) (calendar-coptic-date-string date))) -;;;###autoload +;;;###cal-autoload (defun calendar-print-ethiopic-date () "Show the Ethiopic calendar equivalent of the selected date." (interactive) @@ -220,7 +221,7 @@ Defaults to today's date if DATE is not given." (coptic-calendar-month-name-array ethiopic-calendar-month-name-array)) (call-interactively 'calendar-print-coptic-date))) -;;;###autoload +;;;###cal-autoload (defun calendar-goto-ethiopic-date (date &optional noecho) "Move cursor to Ethiopic date DATE. Echo Ethiopic date unless NOECHO is t." @@ -234,6 +235,7 @@ Echo Ethiopic date unless NOECHO is t." (or noecho (calendar-print-ethiopic-date))) ;; To be called from list-sexp-diary-entries, where DATE is bound. +;;;###diary-autoload (defun diary-ethiopic-date () "Ethiopic calendar equivalent of date diary entry." (let ((coptic-calendar-epoch ethiopic-calendar-epoch) @@ -243,9 +245,5 @@ Echo Ethiopic date unless NOECHO is t." (provide 'cal-coptic) -;; Local Variables: -;; generated-autoload-file: "cal-loaddefs.el" -;; End: - ;; arch-tag: 72d49161-25df-4072-9312-b182cdca7627 ;;; cal-coptic.el ends here |