diff options
| author | Stefan Monnier | 2001-07-16 14:19:17 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-07-16 14:19:17 +0000 |
| commit | a84b80ba4ae5ff08dbe3ce5e88b52ea019b9b334 (patch) | |
| tree | e8bec1b19fcdf4a1c5e4b5ffa2efa2cedc8b0c05 | |
| parent | fea245718b5d52284505f5e06668bacb7a0932db (diff) | |
| download | emacs-a84b80ba4ae5ff08dbe3ce5e88b52ea019b9b334.tar.gz emacs-a84b80ba4ae5ff08dbe3ce5e88b52ea019b9b334.zip | |
(vc-do-command): Autoload.
| -rw-r--r-- | lisp/vc.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 844eca88c68..67f2a3651f9 100644 --- a/lisp/vc.el +++ b/lisp/vc.el | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | ;; Author: FSF (see below for full credits) | 5 | ;; Author: FSF (see below for full credits) |
| 6 | ;; Maintainer: Andre Spiegel <spiegel@gnu.org> | 6 | ;; Maintainer: Andre Spiegel <spiegel@gnu.org> |
| 7 | 7 | ||
| 8 | ;; $Id: vc.el,v 1.299 2001/05/03 00:36:07 monnier Exp $ | 8 | ;; $Id: vc.el,v 1.300 2001/07/11 22:55:05 monnier Exp $ |
| 9 | 9 | ||
| 10 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 11 | 11 | ||
| @@ -804,6 +804,7 @@ Else, add CODE to the process' sentinel." | |||
| 804 | Each function is called inside the buffer in which the command was run | 804 | Each function is called inside the buffer in which the command was run |
| 805 | and is passed 3 argument: the COMMAND, the FILE and the FLAGS.") | 805 | and is passed 3 argument: the COMMAND, the FILE and the FLAGS.") |
| 806 | 806 | ||
| 807 | ;;;###autoload | ||
| 807 | (defun vc-do-command (buffer okstatus command file &rest flags) | 808 | (defun vc-do-command (buffer okstatus command file &rest flags) |
| 808 | "Execute a version control command, notifying user and checking for errors. | 809 | "Execute a version control command, notifying user and checking for errors. |
| 809 | Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the | 810 | Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the |
| @@ -3081,9 +3082,6 @@ Invoke FUNC f ARGS on each VC-managed file f underneath it." | |||
| 3081 | 3082 | ||
| 3082 | ;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE | 3083 | ;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE |
| 3083 | ;; | 3084 | ;; |
| 3084 | ;; This is actually seriously out-of-date because the code has changed | ||
| 3085 | ;; a fair bit since then. -stef | ||
| 3086 | ;; | ||
| 3087 | ;; These may be useful to anyone who has to debug or extend the package. | 3085 | ;; These may be useful to anyone who has to debug or extend the package. |
| 3088 | ;; (Note that this information corresponds to versions 5.x. Some of it | 3086 | ;; (Note that this information corresponds to versions 5.x. Some of it |
| 3089 | ;; might have been invalidated by the additions to support branching | 3087 | ;; might have been invalidated by the additions to support branching |