Mercurial > emacs
changeset 927:587a08c3a70b
*** empty log message ***
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 04 Aug 1992 07:27:12 +0000 |
parents | faa1d84dfe50 |
children | a95dc7876025 |
files | lisp/calendar/appt.el lisp/loadup.el lisp/vc.el |
diffstat | 3 files changed, 15 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/calendar/appt.el Tue Aug 04 07:21:29 1992 +0000 +++ b/lisp/calendar/appt.el Tue Aug 04 07:27:12 1992 +0000 @@ -384,6 +384,7 @@ ;; Wednesday ;; 10:00am group meeting" +;;;###autoload (defun appt-make-list () (setq appt-time-msg-list nil)
--- a/lisp/loadup.el Tue Aug 04 07:21:29 1992 +0000 +++ b/lisp/loadup.el Tue Aug 04 07:27:12 1992 +0000 @@ -90,6 +90,8 @@ (progn ; floating pt. functions if (garbage-collect) ; we have float support. (load "float-sup"))) +(garbage-collect) +(load "vc-hooks") ;If you want additional libraries to be preloaded and their ;doc strings kept in the DOC file rather than in core,
--- a/lisp/vc.el Tue Aug 04 07:21:29 1992 +0000 +++ b/lisp/vc.el Tue Aug 04 07:27:12 1992 +0000 @@ -232,8 +232,9 @@ )) ))) -;; Here's the major entry point +;; Here's the major entry point. +;;;###autoload (defun vc-next-action (verbose) "Do the next logical checkin or checkout operation on the current file. If the file is not already registered, this registers it for version @@ -299,6 +300,7 @@ ;;; These functions help the vc-next-action entry point +;;;###autoload (defun vc-register (&optional override) "Register the current file into your version-control system." (interactive "P") @@ -473,6 +475,7 @@ ;; Additional entry points for examining version histories +;;;###autoload (defun vc-diff (historic) "Display diffs between file versions." (interactive "P") @@ -538,6 +541,7 @@ ;; Header-insertion code +;;;###autoload (defun vc-insert-headers () "Insert headers in a file for use with your version-control system. Headers desired are inserted at the start of the buffer, and are pulled from @@ -567,6 +571,7 @@ ;; Status-checking functions +;;;###autoload (defun vc-directory (verbose) "Show version-control status of all files under the current directory." (interactive "P") @@ -636,6 +641,7 @@ dir) t))) +;;;###autoload (defun vc-create-snapshot (name) "Make a snapshot called NAME. The snapshot is made from all registered files at or below the current @@ -652,6 +658,7 @@ default-directory) )) +;;;###autoload (defun vc-retrieve-snapshot (name) "Retrieve the snapshot called NAME. This function fails if any files are locked at or below the current directory @@ -670,6 +677,7 @@ ;; Miscellaneous other entry points +;;;###autoload (defun vc-print-log () "List the change log of the current buffer in a window." (interactive) @@ -683,6 +691,7 @@ ) ) +;;;###autoload (defun vc-revert-buffer () "Revert the current buffer's file back to the latest version." (interactive) @@ -700,6 +709,7 @@ ) ) +;;;###autoload (defun vc-cancel-version (norevert) "Undo your latest checkin." (interactive "P") @@ -744,6 +754,7 @@ nil) ) +;;;###autoload (defun vc-update-change-log () "Find change log file and add entries from recent RCS logs." (interactive)