1
0
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:
Mauro Aranda 2023-09-14 08:24:43 -03:00 committed by Eli Zaretskii
parent 5ec8be1d58
commit c9cb8ee0fc

View File

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