]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-make-backup-files): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Thu, 25 Nov 1993 03:46:27 +0000 (03:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 25 Nov 1993 03:46:27 +0000 (03:46 +0000)
(vc-rcs-status): Use colon, not dash, in the string LOCKS.

lisp/vc-hooks.el

index 629d5caa69a8de804fc0fff9b9eaedb527e4690c..283d2bf56ebcc79dcdada417a63a8519be649629 100644 (file)
@@ -35,8 +35,8 @@ The first pair corresponding to a given back end is used as a template
 when creating new masters.")
 
 (defvar vc-make-backup-files nil
-  "*If non-nil, backups of registered files are made according to
-the make-backup-files variable.  Otherwise, prevents backups being made.")
+  "*If non-nil, backups of registered files are made as with other files.
+If nil (the default), for files covered by version control don't get backups.")
 
 (defvar vc-rcs-status t
   "*If non-nil, revision and locks on RCS working file displayed in modeline.
@@ -216,7 +216,7 @@ visiting FILE."
                        (narrow-to-region (match-beginning 1) (match-end 1))
                        (goto-char (point-min))
                        (while (re-search-forward lock-pattern nil t)
-                         (replace-match (if (eobp) "" "-") t t))
+                         (replace-match (if (eobp) "" ":") t t))
                        (buffer-string)))
                     (status
                      (if (not (string-equal locks ""))