comparison lisp/isearch.el @ 18037:354ae98947b5

(search-highlight): Make it t by default. (search-invisible): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Fri, 30 May 1997 05:15:48 +0000
parents 2fc1e3833259
children f249cd470d71
comparison
equal deleted inserted replaced
18036:d6297be18ba8 18037:354ae98947b5
154 "*If non-nil, regular expression to match a sequence of whitespace chars. 154 "*If non-nil, regular expression to match a sequence of whitespace chars.
155 You might want to use something like \"[ \\t\\r\\n]+\" instead." 155 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.")
170 170
171 (defvar isearch-mode-end-hook nil 171 (defvar isearch-mode-end-hook nil