From 85b0137858098013eb8ab66c4e9b256eedb1954d Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Sun, 31 Jan 2021 23:47:31 +0200 Subject: * lisp/isearch.el (isearch-lazy-highlight): Fix defcustom type (bug#46208) --- lisp/isearch.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- cgit v1.2.1