From c9cb8ee0fc0dd3cad7b56b8fc37f943a0f12f326 Mon Sep 17 00:00:00 2001 From: Mauro Aranda Date: Thu, 14 Sep 2023 08:24:43 -0300 Subject: [PATCH] Fix defcustom in saveplace.el (Bug#65977) * lisp/saveplace.el (save-place-ignore-files-regexp): Allow nil. --- lisp/saveplace.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/saveplace.el b/lisp/saveplace.el index 71cd8b9bc0e..92228dc8e78 100644 --- a/lisp/saveplace.el +++ b/lisp/saveplace.el @@ -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)) -- 2.39.2