]> git.eshelyaron.com Git - emacs.git/commitdiff
(desktop-load-default): Add autoload cookie.
authorRichard M. Stallman <rms@gnu.org>
Sat, 28 Mar 1998 07:32:50 +0000 (07:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 28 Mar 1998 07:32:50 +0000 (07:32 +0000)
(desktop-read): Likewise.

lisp/desktop.el

index b31f17353da2cf7b26d88f4d6240fc1b008dcb00..61502a6a828e1d626d2a76bce175e25270044408 100644 (file)
 ;;             - buffer-read-only
 ;;             - some local variables
 
-;; To use this, first put these three lines in the bottom of your .emacs
+;; To use this, first put these two lines in the bottom of your .emacs
 ;; file (the later the better):
 ;;
-;;     (load "desktop")
 ;;     (desktop-load-default)
 ;;     (desktop-read)
 ;;
@@ -503,6 +502,7 @@ MODE is the major mode."
        (if (file-exists-p filename)
            (delete-file filename)))))
 ;; ----------------------------------------------------------------------------
+;;;###autoload
 (defun desktop-read ()
   "Read the Desktop file and the files it specifies.
 This is a no-op when Emacs is running in batch mode."
@@ -525,6 +525,7 @@ This is a no-op when Emacs is running in batch mode."
            (message "Desktop loaded."))
        (desktop-clear)))))
 ;; ----------------------------------------------------------------------------
+;;;###autoload
 (defun desktop-load-default ()
   "Load the `default' start-up library manually.
 Also inhibit further loading of it.  Call this from your `.emacs' file