diff options
| author | Richard M. Stallman <rms@gnu.org> | 1993-11-25 03:46:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1993-11-25 03:46:27 +0000 |
| commit | 5032bd23072d5f08365286b7d2f176a205f60c06 (patch) | |
| tree | d2f7c9ce6a1e9cc4f4313db88f9a52954a8294e4 /lisp/vc-hooks.el | |
| parent | 3bede93e156e5633e15a87f561bc48e3c3a9ea6b (diff) | |
| download | emacs-5032bd23072d5f08365286b7d2f176a205f60c06.tar.gz | |
(vc-make-backup-files): Doc fix.
(vc-rcs-status): Use colon, not dash, in the string LOCKS.
Diffstat (limited to 'lisp/vc-hooks.el')
| -rw-r--r-- | lisp/vc-hooks.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 629d5caa69a..283d2bf56eb 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -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 "")) |
