1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(save-place-version-control): Make nil the default.

This commit is contained in:
Richard M. Stallman 1997-09-25 00:53:39 +00:00
parent 020d301566
commit a4ce5edeb5

View file

@ -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