mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-21 06:55:39 +00:00
Fix defcustom in saveplace.el (Bug#65977)
* lisp/saveplace.el (save-place-ignore-files-regexp): Allow nil.
This commit is contained in:
parent
5ec8be1d58
commit
c9cb8ee0fc
@ -133,7 +133,8 @@ Useful for temporary file such as commit message files that are
|
||||
automatically created by the VCS. If set to nil, this feature is
|
||||
disabled, i.e., the position is recorded for all files."
|
||||
:version "24.1"
|
||||
:type 'regexp)
|
||||
:type '(choice (const :tag "Record position for all files" nil)
|
||||
regexp))
|
||||
|
||||
(declare-function dired-current-directory "dired" (&optional localp))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user