* lisp/isearch.el (isearch-lazy-highlight): Fix defcustom type (bug#46208)

This commit is contained in:
Juri Linkov 2021-01-31 23:47:31 +02:00
parent cbeda21083
commit 85b0137858

View file

@ -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)