aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2001-01-17 14:11:06 +0000
committerGerd Moellmann <[email protected]>2001-01-17 14:11:06 +0000
commitb8fbd474999ae2282f763db0005f477c5c18174d (patch)
treed654efd5c5ed1ad7a4cb85b8586c5597d5ade0d5
parentc982ab21683e6c01e6488a5a101159b14fb58c56 (diff)
(isearch-lazy-highlight-initial-delay)
(isearch-lazy-highlight-interval): Default to 0.
-rw-r--r--lisp/isearch.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 5fd9654660..fbc62e8739 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)