diff options
author | Juri Linkov <juri@linkov.net> | 2021-05-31 23:32:50 +0300 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2021-05-31 23:32:50 +0300 |
commit | ef07d0b8c7576ae0726d410ea41853b3da59a4fc (patch) | |
tree | d89369700433d0d4ee78b2d1a792e4e673e704fa | |
parent | 8992a4520274600c6698406a93ff4e056897879c (diff) | |
download | emacs-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.el | 2 |
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. |