diff options
| author | Juri Linkov | 2021-05-31 23:32:50 +0300 |
|---|---|---|
| committer | Juri Linkov | 2021-05-31 23:32:50 +0300 |
| commit | ef07d0b8c7576ae0726d410ea41853b3da59a4fc (patch) | |
| tree | d89369700433d0d4ee78b2d1a792e4e673e704fa | |
| parent | 8992a4520274600c6698406a93ff4e056897879c (diff) | |
| download | emacs-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.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." | |||
| 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'). |
| 409 | Larger values may reduce Isearch's responsiveness to user input; | 409 | Larger values may reduce Isearch's responsiveness to user input; |
| 410 | smaller values make matches highlight slowly. | 410 | smaller values make matches highlight slowly. |