]> git.eshelyaron.com Git - emacs.git/commitdiff
Add autoload cookies to functions formerly autoloaded in calendar.el.
authorGlenn Morris <rgm@gnu.org>
Sat, 8 Mar 2008 03:46:28 +0000 (03:46 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 8 Mar 2008 03:46:28 +0000 (03:46 +0000)
Set `generated-autoload-file' to "cal-loaddefs.el".

lisp/calendar/cal-x.el

index 294927c4a11873d6b099c6fe6f07606fb1a93196..8a889bf208551c6d244c839dfc4b39968411ebe1 100644 (file)
@@ -67,6 +67,7 @@ Can be used to change frame parameters, such as font, color, location, etc.")
 ;; calendar-basic-setup is called first, and will autoload diary-lib.
 (declare-function make-fancy-diary-buffer "diary-lib" nil)
 
+;;;###autoload
 (defun calendar-one-frame-setup (&optional arg)
   "Start calendar and display it in a dedicated frame together with the diary.
 This function requires a display capable of multiple frames, else
@@ -97,6 +98,7 @@ This function requires a display capable of multiple frames, else
               fancy-diary-buffer))
            t))))))
 
+;;;###autoload
 (defun calendar-only-one-frame-setup (&optional arg)
   "Start calendar and display it in a dedicated frame.
 This function requires a display capable of multiple frames, else
@@ -118,6 +120,7 @@ This function requires a display capable of multiple frames, else
           (calendar-basic-setup arg)
           (set-window-dedicated-p (selected-window) t))))))
 
+;;;###autoload
 (defun calendar-two-frame-setup (&optional arg)
   "Start calendar and diary in separate, dedicated frames.
 This function requires a display capable of multiple frames, else
@@ -167,5 +170,9 @@ This function requires a display capable of multiple frames, else
 
 (provide 'cal-x)
 
+;; Local Variables:
+;; generated-autoload-file: "cal-loaddefs.el"
+;; End:
+
 ;; arch-tag: c6dbddca-ae84-442d-87fc-244b76e38e17
 ;;; cal-x.el ends here