comparison lisp/saveplace.el @ 19979:8540d32e89cd

(save-place-version-control): Make nil the default.
author Richard M. Stallman <rms@gnu.org>
date Thu, 25 Sep 1997 00:53:39 +0000
parents e2757a9ccbe9
children 2b5cebd0da5e
comparison
equal deleted inserted replaced
19978:83050d7e3f64 19979:8540d32e89cd
70 (defcustom save-place-file (convert-standard-filename "~/.emacs-places") 70 (defcustom save-place-file (convert-standard-filename "~/.emacs-places")
71 "*Name of the file that records `save-place-alist' value." 71 "*Name of the file that records `save-place-alist' value."
72 :type 'file 72 :type 'file
73 :group 'save-place) 73 :group 'save-place)
74 74
75 (defcustom save-place-version-control 'nospecial 75 (defcustom save-place-version-control nil
76 "*Controls whether to make numbered backups of master save-place file. 76 "*Controls whether to make numbered backups of master save-place file.
77 It can have four values: t, nil, `never', and `nospecial'. The first 77 It can have four values: t, nil, `never', and `nospecial'. The first
78 three have the same meaning that they do for the variable 78 three have the same meaning that they do for the variable
79 `version-control', and the final value `nospecial' means just use the 79 `version-control', and the final value `nospecial' means just use the
80 value of `version-control'." 80 value of `version-control'."
81 :type '(radio (const :tag "Unconditionally" t) 81 :type '(radio (const :tag "Unconditionally" t)
82 (const :tag "For VC Files" nil) 82 (const :tag "For VC Files" nil)
83 (const never) 83 (const never)
84 (const :tag "Use value of version-control" nospecial)) 84 (const :tag "Use value of `version-control'" nospecial))
85 :group 'save-place) 85 :group 'save-place)
86 86
87 (defvar save-place-loaded nil 87 (defvar save-place-loaded nil
88 "Non-nil means that the `save-place-file' has been loaded.") 88 "Non-nil means that the `save-place-file' has been loaded.")
89 89