diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-01-02 01:26:20 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-01-02 01:26:20 +0000 |
commit | 93e7eeb4d830578c69c5b6ea4de4ae5d9976ae34 (patch) | |
tree | 83d545f61ce574a0870bdf60f921c483b286a972 /lisp/files.el | |
parent | b1da67d7b2f0c7f7edaad743611085dd9028e141 (diff) | |
download | emacs-93e7eeb4d830578c69c5b6ea4de4ae5d9976ae34.tar.gz |
(version-control): Doc fix.
Diffstat (limited to 'lisp/files.el')
-rw-r--r-- | lisp/files.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/files.el b/lisp/files.el index c462e5cce9d..cc4cd1220f9 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -242,9 +242,9 @@ breaks any hard links between it and other files." (defcustom version-control nil "Control use of version numbers for backup files. -t means make numeric backup versions unconditionally. -nil means make them for files that have some already. -`never' means do not make them." +When t, make numeric backup versions unconditionally. +When nil, make them for files that have some already. +The value `never' means do not make them." :type '(choice (const :tag "Never" never) (const :tag "If existing" nil) (other :tag "Always" t)) |