summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2021-05-31 23:32:50 +0300
committerJuri Linkov <juri@linkov.net>2021-05-31 23:32:50 +0300
commitef07d0b8c7576ae0726d410ea41853b3da59a4fc (patch)
treed89369700433d0d4ee78b2d1a792e4e673e704fa
parent8992a4520274600c6698406a93ff4e056897879c (diff)
downloademacs-ef07d0b8c7576ae0726d410ea41853b3da59a4fc.tar.gz
emacs-ef07d0b8c7576ae0726d410ea41853b3da59a4fc.tar.bz2
emacs-ef07d0b8c7576ae0726d410ea41853b3da59a4fc.zip
* lisp/isearch.el (lazy-highlight-buffer-max-at-a-time): Change from 20 to 200
Suggested by Augusto Stoffel <arstoffel@gmail.com> in bug#48581
-rw-r--r--lisp/isearch.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 232a994dfa7..33776d8069c 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -404,7 +404,7 @@ A value of nil means highlight all matches shown on the screen."
(integer :tag "Some"))
:group 'lazy-highlight)
-(defcustom lazy-highlight-buffer-max-at-a-time 20
+(defcustom lazy-highlight-buffer-max-at-a-time 200 ; 20 (bug#48581)
"Maximum matches to highlight at a time (for `lazy-highlight-buffer').
Larger values may reduce Isearch's responsiveness to user input;
smaller values make matches highlight slowly.