* lisp/isearch.el (isearch-lazy-highlight): Fix defcustom type (bug#46208)
This commit is contained in:
parent
cbeda21083
commit
85b0137858
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue