projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
832bd2d
)
Allow nil as a valid value for 'ecomplete-filter-regexp'
author
Philip Kaludercic
<philipk@posteo.net>
Wed, 26 Oct 2022 07:33:48 +0000
(09:33 +0200)
committer
Philip Kaludercic
<philipk@posteo.net>
Wed, 26 Oct 2022 07:33:48 +0000
(09:33 +0200)
* lisp/ecomplete.el (ecomplete-filter-regexp): Replace user option type.
Reported by Mattias EngdegÄrd.
lisp/ecomplete.el
patch
|
blob
|
history
diff --git
a/lisp/ecomplete.el
b/lisp/ecomplete.el
index 54d60c84d4f00743827590e0ca3b9f28feb7f062..dfee07348176981cd675d9b0ba0fa2552ed72b22 100644
(file)
--- a/
lisp/ecomplete.el
+++ b/
lisp/ecomplete.el
@@
-88,7
+88,8
@@
string that was matched."
(defcustom ecomplete-filter-regexp nil
"Regular expression of addresses that should not be stored by ecomplete."
- :type 'regexp
+ :type '(choice (const :tag "None" nil)
+ (regexp :tag "Regexp"))
:version "29.1")
;;; Internal variables.