aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2021-05-31 23:32:50 +0300
committerJuri Linkov2021-05-31 23:32:50 +0300
commitef07d0b8c7576ae0726d410ea41853b3da59a4fc (patch)
treed89369700433d0d4ee78b2d1a792e4e673e704fa
parent8992a4520274600c6698406a93ff4e056897879c (diff)
downloademacs-ef07d0b8c7576ae0726d410ea41853b3da59a4fc.tar.gz
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."
404 (integer :tag "Some")) 404 (integer :tag "Some"))
405 :group 'lazy-highlight) 405 :group 'lazy-highlight)
406 406
407(defcustom lazy-highlight-buffer-max-at-a-time 20 407(defcustom lazy-highlight-buffer-max-at-a-time 200 ; 20 (bug#48581)
408 "Maximum matches to highlight at a time (for `lazy-highlight-buffer'). 408 "Maximum matches to highlight at a time (for `lazy-highlight-buffer').
409Larger values may reduce Isearch's responsiveness to user input; 409Larger values may reduce Isearch's responsiveness to user input;
410smaller values make matches highlight slowly. 410smaller values make matches highlight slowly.