diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-12-14 20:11:11 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-12-14 20:11:11 +0000 |
commit | c94dca60212b9586a723dd293a02553adf052b75 (patch) | |
tree | d17fef7ece3617b6d9d1da538e9d1acd9a6e708a /lisp/vc.el | |
parent | 6b960c100e386735bedea22e9bdd771b54a39b23 (diff) | |
download | emacs-c94dca60212b9586a723dd293a02553adf052b75.tar.gz |
(vc-default-previous-version, vc-default-next-version)
(vc-do-command): Doc fixes.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 9429ab4c646..d06e49ef1ba 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -762,7 +762,7 @@ in their implementation of vc-BACKEND-diff.") (defun vc-default-previous-version (backend file rev) "Return the version number immediately preceding REV for FILE, or nil if there is no previous version. This default -implementation works for <major>.<minor>-style version numbers as +implementation works for MAJOR.MINOR-style version numbers as used by RCS and CVS." (let ((branch (vc-branch-part rev)) (minor-num (string-to-number (vc-minor-part rev)))) @@ -781,7 +781,7 @@ used by RCS and CVS." (defun vc-default-next-version (backend file rev) "Return the version number immediately following REV for FILE, or nil if there is no next version. This default implementation -works for <major>.<minor>-style version numbers as used by RCS +works for MAJOR.MINOR-style version numbers as used by RCS and CVS." (when (not (string= rev (vc-workfile-version file))) (let ((branch (vc-branch-part rev)) @@ -930,7 +930,7 @@ Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the current buffer if BUFFER is t. If the destination buffer is not already current, set it up properly and erase it. The command is considered successful if its exit status does not exceed OKSTATUS (if -OKSTATUS is nil, that means to ignore error status, if it is 'async, that +OKSTATUS is nil, that means to ignore error status, if it is `async', that means not to wait for termination of the subprocess; if it is t it means to ignore all execution errors). FILE is the name of the working file (may also be nil, to execute commands that |