[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
emacs-29 c9cb8ee0fc0 1/2: Fix defcustom in saveplace.el (Bug#65977)
From: |
Eli Zaretskii |
Subject: |
emacs-29 c9cb8ee0fc0 1/2: Fix defcustom in saveplace.el (Bug#65977) |
Date: |
Thu, 14 Sep 2023 09:18:31 -0400 (EDT) |
branch: emacs-29
commit c9cb8ee0fc0dd3cad7b56b8fc37f943a0f12f326
Author: Mauro Aranda <maurooaranda@gmail.com>
Commit: Eli Zaretskii <eliz@gnu.org>
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))