summaryrefslogtreecommitdiff
path: root/lisp/saveplace.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-09-25 00:53:39 +0000
committerRichard M. Stallman <rms@gnu.org>1997-09-25 00:53:39 +0000
commit3de7a85a3db0f85ffbd338d9379a4d8788666e79 (patch)
tree374c65a847d88771998ac3124d21df602b3e07fc /lisp/saveplace.el
parent9fcc86af542041cd6f4839e91c1876292e1a71fb (diff)
downloademacs-3de7a85a3db0f85ffbd338d9379a4d8788666e79.tar.gz
(save-place-version-control): Make nil the default.
Diffstat (limited to 'lisp/saveplace.el')
-rw-r--r--lisp/saveplace.el4
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