From: Gerd Moellmann Date: Wed, 17 Jan 2001 14:11:06 +0000 (+0000) Subject: (isearch-lazy-highlight-initial-delay) X-Git-Tag: emacs-pretest-21.0.96~244 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b8fbd474999ae2282f763db0005f477c5c18174d;p=emacs.git (isearch-lazy-highlight-initial-delay) (isearch-lazy-highlight-interval): Default to 0. --- diff --git a/lisp/isearch.el b/lisp/isearch.el index 5fd96546601..fbc62e87398 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -1838,12 +1838,12 @@ If this is nil, extra highlighting can be \"manually\" removed with :type 'boolean :group 'isearch-lazy-highlight) -(defcustom isearch-lazy-highlight-initial-delay 0.25 +(defcustom isearch-lazy-highlight-initial-delay 0 ; 0.25 "*Seconds to wait before beginning to lazily highlight all matches." :type 'number :group 'isearch-lazy-highlight) -(defcustom isearch-lazy-highlight-interval 0.0625 +(defcustom isearch-lazy-highlight-interval 0 ; 0.0625 "*Seconds between lazily highlighting successive matches." :type 'number :group 'isearch-lazy-highlight)