aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-05-30 05:15:48 +0000
committerRichard M. Stallman1997-05-30 05:15:48 +0000
commit30178dde79a3311bd61bf9ba4c41f6cdd7ea5706 (patch)
tree72ee73383048463e709abb78a800112f2644c1a7
parent67f41c5d961722e6f13e8b73f1ae48c5f9c85939 (diff)
downloademacs-30178dde79a3311bd61bf9ba4c41f6cdd7ea5706.tar.gz
emacs-30178dde79a3311bd61bf9ba4c41f6cdd7ea5706.zip
(search-highlight): Make it t by default.
(search-invisible): Doc fix.
-rw-r--r--lisp/isearch.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 6a4d1b82d58..a5005401170 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -156,14 +156,14 @@ You might want to use something like \"[ \\t\\r\\n]+\" instead."
156 :type 'regexp 156 :type 'regexp
157 :group 'isearch) 157 :group 'isearch)
158 158
159(defcustom search-highlight nil 159(defcustom search-highlight t
160 "*Non-nil means incremental search highlights the current match." 160 "*Non-nil means incremental search highlights the current match."
161 :type 'boolean 161 :type 'boolean
162 :group 'isearch) 162 :group 'isearch)
163 163
164(defvar search-invisible nil 164(defvar search-invisible nil
165 "*Non-nil means incremental search can match text hidden by an overlay. 165 "*Non-nil means incremental search can match text hidden by an overlay.
166\(This applies when using `noutline.el'.)") 166\(This applies when using `outline.el'.)")
167 167
168(defvar isearch-mode-hook nil 168(defvar isearch-mode-hook nil
169 "Function(s) to call after starting up an incremental search.") 169 "Function(s) to call after starting up an incremental search.")