diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-09-25 00:53:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-09-25 00:53:39 +0000 |
commit | a4ce5edeb5e7f26e73d54eb4635442454d00ed92 (patch) | |
tree | 035d3fb84da8e9007bc1461cf129de2d2b9cbaea /lisp/saveplace.el | |
parent | 020d3015664e1f0b45af04906b05400ea54d1886 (diff) | |
download | emacs-a4ce5edeb5e7f26e73d54eb4635442454d00ed92.tar.gz |
(save-place-version-control): Make nil the default.
Diffstat (limited to 'lisp/saveplace.el')
-rw-r--r-- | lisp/saveplace.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/saveplace.el b/lisp/saveplace.el index d3ad772b8a6..b3d3a24a2f5 100644 --- a/lisp/saveplace.el +++ b/lisp/saveplace.el @@ -72,7 +72,7 @@ simply put this in your `~/.emacs' file: :type 'file :group 'save-place) -(defcustom save-place-version-control 'nospecial +(defcustom save-place-version-control nil "*Controls whether to make numbered backups of master save-place file. It can have four values: t, nil, `never', and `nospecial'. The first three have the same meaning that they do for the variable @@ -81,7 +81,7 @@ value of `version-control'." :type '(radio (const :tag "Unconditionally" t) (const :tag "For VC Files" nil) (const never) - (const :tag "Use value of version-control" nospecial)) + (const :tag "Use value of `version-control'" nospecial)) :group 'save-place) (defvar save-place-loaded nil |