diff options
author | Jim Blandy <jimb@redhat.com> | 1992-08-04 07:27:12 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-08-04 07:27:12 +0000 |
commit | 637a8ae9ceb1c1b408dd5e240736dccd004e36d1 (patch) | |
tree | b80ece2d4b7fee6073c86c0cb13c4e928a02cd86 | |
parent | 9f1ce56b63f5a415825e6bbe911bcb7bc3d87609 (diff) | |
download | emacs-637a8ae9ceb1c1b408dd5e240736dccd004e36d1.tar.gz |
*** empty log message ***
-rw-r--r-- | lisp/calendar/appt.el | 1 | ||||
-rw-r--r-- | lisp/loadup.el | 2 | ||||
-rw-r--r-- | lisp/vc.el | 13 |
3 files changed, 15 insertions, 1 deletions
diff --git a/lisp/calendar/appt.el b/lisp/calendar/appt.el index 8c673811596..30ba686fa37 100644 --- a/lisp/calendar/appt.el +++ b/lisp/calendar/appt.el @@ -384,6 +384,7 @@ The time should be in either 24 hour format or am/pm format." ;; Wednesday ;; 10:00am group meeting" +;;;###autoload (defun appt-make-list () (setq appt-time-msg-list nil) diff --git a/lisp/loadup.el b/lisp/loadup.el index 8444976e157..afca23d5e35 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -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, diff --git a/lisp/vc.el b/lisp/vc.el index 4c50545035f..24d0c503755 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -232,8 +232,9 @@ the master name of FILE; this is appended to an optional list of FLAGS." )) ))) -;; 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 @@ the option to steal the lock." ;;; 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 @@ popped up to accept a comment." ;; Additional entry points for examining version histories +;;;###autoload (defun vc-diff (historic) "Display diffs between file versions." (interactive "P") @@ -538,6 +541,7 @@ files in or below it." ;; 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 @@ the variable vc-header-strings" ;; 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 @@ the variable vc-header-strings" 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 @@ version becomes part of the named configuration." 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 @@ levels in the snapshot." ;; 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 @@ levels in the snapshot." ) ) +;;;###autoload (defun vc-revert-buffer () "Revert the current buffer's file back to the latest version." (interactive) @@ -700,6 +709,7 @@ levels in the snapshot." ) ) +;;;###autoload (defun vc-cancel-version (norevert) "Undo your latest checkin." (interactive "P") @@ -744,6 +754,7 @@ levels in the snapshot." nil) ) +;;;###autoload (defun vc-update-change-log () "Find change log file and add entries from recent RCS logs." (interactive) |