From: Richard M. Stallman Date: Thu, 25 Sep 1997 00:53:39 +0000 (+0000) Subject: (save-place-version-control): Make nil the default. X-Git-Tag: emacs-20.3~3094 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a4ce5edeb5e7f26e73d54eb4635442454d00ed92;p=emacs.git (save-place-version-control): Make nil the default. --- 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