From: Juri Linkov Date: Sun, 31 Jan 2021 21:47:31 +0000 (+0200) Subject: * lisp/isearch.el (isearch-lazy-highlight): Fix defcustom type (bug#46208) X-Git-Tag: emacs-27.2-rc1~45 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=85b0137858098013eb8ab66c4e9b256eedb1954d;p=emacs.git * lisp/isearch.el (isearch-lazy-highlight): Fix defcustom type (bug#46208) --- diff --git a/lisp/isearch.el b/lisp/isearch.el index 8320847893e..f99461ac456 100644 --- 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)