projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbeda21
)
* lisp/isearch.el (isearch-lazy-highlight): Fix defcustom type (bug#46208)
author
Juri Linkov
<juri@linkov.net>
Sun, 31 Jan 2021 21:47:31 +0000
(23:47 +0200)
committer
Juri Linkov
<juri@linkov.net>
Sun, 31 Jan 2021 21:47:31 +0000
(23:47 +0200)
lisp/isearch.el
patch
|
blob
|
history
diff --git
a/lisp/isearch.el
b/lisp/isearch.el
index 8320847893e2db8f80ee11922f8d082276f205c2..f99461ac45671a859935eacb737cda9c6a640caf 100644
(file)
--- a/
lisp/isearch.el
+++ b/
lisp/isearch.el
@@
-310,7
+310,8
@@
matching the current search string is highlighted lazily
When multiple windows display the current buffer, the
highlighting is displayed only on the selected window, unless
this variable is set to the symbol `all-windows'."
- :type '(choice boolean
+ :type '(choice (const :tag "Off" nil)
+ (const :tag "On, and applied to current window" t)
(const :tag "On, and applied to all windows" all-windows))
:group 'lazy-highlight
:group 'isearch)