]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/isearch.el (isearch-lazy-highlight): Fix defcustom type (bug#46208)
authorJuri Linkov <juri@linkov.net>
Sun, 31 Jan 2021 21:47:31 +0000 (23:47 +0200)
committerJuri Linkov <juri@linkov.net>
Sun, 31 Jan 2021 21:47:31 +0000 (23:47 +0200)
lisp/isearch.el

index 8320847893e2db8f80ee11922f8d082276f205c2..f99461ac45671a859935eacb737cda9c6a640caf 100644 (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)