emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/vc.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/vc.el
Date: Wed, 14 Dec 2005 20:10:28 +0000

Index: emacs/lisp/vc.el
diff -u emacs/lisp/vc.el:1.406 emacs/lisp/vc.el:1.407
--- emacs/lisp/vc.el:1.406      Wed Dec 14 16:57:35 2005
+++ emacs/lisp/vc.el    Wed Dec 14 20:10:28 2005
@@ -762,7 +762,7 @@
 (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 @@
 (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 @@
 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]