diff options
author | Juri Linkov <juri@linkov.net> | 2021-01-31 23:47:31 +0200 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2021-01-31 23:47:31 +0200 |
commit | 85b0137858098013eb8ab66c4e9b256eedb1954d (patch) | |
tree | 9b2a7955e2e84aa430d6fa65cc4566db839a4ab5 /lisp/isearch.el | |
parent | cbeda210835bee9ff3e7f697c7944a10db8b132c (diff) | |
download | emacs-85b0137858098013eb8ab66c4e9b256eedb1954d.tar.gz emacs-85b0137858098013eb8ab66c4e9b256eedb1954d.tar.bz2 emacs-85b0137858098013eb8ab66c4e9b256eedb1954d.zip |
* lisp/isearch.el (isearch-lazy-highlight): Fix defcustom type (bug#46208)
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r-- | lisp/isearch.el | 3 |
1 files changed, 2 insertions, 1 deletions
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) |