From: Mauro Aranda Date: Thu, 14 Sep 2023 11:24:43 +0000 (-0300) Subject: Fix defcustom in saveplace.el (Bug#65977) X-Git-Tag: emacs-29.1.90~95 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c9cb8ee0fc0dd3cad7b56b8fc37f943a0f12f326;p=emacs.git Fix defcustom in saveplace.el (Bug#65977) * lisp/saveplace.el (save-place-ignore-files-regexp): Allow nil. --- 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))