* src/lisp.h (functionp): New function (extracted from Ffunctionp).
[bpt/emacs.git] / lisp / isearch.el
CommitLineData
55535639 1;;; isearch.el --- incremental search minor mode
3b1e4dd1 2
acaf905b 3;; Copyright (C) 1992-1997, 1999-2012 Free Software Foundation, Inc.
3a801d0c 4
3b1e4dd1 5;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
0f09b616 6;; Maintainer: FSF
117132a6 7;; Keywords: matching
bd78fa1d 8;; Package: emacs
8e1cae6d 9
54d2ecd3 10;; This file is part of GNU Emacs.
8e1cae6d 11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
59243403 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
59243403 16
8e1cae6d 17;; GNU Emacs is distributed in the hope that it will be useful,
59243403
RS
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
8e1cae6d 24
3b1e4dd1
ER
25;;; Commentary:
26
8e1cae6d
JB
27;; Instructions
28
08200510
RS
29;; For programmed use of isearch-mode, e.g. calling (isearch-forward),
30;; isearch-mode behaves modally and does not return until the search
117132a6 31;; is completed. It uses a recursive-edit to behave this way.
08200510 32
8e1cae6d 33;; The key bindings active within isearch-mode are defined below in
08200510
RS
34;; `isearch-mode-map' which is given bindings close to the default
35;; characters of the original isearch.el. With `isearch-mode',
36;; however, you can bind multi-character keys and it should be easier
37;; to add new commands. One bug though: keys with meta-prefix cannot
38;; be longer than two chars. Also see minibuffer-local-isearch-map
39;; for bindings active during `isearch-edit-string'.
40
117132a6
DL
41;; isearch-mode should work even if you switch windows with the mouse,
42;; in which case isearch-mode is terminated automatically before the
43;; switch.
08200510
RS
44
45;; The search ring and completion commands automatically put you in
46;; the minibuffer to edit the string. This gives you a chance to
47;; modify the search string before executing the search. There are
48;; three commands to terminate the editing: C-s and C-r exit the
49;; minibuffer and search forward and reverse respectively, while C-m
50;; exits and does a nonincremental search.
51
52;; Exiting immediately from isearch uses isearch-edit-string instead
53;; of nonincremental-search, if search-nonincremental-instead is non-nil.
54;; The name of this option should probably be changed if we decide to
55;; keep the behavior. No point in forcing nonincremental search until
56;; the last possible moment.
57
3b1e4dd1 58;;; Code:
08200510 59
7c2dc8bd 60(eval-when-compile (require 'cl-lib))
08200510 61\f
191f025a 62;; Some additional options and constants.
08200510 63
9c1db929
RS
64(defgroup isearch nil
65 "Incremental search minor mode."
117132a6
DL
66 :link '(emacs-commentary-link "isearch")
67 :link '(custom-manual "(emacs)Incremental Search")
9c1db929
RS
68 :prefix "isearch-"
69 :prefix "search-"
70 :group 'matching)
fdf5afa4 71
9c1db929
RS
72
73(defcustom search-exit-option t
4b65254d 74 "Non-nil means random control characters terminate incremental search."
9c1db929
RS
75 :type 'boolean
76 :group 'isearch)
77
78(defcustom search-slow-window-lines 1
4b65254d 79 "Number of lines in slow search display windows.
fdf5afa4
RS
80These are the short windows used during incremental search on slow terminals.
81Negative means put the slow search window at the top (normally it's at bottom)
9c1db929
RS
82and the value is minus the number of lines."
83 :type 'integer
84 :group 'isearch)
fdf5afa4 85
9c1db929 86(defcustom search-slow-speed 1200
4b65254d 87 "Highest terminal speed at which to use \"slow\" style incremental search.
fdf5afa4 88This is the style where a one-line window is created to show the line
9c1db929
RS
89that the search has reached."
90 :type 'integer
91 :group 'isearch)
8e1cae6d 92
9c1db929 93(defcustom search-upper-case 'not-yanks
4b65254d 94 "If non-nil, upper case chars disable case fold searching.
08200510
RS
95That is, upper and lower case chars must match exactly.
96This applies no matter where the chars come from, but does not
fdf5afa4 97apply to chars in regexps that are prefixed with `\\'.
6e3057bb
JL
98If this value is `not-yanks', text yanked into the search string
99in Isearch mode is always downcased."
9c1db929
RS
100 :type '(choice (const :tag "off" nil)
101 (const not-yanks)
5786b3ed 102 (other :tag "on" t))
9c1db929 103 :group 'isearch)
8e1cae6d 104
9c1db929 105(defcustom search-nonincremental-instead t
0e6038be 106 "If non-nil, do a nonincremental search instead of exiting immediately.
08200510 107Actually, `isearch-edit-string' is called to let you enter the search
9c1db929
RS
108string, and RET terminates editing and does a nonincremental search."
109 :type 'boolean
110 :group 'isearch)
8e1cae6d 111
1e8780b1 112(defcustom search-whitespace-regexp (purecopy "\\s-+")
4b65254d 113 "If non-nil, regular expression to match a sequence of whitespace chars.
e2b992cb 114This applies to regular expression incremental search.
ab67e8b6
RS
115When you put a space or spaces in the incremental regexp, it stands for
116this, unless it is inside of a regexp construct such as [...] or *, + or ?.
117You might want to use something like \"[ \\t\\r\\n]+\" instead.
118In the Customization buffer, that is `[' followed by a space,
51a77cba
RS
119a tab, a carriage return (control-M), a newline, and `]+'.
120
121When this is nil, each space you type matches literally, against one space."
122 :type '(choice (const :tag "Find Spaces Literally" nil)
123 regexp)
9c1db929 124 :group 'isearch)
8e1cae6d 125
0352b205
RS
126(defcustom search-invisible 'open
127 "If t incremental search can match hidden text.
6480c508
JB
128A nil value means don't match invisible text.
129When the value is `open', if the text matched is made invisible by
0352b205
RS
130an overlay having an `invisible' property and that overlay has a property
131`isearch-open-invisible', then incremental search will show the contents.
cd59ea72
SM
132\(This applies when using `outline.el' and `hideshow.el'.)
133See also `reveal-mode' if you want overlays to automatically be opened
134whenever point is in one of them."
0352b205
RS
135 :type '(choice (const :tag "Match hidden text" t)
136 (const :tag "Open overlays" open)
79c7a4fa 137 (const :tag "Don't match hidden text" nil))
0352b205
RS
138 :group 'isearch)
139
140(defcustom isearch-hide-immediately t
68c18d6d
RS
141 "If non-nil, re-hide an invisible match right away.
142This variable makes a difference when `search-invisible' is set to `open'.
143It means that after search makes some invisible text visible
144to show the match, it makes the text invisible again when the match moves.
b48ca14f
JB
145Ordinarily the text becomes invisible again at the end of the search."
146 :type 'boolean
0352b205 147 :group 'isearch)
86bfaffe 148
00098b01 149(defcustom isearch-resume-in-command-history nil
4b65254d
JB
150 "If non-nil, `isearch-resume' commands are added to the command history.
151This allows you to resume earlier Isearch sessions through the
00098b01 152command history."
6848c9f1
KS
153 :type 'boolean
154 :group 'isearch)
155
08200510
RS
156(defvar isearch-mode-hook nil
157 "Function(s) to call after starting up an incremental search.")
158
a6020335
MH
159(defvar isearch-update-post-hook nil
160 "Function(s) to call after isearch has found matches in the buffer.")
161
08200510 162(defvar isearch-mode-end-hook nil
87e97673
RS
163 "Function(s) to call after terminating an incremental search.
164When these functions are called, `isearch-mode-end-hook-quit'
4974aba8 165is non-nil if the user quits the search.")
87e97673
RS
166
167(defvar isearch-mode-end-hook-quit nil
4974aba8 168 "Non-nil while running `isearch-mode-end-hook' if the user quits the search.")
08200510 169
ac475d3a
JL
170(defvar isearch-message-function nil
171 "Function to call to display the search prompt.
172If nil, use `isearch-message'.")
173
6a18e4e7
JL
174(defvar isearch-wrap-function nil
175 "Function to call to wrap the search when search is failed.
176If nil, move point to the beginning of the buffer for a forward search,
177or to the end of the buffer for a backward search.")
178
179(defvar isearch-push-state-function nil
4b65254d 180 "Function to save a function restoring the mode-specific Isearch state
6a18e4e7
JL
181to the search status stack.")
182
f2fd3261 183(defvar isearch-filter-predicate 'isearch-filter-visible
2f669fac
JL
184 "Predicate that filters the search hits that would normally be available.
185Search hits that dissatisfy the predicate are skipped. The function
186has two arguments: the positions of start and end of text matched by
187the search. If this function returns nil, continue searching without
188stopping at this match.")
5e189f39 189
191f025a 190;; Search ring.
8e1cae6d
JB
191
192(defvar search-ring nil
193 "List of search string sequences.")
08200510 194(defvar regexp-search-ring nil
8e1cae6d
JB
195 "List of regular expression search string sequences.")
196
9c1db929 197(defcustom search-ring-max 16
4b65254d 198 "Maximum length of search ring before oldest elements are thrown away."
9c1db929
RS
199 :type 'integer
200 :group 'isearch)
201(defcustom regexp-search-ring-max 16
4b65254d 202 "Maximum length of regexp search ring before oldest elements are thrown away."
9c1db929
RS
203 :type 'integer
204 :group 'isearch)
8e1cae6d
JB
205
206(defvar search-ring-yank-pointer nil
a5dcf63f 207 "Index in `search-ring' of last string reused.
6480c508 208It is nil if none yet.")
08200510 209(defvar regexp-search-ring-yank-pointer nil
a5dcf63f 210 "Index in `regexp-search-ring' of last string reused.
6480c508 211It is nil if none yet.")
8e1cae6d 212
9c1db929 213(defcustom search-ring-update nil
4b65254d 214 "Non-nil if advancing or retreating in the search ring should cause search.
9c1db929
RS
215Default value, nil, means edit the string instead."
216 :type 'boolean
217 :group 'isearch)
08200510 218
bca92193
JL
219;;; isearch highlight customization.
220
221(defcustom search-highlight t
4b65254d 222 "Non-nil means incremental search highlights the current match."
bca92193
JL
223 :type 'boolean
224 :group 'isearch)
225
226(defface isearch
227 '((((class color) (min-colors 88) (background light))
228 ;; The background must not be too dark, for that means
229 ;; the character is hard to see when the cursor is there.
a49ff341 230 (:background "magenta3" :foreground "lightskyblue1"))
bca92193
JL
231 (((class color) (min-colors 88) (background dark))
232 (:background "palevioletred2" :foreground "brown4"))
233 (((class color) (min-colors 16))
234 (:background "magenta4" :foreground "cyan1"))
235 (((class color) (min-colors 8))
236 (:background "magenta4" :foreground "cyan1"))
237 (t (:inverse-video t)))
238 "Face for highlighting Isearch matches."
92cc4a30
JL
239 :group 'isearch
240 :group 'basic-faces)
4be520fb 241(defvar isearch-face 'isearch)
bca92193 242
d8891294
JL
243(defface isearch-fail
244 '((((class color) (min-colors 88) (background light))
245 (:background "RosyBrown1"))
246 (((class color) (min-colors 88) (background dark))
247 (:background "red4"))
248 (((class color) (min-colors 16))
249 (:background "red"))
250 (((class color) (min-colors 8))
251 (:background "red"))
252 (((class color grayscale))
253 :foreground "grey")
254 (t (:inverse-video t)))
723e5b84 255 "Face for highlighting failed part in Isearch echo-area message."
d8891294 256 :version "23.1"
723e5b84
BG
257 :group 'isearch)
258
bca92193 259(defcustom isearch-lazy-highlight t
4b65254d 260 "Controls the lazy-highlighting during incremental search.
bca92193
JL
261When non-nil, all text in the buffer matching the current search
262string is highlighted lazily (see `lazy-highlight-initial-delay'
263and `lazy-highlight-interval')."
264 :type 'boolean
265 :group 'lazy-highlight
266 :group 'isearch)
267
c1bc6bb6 268;;; Lazy highlight customization.
bca92193 269
c1bc6bb6
RS
270(defgroup lazy-highlight nil
271 "Lazy highlighting feature for matching strings."
272 :prefix "lazy-highlight-"
273 :version "21.1"
274 :group 'isearch
bca92193 275 :group 'matching)
c1bc6bb6 276
af3ccb5c
GM
277(define-obsolete-variable-alias 'isearch-lazy-highlight-cleanup
278 'lazy-highlight-cleanup
279 "22.1")
280
c1bc6bb6 281(defcustom lazy-highlight-cleanup t
4b65254d 282 "Controls whether to remove extra highlighting after a search.
c1bc6bb6 283If this is nil, extra highlighting can be \"manually\" removed with
46fe9018 284\\[lazy-highlight-cleanup]."
c1bc6bb6
RS
285 :type 'boolean
286 :group 'lazy-highlight)
af3ccb5c
GM
287
288(define-obsolete-variable-alias 'isearch-lazy-highlight-initial-delay
289 'lazy-highlight-initial-delay
6480c508 290 "22.1")
c1bc6bb6
RS
291
292(defcustom lazy-highlight-initial-delay 0.25
4b65254d 293 "Seconds to wait before beginning to lazily highlight all matches."
c1bc6bb6
RS
294 :type 'number
295 :group 'lazy-highlight)
af3ccb5c
GM
296
297(define-obsolete-variable-alias 'isearch-lazy-highlight-interval
298 'lazy-highlight-interval
6480c508 299 "22.1")
c1bc6bb6
RS
300
301(defcustom lazy-highlight-interval 0 ; 0.0625
4b65254d 302 "Seconds between lazily highlighting successive matches."
c1bc6bb6
RS
303 :type 'number
304 :group 'lazy-highlight)
af3ccb5c
GM
305
306(define-obsolete-variable-alias 'isearch-lazy-highlight-max-at-a-time
307 'lazy-highlight-max-at-a-time
6480c508 308 "22.1")
c1bc6bb6
RS
309
310(defcustom lazy-highlight-max-at-a-time 20
4b65254d
JB
311 "Maximum matches to highlight at a time (for `lazy-highlight').
312Larger values may reduce Isearch's responsiveness to user input;
c1bc6bb6
RS
313smaller values make matches highlight slowly.
314A value of nil means highlight all matches."
315 :type '(choice (const :tag "All" nil)
316 (integer :tag "Some"))
317 :group 'lazy-highlight)
318
e3cde0c7 319(defface lazy-highlight
c1bc6bb6
RS
320 '((((class color) (min-colors 88) (background light))
321 (:background "paleturquoise"))
322 (((class color) (min-colors 88) (background dark))
323 (:background "paleturquoise4"))
324 (((class color) (min-colors 16))
325 (:background "turquoise3"))
326 (((class color) (min-colors 8))
327 (:background "turquoise3"))
328 (t (:underline t)))
329 "Face for lazy highlighting of matches other than the current one."
92cc4a30
JL
330 :group 'lazy-highlight
331 :group 'basic-faces)
c4f6e489 332(define-obsolete-face-alias 'isearch-lazy-highlight-face 'lazy-highlight "22.1")
6480c508
JB
333(define-obsolete-variable-alias 'isearch-lazy-highlight-face
334 'lazy-highlight-face
335 "22.1")
af3ccb5c 336(defvar lazy-highlight-face 'lazy-highlight)
c1bc6bb6 337\f
b92368b4
JL
338;; Define isearch help map.
339
340(defvar isearch-help-map
4b65254d 341 (let ((map (make-sparse-keymap)))
b92368b4
JL
342 (define-key map [t] 'isearch-other-control-char)
343 (define-key map (char-to-string help-char) 'isearch-help-for-help)
344 (define-key map [help] 'isearch-help-for-help)
345 (define-key map [f1] 'isearch-help-for-help)
346 (define-key map "?" 'isearch-help-for-help)
347 (define-key map "b" 'isearch-describe-bindings)
348 (define-key map "k" 'isearch-describe-key)
349 (define-key map "m" 'isearch-describe-mode)
350 (define-key map "q" 'help-quit)
351 map)
4b65254d 352 "Keymap for characters following the Help key for Isearch mode.")
b92368b4
JL
353
354(eval-when-compile (require 'help-macro))
355
356(make-help-screen isearch-help-for-help-internal
ce9a0ccb 357 (purecopy "Type a help option: [bkm] or ?")
b92368b4
JL
358 "You have typed %THIS-KEY%, the help character. Type a Help option:
359\(Type \\<help-map>\\[help-quit] to exit the Help command.)
360
4b65254d
JB
361b Display all Isearch key bindings.
362k KEYS Display full documentation of Isearch key sequence.
363m Display documentation of Isearch mode.
b92368b4
JL
364
365You can't type here other help keys available in the global help map,
4b65254d
JB
366but outside of this help window when you type them in Isearch mode,
367they exit Isearch mode before displaying global help."
b92368b4
JL
368 isearch-help-map)
369
370(defun isearch-help-for-help ()
4b65254d 371 "Display Isearch help menu."
b92368b4
JL
372 (interactive)
373 (let (same-window-buffer-names same-window-regexps)
374 (isearch-help-for-help-internal))
375 (isearch-update))
376
377(defun isearch-describe-bindings ()
4b65254d
JB
378 "Show a list of all keys defined in Isearch mode, and their definitions.
379This is like `describe-bindings', but displays only Isearch keys."
b92368b4
JL
380 (interactive)
381 (let (same-window-buffer-names same-window-regexps)
382 (with-help-window "*Help*"
383 (with-current-buffer standard-output
384 (princ "Isearch Mode Bindings:\n")
385 (princ (substitute-command-keys "\\{isearch-mode-map}"))))))
386
387(defun isearch-describe-key ()
388 "Display documentation of the function invoked by isearch key."
389 (interactive)
390 (let (same-window-buffer-names same-window-regexps)
391 (call-interactively 'describe-key))
392 (isearch-update))
393
394(defun isearch-describe-mode ()
4b65254d 395 "Display documentation of Isearch mode."
b92368b4
JL
396 (interactive)
397 (let (same-window-buffer-names same-window-regexps)
398 (describe-function 'isearch-forward))
399 (isearch-update))
400
401(defalias 'isearch-mode-help 'isearch-describe-mode)
402
403\f
191f025a 404;; Define isearch-mode keymap.
8e1cae6d 405
02b2f510 406(defvar isearch-mode-map
4b65254d
JB
407 (let ((i 0)
408 (map (make-keymap)))
8f924df7 409 (or (char-table-p (nth 1 map))
02b2f510
SM
410 (error "The initialization of isearch-mode-map must be updated"))
411 ;; Make all multibyte characters search for themselves.
6b61353c 412 (set-char-table-range (nth 1 map) (cons #x100 (max-char))
5760cdc1 413 'isearch-printing-char)
6b61353c
KH
414 ;; Make function keys, etc, which aren't bound to a scrolling-function
415 ;; exit the search.
02b2f510 416 (define-key map [t] 'isearch-other-control-char)
02b2f510
SM
417
418 ;; Single-byte printing chars extend the search string by default.
6480c508 419 (setq i ?\s)
02b2f510
SM
420 (while (< i 256)
421 (define-key map (vector i) 'isearch-printing-char)
422 (setq i (1+ i)))
423
424 ;; To handle local bindings with meta char prefix keys, define
425 ;; another full keymap. This must be done for any other prefix
426 ;; keys as well, one full keymap per char of the prefix key. It
427 ;; would be simpler to disable the global keymap, and/or have a
428 ;; default local key binding for any key not otherwise bound.
429 (let ((meta-map (make-sparse-keymap)))
430 (define-key map (char-to-string meta-prefix-char) meta-map)
7c2dc8bd
SM
431 (define-key map [escape] meta-map)
432 (define-key meta-map [t] 'isearch-other-meta-char))
02b2f510
SM
433
434 ;; Several non-printing chars change the searching behavior.
435 (define-key map "\C-s" 'isearch-repeat-forward)
436 (define-key map "\C-r" 'isearch-repeat-backward)
437 ;; Define M-C-s and M-C-r like C-s and C-r so that the same key
438 ;; combinations can be used to repeat regexp isearches that can
439 ;; be used to start these searches.
440 (define-key map "\M-\C-s" 'isearch-repeat-forward)
441 (define-key map "\M-\C-r" 'isearch-repeat-backward)
442 (define-key map "\177" 'isearch-delete-char)
443 (define-key map "\C-g" 'isearch-abort)
1f4139d5 444
02b2f510
SM
445 ;; This assumes \e is the meta-prefix-char.
446 (or (= ?\e meta-prefix-char)
447 (error "Inconsistency in isearch.el"))
448 (define-key map "\e\e\e" 'isearch-cancel)
449 (define-key map [escape escape escape] 'isearch-cancel)
b48ca14f 450
02b2f510 451 (define-key map "\C-q" 'isearch-quote-char)
08200510 452
02b2f510
SM
453 (define-key map "\r" 'isearch-exit)
454 (define-key map "\C-j" 'isearch-printing-char)
455 (define-key map "\t" 'isearch-printing-char)
ec06d344 456 (define-key map [?\S-\ ] 'isearch-printing-char)
b48ca14f 457
74820eb5
JL
458 (define-key map "\C-w" 'isearch-yank-word-or-char)
459 (define-key map "\M-\C-w" 'isearch-del-char)
460 (define-key map "\M-\C-y" 'isearch-yank-char)
892777ba
CY
461 (define-key map "\C-y" 'isearch-yank-kill)
462 (define-key map "\M-s\C-e" 'isearch-yank-line)
08200510 463
50de6a38
JL
464 (define-key map (char-to-string help-char) isearch-help-map)
465 (define-key map [help] isearch-help-map)
466 (define-key map [f1] isearch-help-map)
08200510 467
02b2f510
SM
468 (define-key map "\M-n" 'isearch-ring-advance)
469 (define-key map "\M-p" 'isearch-ring-retreat)
25666126 470 (define-key map "\M-y" 'isearch-yank-pop)
02b2f510
SM
471
472 (define-key map "\M-\t" 'isearch-complete)
473
474 ;; Pass frame events transparently so they won't exit the search.
475 ;; In particular, if we have more than one display open, then a
476 ;; switch-frame might be generated by someone typing at another keyboard.
477 (define-key map [switch-frame] nil)
478 (define-key map [delete-frame] nil)
479 (define-key map [iconify-frame] nil)
480 (define-key map [make-frame-visible] nil)
3f482bc0 481 (define-key map [mouse-movement] nil)
76197e28
JR
482 (define-key map [language-change] nil)
483
02b2f510
SM
484 ;; For searching multilingual text.
485 (define-key map "\C-\\" 'isearch-toggle-input-method)
486 (define-key map "\C-^" 'isearch-toggle-specified-input-method)
487
488 ;; People expect to be able to paste with the mouse.
e4af1426 489 (define-key map [mouse-2] #'isearch-mouse-2)
02b2f510
SM
490 (define-key map [down-mouse-2] nil)
491
492 ;; Some bindings you may want to put in your isearch-mode-hook.
493 ;; Suggest some alternates...
494 (define-key map "\M-c" 'isearch-toggle-case-fold)
495 (define-key map "\M-r" 'isearch-toggle-regexp)
496 (define-key map "\M-e" 'isearch-edit-string)
497
b9cb2387 498 (define-key map "\M-sc" 'isearch-toggle-case-fold)
70bc5268
JL
499 (define-key map "\M-sr" 'isearch-toggle-regexp)
500 (define-key map "\M-sw" 'isearch-toggle-word)
b9cb2387 501 (define-key map "\M-s_" 'isearch-toggle-symbol)
70bc5268 502
81e898ea
SM
503 (define-key map [?\M-%] 'isearch-query-replace)
504 (define-key map [?\C-\M-%] 'isearch-query-replace-regexp)
6e3057bb 505 (define-key map "\M-so" 'isearch-occur)
11c9f489 506 (define-key map "\M-shr" 'isearch-highlight-regexp)
74820eb5 507
439f7677
CY
508 ;; The key translations defined in the C-x 8 prefix should insert
509 ;; characters into the search string. See iso-transl.el.
510 (define-key map "\C-x" nil)
511 (define-key map [?\C-x t] 'isearch-other-control-char)
512 (define-key map "\C-x8" nil)
513 (define-key map "\C-x8\r" 'isearch-other-control-char)
514
02b2f510
SM
515 map)
516 "Keymap for `isearch-mode'.")
517
518(defvar minibuffer-local-isearch-map
519 (let ((map (make-sparse-keymap)))
520 (set-keymap-parent map minibuffer-local-map)
74820eb5 521 (define-key map "\r" 'isearch-nonincremental-exit-minibuffer)
02b2f510 522 (define-key map "\M-\t" 'isearch-complete-edit)
74820eb5
JL
523 (define-key map "\C-s" 'isearch-forward-exit-minibuffer)
524 (define-key map "\C-r" 'isearch-reverse-exit-minibuffer)
525 (define-key map "\C-f" 'isearch-yank-char-in-minibuffer)
526 (define-key map [right] 'isearch-yank-char-in-minibuffer)
02b2f510 527 map)
4b65254d 528 "Keymap for editing Isearch strings in the minibuffer.")
8e1cae6d 529
8e1cae6d 530;; Internal variables declared globally for byte-compiler.
08200510
RS
531;; These are all set with setq while isearching
532;; and bound locally while editing the search string.
533
534(defvar isearch-forward nil) ; Searching in the forward direction.
535(defvar isearch-regexp nil) ; Searching for a regexp.
d5e61c1c 536(defvar isearch-word nil
b9cb2387 537 "Regexp-based search mode for words/symbols.
d5e61c1c 538If t, do incremental search for a sequence of words, ignoring punctuation.
b9cb2387
JL
539If the value is a function (e.g. `isearch-symbol-regexp'), it is called to
540convert the search string to a regexp used by regexp search functions.
541The property `isearch-message-prefix' put on this function specifies the
48d1354e 542prefix string displayed in the search message.")
08200510 543
191f025a
SM
544(defvar isearch-cmds nil
545 "Stack of search status sets.
08e3de69
EZ
546Each set is a vector of the form:
547 [STRING MESSAGE POINT SUCCESS FORWARD OTHER-END WORD
548 INVALID-REGEXP WRAPPED BARRIER WITHIN-BRACKETS CASE-FOLD-SEARCH]")
191f025a 549
08200510
RS
550(defvar isearch-string "") ; The current search string.
551(defvar isearch-message "") ; text-char-description version of isearch-string
552
c7015153
JB
553(defvar isearch-message-prefix-add nil) ; Additional text for the message prefix
554(defvar isearch-message-suffix-add nil) ; Additional text for the message suffix
ee9b85a8 555
ba653a53
JL
556(defvar isearch-success t) ; Searching is currently successful.
557(defvar isearch-error nil) ; Error message for failed search.
08200510
RS
558(defvar isearch-other-end nil) ; Start (end) of match if forward (backward).
559(defvar isearch-wrapped nil) ; Searching restarted from the top (bottom).
478615cc
LMI
560(defvar isearch-barrier 0
561 "Recorded minimum/maximal point for the current search.")
99ae9e9f 562(defvar isearch-just-started nil)
ddbe3d5f 563(defvar isearch-start-hscroll 0) ; hscroll when starting the search.
8e1cae6d 564
00c42405
SM
565;; case-fold-search while searching.
566;; either nil, t, or 'yes. 'yes means the same as t except that mixed
567;; case in the search string is ignored.
4453091d 568(defvar isearch-case-fold-search nil)
8e1cae6d 569
67085aba
GM
570(defvar isearch-last-case-fold-search nil)
571
ae1a21c6
MB
572;; Used to save default value while isearch is active
573(defvar isearch-original-minibuffer-message-timeout nil)
574
8e1cae6d
JB
575(defvar isearch-adjusted nil)
576(defvar isearch-slow-terminal-mode nil)
191f025a 577;; If t, using a small window.
08200510 578(defvar isearch-small-window nil)
8e1cae6d 579(defvar isearch-opoint 0)
191f025a 580;; The window configuration active at the beginning of the search.
08200510 581(defvar isearch-window-configuration nil)
8e1cae6d 582
08200510
RS
583;; Flag to indicate a yank occurred, so don't move the cursor.
584(defvar isearch-yank-flag nil)
8e1cae6d 585
191f025a
SM
586;; A function to be called after each input character is processed.
587;; (It is not called after characters that exit the search.)
588;; It is only set from an optional argument to `isearch-mode'.
08200510 589(defvar isearch-op-fun nil)
8e1cae6d 590
191f025a 591;; Is isearch-mode in a recursive edit for modal searching.
08200510 592(defvar isearch-recursive-edit nil)
8e1cae6d 593
191f025a 594;; Should isearch be terminated after doing one search?
08200510
RS
595(defvar isearch-nonincremental nil)
596
597;; New value of isearch-forward after isearch-edit-string.
598(defvar isearch-new-forward nil)
8e1cae6d 599
0352b205
RS
600;; Accumulate here the overlays opened during searching.
601(defvar isearch-opened-overlays nil)
8e1cae6d 602
d5e61c1c
JL
603;; Non-nil if the string exists but is invisible.
604(defvar isearch-hidden nil)
605
99848db0
KH
606;; The value of input-method-function when isearch is invoked.
607(defvar isearch-input-method-function nil)
608
609;; A flag to tell if input-method-function is locally bound when
610;; isearch is invoked.
611(defvar isearch-input-method-local-p nil)
612
8e1cae6d
JB
613;; Minor-mode-alist changes - kind of redundant with the
614;; echo area, but if isearching in multiple windows, it can be useful.
615
616(or (assq 'isearch-mode minor-mode-alist)
617 (nconc minor-mode-alist
618 (list '(isearch-mode isearch-mode))))
619
08200510 620(defvar isearch-mode nil) ;; Name of the minor mode, if non-nil.
8e1cae6d
JB
621(make-variable-buffer-local 'isearch-mode)
622
fdf5afa4
RS
623(define-key global-map "\C-s" 'isearch-forward)
624(define-key esc-map "\C-s" 'isearch-forward-regexp)
625(define-key global-map "\C-r" 'isearch-backward)
626(define-key esc-map "\C-r" 'isearch-backward-regexp)
70bc5268 627(define-key search-map "w" 'isearch-forward-word)
b9cb2387 628(define-key search-map "_" 'isearch-forward-symbol)
fdf5afa4 629
191f025a 630;; Entry points to isearch-mode.
8e1cae6d 631
eceee2c0 632(defun isearch-forward (&optional regexp-p no-recursive-edit)
8e1cae6d
JB
633 "\
634Do incremental search forward.
08200510
RS
635With a prefix argument, do an incremental regular expression search instead.
636\\<isearch-mode-map>
8e1cae6d 637As you type characters, they add to the search string and are found.
b48ca14f 638The following non-printing keys are bound in `isearch-mode-map'.
8e1cae6d 639
35904fd3 640Type \\[isearch-delete-char] to cancel last input item from end of search string.
8e1cae6d 641Type \\[isearch-exit] to exit, leaving point at location found.
08200510
RS
642Type LFD (C-j) to match end of line.
643Type \\[isearch-repeat-forward] to search again forward,\
644 \\[isearch-repeat-backward] to search again backward.
0ae85960
RS
645Type \\[isearch-yank-word-or-char] to yank next word or character in buffer
646 onto the end of the search string, and search for it.
74820eb5
JL
647Type \\[isearch-del-char] to delete character from end of search string.
648Type \\[isearch-yank-char] to yank char from buffer onto end of search\
08200510
RS
649 string and search for it.
650Type \\[isearch-yank-line] to yank rest of line onto end of search string\
651 and search for it.
75a07f2c 652Type \\[isearch-yank-kill] to yank the last string of killed text.
25666126
LL
653Type \\[isearch-yank-pop] to replace string just yanked into search prompt
654 with string killed before it.
8e1cae6d 655Type \\[isearch-quote-char] to quote control character to search for it.
08200510
RS
656\\[isearch-abort] while searching or when search has failed cancels input\
657 back to what has
658 been found successfully.
659\\[isearch-abort] when search is successful aborts and moves point to\
660 starting point.
8e1cae6d 661
b3612973
RS
662If you try to exit with the search string still empty, it invokes
663 nonincremental search.
664
6c551d4e
EZ
665Type \\[isearch-toggle-case-fold] to toggle search case-sensitivity.
666Type \\[isearch-toggle-regexp] to toggle regular-expression mode.
70bc5268 667Type \\[isearch-toggle-word] to toggle word mode.
b9cb2387 668Type \\[isearch-toggle-symbol] to toggle symbol mode.
6c551d4e
EZ
669Type \\[isearch-edit-string] to edit the search string in the minibuffer.
670
8e1cae6d
JB
671Also supported is a search ring of the previous 16 search strings.
672Type \\[isearch-ring-advance] to search for the next item in the search ring.
08200510
RS
673Type \\[isearch-ring-retreat] to search for the previous item in the search\
674 ring.
675Type \\[isearch-complete] to complete the search string using the search ring.
8e1cae6d 676
70bc5268
JL
677Type \\[isearch-query-replace] to run `query-replace' with string to\
678 replace from last search string.
679Type \\[isearch-query-replace-regexp] to run `query-replace-regexp'\
680 with the last search string.
681Type \\[isearch-occur] to run `occur' that shows\
682 the last search string.
683Type \\[isearch-highlight-regexp] to run `highlight-regexp'\
684 that highlights the last search string.
685
4b65254d
JB
686Type \\[isearch-describe-bindings] to display all Isearch key bindings.
687Type \\[isearch-describe-key] to display documentation of Isearch key.
688Type \\[isearch-describe-mode] to display documentation of Isearch mode.
b92368b4 689
1e14b095 690If an input method is turned on in the current buffer, that input
4b65254d
JB
691method is also active while you are typing characters to search.
692To toggle the input method, type \\[isearch-toggle-input-method]. \
693It also toggles the input
694method in the current buffer.
37b20c9b 695
4b65254d
JB
696To use a different input method for searching, type \
697\\[isearch-toggle-specified-input-method],
698and specify an input method you want to use.
37b20c9b 699
b48ca14f 700The above keys, bound in `isearch-mode-map', are often controlled by
35904fd3 701 options; do \\[apropos] on search-.* to find them.
8e1cae6d 702Other control and meta characters terminate the search
08200510 703 and are then executed normally (depending on `search-exit-option').
fd49e05c 704Likewise for function keys and mouse button events.
8e1cae6d 705
08200510
RS
706If this function is called non-interactively, it does not return to
707the calling function until the search is done."
8e1cae6d 708
eceee2c0 709 (interactive "P\np")
4ae7d00a 710 (isearch-mode t (not (null regexp-p)) nil (not no-recursive-edit)))
8e1cae6d 711
eceee2c0 712(defun isearch-forward-regexp (&optional not-regexp no-recursive-edit)
8e1cae6d
JB
713 "\
714Do incremental search forward for regular expression.
08200510 715With a prefix argument, do a regular string search instead.
8938c0bc
JL
716Like ordinary incremental search except that your input is treated
717as a regexp. See the command `isearch-forward' for more information.
ab67e8b6
RS
718
719In regexp incremental searches, a space or spaces normally matches
720any whitespace (the variable `search-whitespace-regexp' controls
721precisely what that means). If you want to search for a literal space
1b1fb2ef 722and nothing else, enter C-q SPC."
eceee2c0 723 (interactive "P\np")
4ae7d00a 724 (isearch-mode t (null not-regexp) nil (not no-recursive-edit)))
8e1cae6d 725
70bc5268
JL
726(defun isearch-forward-word (&optional not-word no-recursive-edit)
727 "\
728Do incremental search forward for a sequence of words.
729With a prefix argument, do a regular string search instead.
8938c0bc
JL
730Like ordinary incremental search except that your input is treated
731as a sequence of words without regard to how the words are separated.
732See the command `isearch-forward' for more information."
70bc5268
JL
733 (interactive "P\np")
734 (isearch-mode t nil nil (not no-recursive-edit) (null not-word)))
735
b9cb2387
JL
736(defun isearch-forward-symbol (&optional not-symbol no-recursive-edit)
737 "\
738Do incremental search forward for a symbol.
739The prefix argument is currently unused.
740Like ordinary incremental search except that your input is treated
741as a symbol surrounded by symbol boundary constructs \\_< and \\_>.
742See the command `isearch-forward' for more information."
743 (interactive "P\np")
744 (isearch-mode t nil nil (not no-recursive-edit) 'isearch-symbol-regexp))
745
eceee2c0 746(defun isearch-backward (&optional regexp-p no-recursive-edit)
8e1cae6d
JB
747 "\
748Do incremental search backward.
08200510 749With a prefix argument, do a regular expression search instead.
8938c0bc 750See the command `isearch-forward' for more information."
eceee2c0 751 (interactive "P\np")
4ae7d00a 752 (isearch-mode nil (not (null regexp-p)) nil (not no-recursive-edit)))
8e1cae6d 753
eceee2c0 754(defun isearch-backward-regexp (&optional not-regexp no-recursive-edit)
8e1cae6d
JB
755 "\
756Do incremental search backward for regular expression.
08200510 757With a prefix argument, do a regular string search instead.
8938c0bc
JL
758Like ordinary incremental search except that your input is treated
759as a regexp. See the command `isearch-forward' for more information."
eceee2c0 760 (interactive "P\np")
4ae7d00a 761 (isearch-mode nil (null not-regexp) nil (not no-recursive-edit)))
08200510 762
8e1cae6d 763\f
8e1cae6d
JB
764;; isearch-mode only sets up incremental search for the minor mode.
765;; All the work is done by the isearch-mode commands.
766
08200510 767;; Not used yet:
d7fa5aa2 768;;(defvar isearch-commands '(isearch-forward isearch-backward
08200510
RS
769;; isearch-forward-regexp isearch-backward-regexp)
770;; "List of commands for which isearch-mode does not recursive-edit.")
b48ca14f 771
08200510 772
d5e61c1c 773(defun isearch-mode (forward &optional regexp op-fun recursive-edit word)
4b65254d 774 "Start Isearch minor mode.
b92368b4 775It is called by the function `isearch-forward' and other related functions."
8e1cae6d
JB
776
777 ;; Initialize global vars.
778 (setq isearch-forward forward
779 isearch-regexp regexp
d5e61c1c 780 isearch-word word
8e1cae6d 781 isearch-op-fun op-fun
67085aba 782 isearch-last-case-fold-search isearch-case-fold-search
8e1cae6d
JB
783 isearch-case-fold-search case-fold-search
784 isearch-string ""
785 isearch-message ""
786 isearch-cmds nil
787 isearch-success t
788 isearch-wrapped nil
789 isearch-barrier (point)
790 isearch-adjusted nil
791 isearch-yank-flag nil
ba653a53 792 isearch-error nil
0cabad13 793 isearch-slow-terminal-mode (and (<= baud-rate search-slow-speed)
8e1cae6d 794 (> (window-height)
fad241d3
RS
795 (* 4
796 (abs search-slow-window-lines))))
8e1cae6d
JB
797 isearch-other-end nil
798 isearch-small-window nil
99ae9e9f 799 isearch-just-started t
ddbe3d5f 800 isearch-start-hscroll (window-hscroll)
8e1cae6d 801
8e1cae6d 802 isearch-opoint (point)
a5dcf63f 803 search-ring-yank-pointer nil
0352b205 804 isearch-opened-overlays nil
99848db0
KH
805 isearch-input-method-function input-method-function
806 isearch-input-method-local-p (local-variable-p 'input-method-function)
ae1a21c6
MB
807 regexp-search-ring-yank-pointer nil
808
809 ;; Save the original value of `minibuffer-message-timeout', and
810 ;; set it to nil so that isearch's messages don't get timed out.
811 isearch-original-minibuffer-message-timeout minibuffer-message-timeout
812 minibuffer-message-timeout nil)
99848db0
KH
813
814 ;; We must bypass input method while reading key. When a user type
815 ;; printable character, appropriate input method is turned on in
380866a2 816 ;; minibuffer to read multibyte characters.
99848db0
KH
817 (or isearch-input-method-local-p
818 (make-local-variable 'input-method-function))
819 (setq input-method-function nil)
820
99ae9e9f 821 (looking-at "")
292a8dff
RS
822 (setq isearch-window-configuration
823 (if isearch-slow-terminal-mode (current-window-configuration) nil))
70418205 824
18ce7555
RS
825 ;; Maybe make minibuffer frame visible and/or raise it.
826 (let ((frame (window-frame (minibuffer-window))))
360e0dd5
RS
827 (unless (memq (frame-live-p frame) '(nil t))
828 (unless (frame-visible-p frame)
829 (make-frame-visible frame))
830 (if minibuffer-auto-raise
831 (raise-frame frame))))
18ce7555 832
8e1cae6d 833 (setq isearch-mode " Isearch") ;; forward? regexp?
1cd3732c 834 (force-mode-line-update)
8e1cae6d 835
c7955222 836 (setq overriding-terminal-local-map isearch-mode-map)
8e1cae6d 837 (run-hooks 'isearch-mode-hook)
40637410
JL
838
839 ;; Pushing the initial state used to be before running isearch-mode-hook,
840 ;; but a hook might set `isearch-push-state-function' used in
841 ;; `isearch-push-state' to save mode-specific initial state. (Bug#4994)
842 (isearch-push-state)
843
5ce25ae7 844 (isearch-update)
08200510 845
bfe2d334 846 (add-hook 'mouse-leave-buffer-hook 'isearch-done)
7e56ea04 847 (add-hook 'kbd-macro-termination-hook 'isearch-done)
6e5cd0ae 848
b48ca14f
JB
849 ;; isearch-mode can be made modal (in the sense of not returning to
850 ;; the calling function until searching is completed) by entering
08200510 851 ;; a recursive-edit and exiting it when done isearching.
130bf67c
RS
852 (if recursive-edit
853 (let ((isearch-recursive-edit t))
854 (recursive-edit)))
0daa17f3 855 isearch-success)
8e1cae6d
JB
856
857
8e1cae6d
JB
858;; Some high level utilities. Others below.
859
860(defun isearch-update ()
987a0a16
GM
861 "This is called after every isearch command to update the display.
862The last thing it does is to run `isearch-update-post-hook'."
4c01d4bd
RS
863 (if (and (null unread-command-events)
864 (null executing-kbd-macro))
8e1cae6d 865 (progn
c982ab21 866 (if (not (input-pending-p))
ac475d3a
JL
867 (if isearch-message-function
868 (funcall isearch-message-function)
869 (isearch-message)))
c982ab21 870 (if (and isearch-slow-terminal-mode
b48ca14f 871 (not (or isearch-small-window
c982ab21
GM
872 (pos-visible-in-window-p))))
873 (let ((found-point (point)))
874 (setq isearch-small-window t)
875 (move-to-window-line 0)
876 (let ((window-min-height 1))
877 (split-window nil (if (< search-slow-window-lines 0)
878 (1+ (- search-slow-window-lines))
879 (- (window-height)
880 (1+ search-slow-window-lines)))))
881 (if (< search-slow-window-lines 0)
882 (progn (vertical-motion (- 1 search-slow-window-lines))
883 (set-window-start (next-window) (point))
884 (set-window-hscroll (next-window)
885 (window-hscroll))
886 (set-window-hscroll (selected-window) 0))
887 (other-window 1))
ddbe3d5f
RS
888 (goto-char found-point))
889 ;; Keep same hscrolling as at the start of the search when possible
890 (let ((current-scroll (window-hscroll)))
891 (set-window-hscroll (selected-window) isearch-start-hscroll)
892 (unless (pos-visible-in-window-p)
893 (set-window-hscroll (selected-window) current-scroll))))
894 (if isearch-other-end
c982ab21
GM
895 (if (< isearch-other-end (point)) ; isearch-forward?
896 (isearch-highlight isearch-other-end (point))
897 (isearch-highlight (point) isearch-other-end))
4dbbcb46 898 (isearch-dehighlight))
c982ab21 899 ))
8e1cae6d
JB
900 (setq ;; quit-flag nil not for isearch-mode
901 isearch-adjusted nil
902 isearch-yank-flag nil)
f9114cec 903 (when isearch-lazy-highlight
d9dd1f33 904 (isearch-lazy-highlight-new-loop))
a5cc922e
KH
905 ;; We must prevent the point moving to the end of composition when a
906 ;; part of the composition has just been searched.
a6020335
MH
907 (setq disable-point-adjustment t)
908 (run-hooks 'isearch-update-post-hook))
8e1cae6d 909
0daa17f3 910(defun isearch-done (&optional nopush edit)
87e97673
RS
911 "Exit Isearch mode.
912For successful search, pass no args.
913For a failing search, NOPUSH is t.
914For going to the minibuffer to edit the search string,
915NOPUSH is t and EDIT is t."
916
00098b01 917 (if isearch-resume-in-command-history
6848c9f1
KS
918 (let ((command `(isearch-resume ,isearch-string ,isearch-regexp
919 ,isearch-word ,isearch-forward
920 ,isearch-message
921 ',isearch-case-fold-search)))
922 (unless (equal (car command-history) command)
923 (setq command-history (cons command command-history)))))
c40a4de1 924
bfe2d334 925 (remove-hook 'mouse-leave-buffer-hook 'isearch-done)
7e56ea04 926 (remove-hook 'kbd-macro-termination-hook 'isearch-done)
d196f58d
GM
927 (setq isearch-lazy-highlight-start nil)
928
8e1cae6d 929 ;; Called by all commands that terminate isearch-mode.
35a4d143 930 ;; If NOPUSH is non-nil, we don't push the string on the search ring.
c7955222 931 (setq overriding-terminal-local-map nil)
08200510 932 ;; (setq pre-command-hook isearch-old-pre-command-hook) ; for lemacs
ae1a21c6 933 (setq minibuffer-message-timeout isearch-original-minibuffer-message-timeout)
4dbbcb46 934 (isearch-dehighlight)
46fe9018 935 (lazy-highlight-cleanup lazy-highlight-cleanup)
08200510
RS
936 (let ((found-start (window-start (selected-window)))
937 (found-point (point)))
d8a4fc44
RS
938 (when isearch-window-configuration
939 (set-window-configuration isearch-window-configuration)
940 (if isearch-small-window
941 (goto-char found-point)
942 ;; set-window-configuration clobbers window-start; restore it.
943 ;; This has an annoying side effect of clearing the last_modiff
944 ;; field of the window, which can cause unwanted scrolling,
945 ;; so don't do it unless truly necessary.
946 (set-window-start (selected-window) found-start t))))
08200510
RS
947
948 (setq isearch-mode nil)
99848db0
KH
949 (if isearch-input-method-local-p
950 (setq input-method-function isearch-input-method-function)
951 (kill-local-variable 'input-method-function))
952
1cd3732c 953 (force-mode-line-update)
8e1cae6d 954
df01192b
RS
955 ;; If we ended in the middle of some intangible text,
956 ;; move to the further end of that intangible text.
957 (let ((after (if (eobp) nil
958 (get-text-property (point) 'intangible)))
959 (before (if (bobp) nil
960 (get-text-property (1- (point)) 'intangible))))
961 (when (and before after (eq before after))
7c2dc8bd
SM
962 (goto-char
963 (if isearch-forward
964 (next-single-property-change (point) 'intangible)
965 (previous-single-property-change (point) 'intangible)))))
df01192b 966
35a4d143 967 (if (and (> (length isearch-string) 0) (not nopush))
8e1cae6d 968 ;; Update the ring data.
73d2bf95 969 (isearch-update-ring isearch-string isearch-regexp))
8e1cae6d 970
87e97673
RS
971 (let ((isearch-mode-end-hook-quit (and nopush (not edit))))
972 (run-hooks 'isearch-mode-end-hook))
071fdd66
JL
973
974 ;; If there was movement, mark the starting position.
4837b516 975 ;; Maybe should test difference between and set mark only if > threshold.
071fdd66
JL
976 (if (/= (point) isearch-opoint)
977 (or (and transient-mark-mode mark-active)
978 (progn
979 (push-mark isearch-opoint t)
9a45d6c3 980 (or executing-kbd-macro (> (minibuffer-depth) 0) edit
071fdd66
JL
981 (message "Mark saved where search started")))))
982
0daa17f3 983 (and (not edit) isearch-recursive-edit (exit-recursive-edit)))
08200510 984
73d2bf95
RS
985(defun isearch-update-ring (string &optional regexp)
986 "Add STRING to the beginning of the search ring.
a2b7dcc7 987REGEXP if non-nil says use the regexp search ring."
77e5aef9
KS
988 (add-to-history
989 (if regexp 'regexp-search-ring 'search-ring)
990 string
991 (if regexp regexp-search-ring-max search-ring-max)))
73d2bf95 992
191f025a
SM
993;; Switching buffers should first terminate isearch-mode.
994;; ;; For Emacs 19, the frame switch event is handled.
995;; (defun isearch-switch-frame-handler ()
996;; (interactive) ;; Is this necessary?
997;; ;; First terminate isearch-mode.
998;; (isearch-done)
999;; (isearch-clean-overlays)
8989a920 1000;; (handle-switch-frame (car (cdr last-command-event))))
08200510 1001
8e1cae6d 1002\f
08e3de69
EZ
1003;; The search status structure and stack.
1004
7c2dc8bd
SM
1005(cl-defstruct (isearch--state
1006 (:constructor nil)
1007 (:copier nil)
1008 (:constructor isearch--get-state
1009 (&aux
1010 (string isearch-string)
1011 (message isearch-message)
1012 (point (point))
1013 (success isearch-success)
1014 (forward isearch-forward)
1015 (other-end isearch-other-end)
1016 (word isearch-word)
1017 (error isearch-error)
1018 (wrapped isearch-wrapped)
1019 (barrier isearch-barrier)
1020 (case-fold-search isearch-case-fold-search)
1021 (pop-fun (if isearch-push-state-function
1022 (funcall isearch-push-state-function))))))
1023 (string :read-only t)
1024 (message :read-only t)
1025 (point :read-only t)
1026 (success :read-only t)
1027 (forward :read-only t)
1028 (other-end :read-only t)
1029 (word :read-only t)
1030 (error :read-only t)
1031 (wrapped :read-only t)
1032 (barrier :read-only t)
1033 (case-fold-search :read-only t)
1034 (pop-fun :read-only t))
1035
1036(defun isearch--set-state (cmd)
1037 (setq isearch-string (isearch--state-string cmd)
1038 isearch-message (isearch--state-message cmd)
1039 isearch-success (isearch--state-success cmd)
1040 isearch-forward (isearch--state-forward cmd)
1041 isearch-other-end (isearch--state-other-end cmd)
1042 isearch-word (isearch--state-word cmd)
1043 isearch-error (isearch--state-error cmd)
1044 isearch-wrapped (isearch--state-wrapped cmd)
1045 isearch-barrier (isearch--state-barrier cmd)
1046 isearch-case-fold-search (isearch--state-case-fold-search cmd))
1047 (if (functionp (isearch--state-pop-fun cmd))
1048 (funcall (isearch--state-pop-fun cmd) cmd))
1049 (goto-char (isearch--state-point cmd)))
08e3de69
EZ
1050
1051(defun isearch-pop-state ()
1052 (setq isearch-cmds (cdr isearch-cmds))
7c2dc8bd 1053 (isearch--set-state (car isearch-cmds)))
08e3de69
EZ
1054
1055(defun isearch-push-state ()
7c2dc8bd 1056 (push (isearch--get-state) isearch-cmds))
08e3de69
EZ
1057
1058\f
8e1cae6d
JB
1059;; Commands active while inside of the isearch minor mode.
1060
1061(defun isearch-exit ()
1062 "Exit search normally.
1063However, if this is the first command after starting incremental
1064search and `search-nonincremental-instead' is non-nil, do a
08200510 1065nonincremental search instead via `isearch-edit-string'."
8e1cae6d 1066 (interactive)
b48ca14f 1067 (if (and search-nonincremental-instead
8e1cae6d 1068 (= 0 (length isearch-string)))
08200510
RS
1069 (let ((isearch-nonincremental t))
1070 (isearch-edit-string)))
0352b205
RS
1071 (isearch-done)
1072 (isearch-clean-overlays))
8e1cae6d 1073
06b60517 1074(defvar minibuffer-history-symbol) ;; from external package gmhist.el
8e1cae6d 1075
72779976
JL
1076(defun isearch-fail-pos (&optional msg)
1077 "Return position of first mismatch in search string, or nil if none.
1078If MSG is non-nil, use `isearch-message', otherwise `isearch-string'."
1079 (let ((cmds isearch-cmds)
1080 (curr-msg (if msg isearch-message isearch-string))
1081 succ-msg)
1082 (when (or (not isearch-success) isearch-error)
7c2dc8bd
SM
1083 (while (or (not (isearch--state-success (car cmds)))
1084 (isearch--state-error (car cmds)))
b74aa22b 1085 (pop cmds))
7c2dc8bd
SM
1086 (setq succ-msg (and cmds (if msg (isearch--state-message (car cmds))
1087 (isearch--state-string (car cmds)))))
72779976
JL
1088 (if (and (stringp succ-msg)
1089 (< (length succ-msg) (length curr-msg))
1090 (equal succ-msg
1091 (substring curr-msg 0 (length succ-msg))))
1092 (length succ-msg)
1093 0))))
b74aa22b 1094
8e1cae6d 1095(defun isearch-edit-string ()
08200510
RS
1096 "Edit the search string in the minibuffer.
1097The following additional command keys are active while editing.
1098\\<minibuffer-local-isearch-map>
1099\\[exit-minibuffer] to resume incremental searching with the edited string.
1100\\[isearch-nonincremental-exit-minibuffer] to do one nonincremental search.
1101\\[isearch-forward-exit-minibuffer] to resume isearching forward.
8eb40e74 1102\\[isearch-reverse-exit-minibuffer] to resume isearching backward.
25173000 1103\\[isearch-complete-edit] to complete the search string using the search ring."
08200510
RS
1104
1105 ;; This code is very hairy for several reasons, explained in the code.
1106 ;; Mainly, isearch-mode must be terminated while editing and then restarted.
1107 ;; If there were a way to catch any change of buffer from the minibuffer,
1108 ;; this could be simplified greatly.
eb8c3be9 1109 ;; Editing doesn't back up the search point. Should it?
8e1cae6d 1110 (interactive)
06b60517 1111 (condition-case nil
e900ced4
RS
1112 (progn
1113 (let ((isearch-nonincremental isearch-nonincremental)
1114
1115 ;; Locally bind all isearch global variables to protect them
1116 ;; from recursive isearching.
1117 ;; isearch-string -message and -forward are not bound
1118 ;; so they may be changed. Instead, save the values.
1119 (isearch-new-string isearch-string)
1120 (isearch-new-message isearch-message)
1121 (isearch-new-forward isearch-forward)
1122 (isearch-new-word isearch-word)
80302a81 1123 (isearch-new-case-fold isearch-case-fold-search)
e900ced4
RS
1124
1125 (isearch-regexp isearch-regexp)
1126 (isearch-op-fun isearch-op-fun)
1127 (isearch-cmds isearch-cmds)
1128 (isearch-success isearch-success)
1129 (isearch-wrapped isearch-wrapped)
1130 (isearch-barrier isearch-barrier)
1131 (isearch-adjusted isearch-adjusted)
1132 (isearch-yank-flag isearch-yank-flag)
ba653a53 1133 (isearch-error isearch-error)
e900ced4
RS
1134 ;;; Don't bind this. We want isearch-search, below, to set it.
1135 ;;; And the old value won't matter after that.
1136 ;;; (isearch-other-end isearch-other-end)
1137 ;;; Perhaps some of these other variables should be bound for a
1138 ;;; shorter period, ending before the next isearch-search.
1139 ;;; But there doesn't seem to be a real bug, so let's not risk it now.
1140 (isearch-opoint isearch-opoint)
1141 (isearch-slow-terminal-mode isearch-slow-terminal-mode)
1142 (isearch-small-window isearch-small-window)
1143 (isearch-recursive-edit isearch-recursive-edit)
1144 ;; Save current configuration so we can restore it here.
1145 (isearch-window-configuration (current-window-configuration))
ae1a21c6 1146
93eb7113
JL
1147 ;; This could protect the index of the search rings,
1148 ;; but we can't reliably count the number of typed M-p
1149 ;; in `read-from-minibuffer' to adjust the index accordingly.
1150 ;; So when the following is commented out, `isearch-mode'
1151 ;; below resets the index to the predictable value nil.
1152 ;; (search-ring-yank-pointer search-ring-yank-pointer)
1153 ;; (regexp-search-ring-yank-pointer regexp-search-ring-yank-pointer)
1154
ae1a21c6
MB
1155 ;; Temporarily restore `minibuffer-message-timeout'.
1156 (minibuffer-message-timeout
1157 isearch-original-minibuffer-message-timeout)
1158 (isearch-original-minibuffer-message-timeout
1159 isearch-original-minibuffer-message-timeout)
02b99a17 1160 old-point old-other-end)
e900ced4
RS
1161
1162 ;; Actually terminate isearching until editing is done.
b48ca14f 1163 ;; This is so that the user can do anything without failure,
e900ced4 1164 ;; like switch buffers and start another isearch, and return.
06b60517 1165 (condition-case nil
e900ced4
RS
1166 (isearch-done t t)
1167 (exit nil)) ; was recursive editing
1168
02b99a17
JL
1169 ;; Save old point and isearch-other-end before reading from minibuffer
1170 ;; that can change their values.
1171 (setq old-point (point) old-other-end isearch-other-end)
1172
e900ced4 1173 (unwind-protect
c16e87ee 1174 (let* ((message-log-max nil)
df754f66
JL
1175 ;; Don't add a new search string to the search ring here
1176 ;; in `read-from-minibuffer'. It should be added only
1177 ;; by `isearch-update-ring' called from `isearch-done'.
1178 (history-add-new-input nil)
e900ced4
RS
1179 ;; Binding minibuffer-history-symbol to nil is a work-around
1180 ;; for some incompatibility with gmhist.
c16e87ee 1181 (minibuffer-history-symbol))
e900ced4 1182 (setq isearch-new-string
e5feeb31 1183 (read-from-minibuffer
7c2dc8bd 1184 (isearch-message-prefix nil isearch-nonincremental)
72779976
JL
1185 (cons isearch-string (1+ (or (isearch-fail-pos)
1186 (length isearch-string))))
e5feeb31 1187 minibuffer-local-isearch-map nil
363de02e
JL
1188 (if isearch-regexp
1189 (cons 'regexp-search-ring
1190 (1+ (or regexp-search-ring-yank-pointer -1)))
1191 (cons 'search-ring
1192 (1+ (or search-ring-yank-pointer -1))))
e5feeb31 1193 nil t)
e900ced4
RS
1194 isearch-new-message
1195 (mapconcat 'isearch-text-char-description
1196 isearch-new-string "")))
02b99a17
JL
1197
1198 ;; Set point at the start (end) of old match if forward (backward),
1199 ;; so after exiting minibuffer isearch resumes at the start (end)
1200 ;; of this match and can find it again.
1201 (if (and old-other-end (eq old-point (point))
1202 (eq isearch-forward isearch-new-forward))
1203 (goto-char old-other-end))
1204
e900ced4 1205 ;; Always resume isearching by restarting it.
b48ca14f
JB
1206 (isearch-mode isearch-forward
1207 isearch-regexp
1208 isearch-op-fun
e900ced4
RS
1209 nil
1210 isearch-word)
1211
1212 ;; Copy new local values to isearch globals
1213 (setq isearch-string isearch-new-string
1214 isearch-message isearch-new-message
1215 isearch-forward isearch-new-forward
80302a81
JL
1216 isearch-word isearch-new-word
1217 isearch-case-fold-search isearch-new-case-fold))
e900ced4
RS
1218
1219 ;; Empty isearch-string means use default.
11dcdbb2
JL
1220 (when (= 0 (length isearch-string))
1221 (setq isearch-string (or (car (if isearch-regexp
1222 regexp-search-ring
1223 search-ring))
1224 "")
1225
1226 isearch-message
1227 (mapconcat 'isearch-text-char-description
1228 isearch-string ""))
1229 ;; After taking the last element, adjust ring to previous one.
1230 (isearch-ring-adjust1 nil)))
e900ced4 1231
a71a98cf
JL
1232 ;; This used to push the state as of before this C-s, but it adds
1233 ;; an inconsistent state where part of variables are from the
1234 ;; previous search (e.g. `isearch-success'), and part of variables
1235 ;; are just entered from the minibuffer (e.g. `isearch-string').
1236 ;; (isearch-push-state)
08200510
RS
1237
1238 ;; Reinvoke the pending search.
08200510 1239 (isearch-search)
a71a98cf 1240 (isearch-push-state) ; this pushes the correct state
08200510 1241 (isearch-update)
b48ca14f 1242 (if isearch-nonincremental
08200510
RS
1243 (progn
1244 ;; (sit-for 1) ;; needed if isearch-done does: (message "")
40c7f256
RS
1245 (isearch-done)
1246 ;; The search done message is confusing when the string
1247 ;; is empty, so erase it.
1248 (if (equal isearch-string "")
1249 (message "")))))
8e1cae6d 1250
08200510
RS
1251 (quit ; handle abort-recursive-edit
1252 (isearch-abort) ;; outside of let to restore outside global values
1253 )))
1254
1255(defun isearch-nonincremental-exit-minibuffer ()
1256 (interactive)
1257 (setq isearch-nonincremental t)
1258 (exit-minibuffer))
1259
1260(defun isearch-forward-exit-minibuffer ()
1261 (interactive)
1262 (setq isearch-new-forward t)
1263 (exit-minibuffer))
8e1cae6d 1264
08200510 1265(defun isearch-reverse-exit-minibuffer ()
8e1cae6d 1266 (interactive)
08200510
RS
1267 (setq isearch-new-forward nil)
1268 (exit-minibuffer))
1269
19993c54
RS
1270(defun isearch-cancel ()
1271 "Terminate the search and go back to the starting point."
1272 (interactive)
40637410
JL
1273 (if (and isearch-push-state-function isearch-cmds)
1274 ;; For defined push-state function, restore the first state.
1275 ;; This calls pop-state function and restores original point.
1276 (let ((isearch-cmds (last isearch-cmds)))
7c2dc8bd 1277 (isearch--set-state (car isearch-cmds)))
40637410 1278 (goto-char isearch-opoint))
7c2dc8bd 1279 (isearch-done t) ; Exit isearch..
0352b205 1280 (isearch-clean-overlays)
7c2dc8bd 1281 (signal 'quit nil)) ; ..and pass on quit signal.
08200510
RS
1282
1283(defun isearch-abort ()
b7852303 1284 "Abort incremental search mode if searching is successful, signaling quit.
08200510 1285Otherwise, revert to previous successful search and continue searching.
b7852303 1286Use `isearch-exit' to quit without signaling."
08200510 1287 (interactive)
7c2dc8bd 1288 ;; (ding) signal instead below, if quitting
8e1cae6d 1289 (discard-input)
d4119912
JL
1290 (if (and isearch-success (not isearch-error))
1291 ;; If search is successful and has no incomplete regexp,
1292 ;; move back to starting point and really do quit.
6a18e4e7
JL
1293 (progn
1294 (setq isearch-success nil)
1295 (isearch-cancel))
925a67ca
RS
1296 ;; If search is failing, or has an incomplete regexp,
1297 ;; rub out until it is once more successful.
ba653a53 1298 (while (or (not isearch-success) isearch-error)
925a67ca 1299 (isearch-pop-state))
8e1cae6d
JB
1300 (isearch-update)))
1301
8e1cae6d
JB
1302(defun isearch-repeat (direction)
1303 ;; Utility for isearch-repeat-forward and -backward.
1304 (if (eq isearch-forward (eq direction 'forward))
1305 ;; C-s in forward or C-r in reverse.
1306 (if (equal isearch-string "")
1307 ;; If search string is empty, use last one.
ece75c05
JL
1308 (if (null (if isearch-regexp regexp-search-ring search-ring))
1309 (setq isearch-error "No previous search string")
1310 (setq isearch-string
7c2dc8bd 1311 (car (if isearch-regexp regexp-search-ring search-ring))
ece75c05
JL
1312 isearch-message
1313 (mapconcat 'isearch-text-char-description
1314 isearch-string "")
11dcdbb2
JL
1315 isearch-case-fold-search isearch-last-case-fold-search)
1316 ;; After taking the last element, adjust ring to previous one.
1317 (isearch-ring-adjust1 nil))
8e1cae6d
JB
1318 ;; If already have what to search for, repeat it.
1319 (or isearch-success
02b2f510 1320 (progn
ba653a53
JL
1321 ;; Set isearch-wrapped before calling isearch-wrap-function
1322 (setq isearch-wrapped t)
6a18e4e7
JL
1323 (if isearch-wrap-function
1324 (funcall isearch-wrap-function)
ba653a53 1325 (goto-char (if isearch-forward (point-min) (point-max)))))))
8e1cae6d 1326 ;; C-s in reverse or C-r in forward, change direction.
f4c49513
RS
1327 (setq isearch-forward (not isearch-forward)
1328 isearch-success t))
8e1cae6d
JB
1329
1330 (setq isearch-barrier (point)) ; For subsequent \| if regexp.
6fefdc4b
RS
1331
1332 (if (equal isearch-string "")
1333 (setq isearch-success t)
512bfd85
RS
1334 (if (and isearch-success
1335 (equal (point) isearch-other-end)
99ae9e9f 1336 (not isearch-just-started))
8e1cae6d
JB
1337 ;; If repeating a search that found
1338 ;; an empty string, ensure we advance.
6fefdc4b
RS
1339 (if (if isearch-forward (eobp) (bobp))
1340 ;; If there's nowhere to advance to, fail (and wrap next time).
1341 (progn
1342 (setq isearch-success nil)
1343 (ding))
1344 (forward-char (if isearch-forward 1 -1))
1345 (isearch-search))
1346 (isearch-search)))
1347
8e1cae6d
JB
1348 (isearch-push-state)
1349 (isearch-update))
1350
1351(defun isearch-repeat-forward ()
1352 "Repeat incremental search forwards."
1353 (interactive)
1354 (isearch-repeat 'forward))
1355
1356(defun isearch-repeat-backward ()
1357 "Repeat incremental search backwards."
1358 (interactive)
1359 (isearch-repeat 'backward))
1360
1361(defun isearch-toggle-regexp ()
1362 "Toggle regexp searching on or off."
1363 ;; The status stack is left unchanged.
1364 (interactive)
1365 (setq isearch-regexp (not isearch-regexp))
08200510 1366 (if isearch-regexp (setq isearch-word nil))
d85519bb 1367 (setq isearch-success t isearch-adjusted t)
8e1cae6d
JB
1368 (isearch-update))
1369
70bc5268
JL
1370(defun isearch-toggle-word ()
1371 "Toggle word searching on or off."
7c2dc8bd 1372 ;; The status stack is left unchanged.
70bc5268
JL
1373 (interactive)
1374 (setq isearch-word (not isearch-word))
7c2dc8bd 1375 (if isearch-word (setq isearch-regexp nil))
70bc5268
JL
1376 (setq isearch-success t isearch-adjusted t)
1377 (isearch-update))
1378
b9cb2387
JL
1379(defun isearch-toggle-symbol ()
1380 "Toggle symbol searching on or off."
1381 (interactive)
1382 (setq isearch-word (unless (eq isearch-word 'isearch-symbol-regexp)
1383 'isearch-symbol-regexp))
1384 (setq isearch-success t isearch-adjusted t)
1385 (isearch-update))
1386
4453091d
RS
1387(defun isearch-toggle-case-fold ()
1388 "Toggle case folding in searching on or off."
1389 (interactive)
1390 (setq isearch-case-fold-search
1391 (if isearch-case-fold-search nil 'yes))
a56687f1
KH
1392 (let ((message-log-max nil))
1393 (message "%s%s [case %ssensitive]"
7c2dc8bd 1394 (isearch-message-prefix nil isearch-nonincremental)
a56687f1
KH
1395 isearch-message
1396 (if isearch-case-fold-search "in" "")))
d85519bb 1397 (setq isearch-success t isearch-adjusted t)
4453091d
RS
1398 (sit-for 1)
1399 (isearch-update))
1400
a0a79cde
JL
1401\f
1402;; Word search
1403
1404(defun word-search-regexp (string &optional lax)
1405 "Return a regexp which matches words, ignoring punctuation.
1406Given STRING, a string of words separated by word delimiters,
1407compute a regexp that matches those exact words separated by
1408arbitrary punctuation. If LAX is non-nil, the end of the string
1409need not match a word boundary unless it ends in whitespace.
1410
1411Used in `word-search-forward', `word-search-backward',
1412`word-search-forward-lax', `word-search-backward-lax'."
1413 (if (string-match-p "^\\W*$" string)
1414 ""
1415 (concat
1416 "\\b"
1417 (mapconcat 'identity (split-string string "\\W+" t) "\\W+")
1418 (if (or (not lax) (string-match-p "\\W$" string)) "\\b"))))
1419
1420(defun word-search-backward (string &optional bound noerror count)
1421 "Search backward from point for STRING, ignoring differences in punctuation.
1422Set point to the beginning of the occurrence found, and return point.
1423An optional second argument bounds the search; it is a buffer position.
1424The match found must not extend before that position.
1425Optional third argument, if t, means if fail just return nil (no error).
1426 If not nil and not t, move to limit of search and return nil.
1427Optional fourth argument is repeat count--search for successive occurrences.
1428
1429Relies on the function `word-search-regexp' to convert a sequence
1430of words in STRING to a regexp used to search words without regard
1431to punctuation."
1432 (interactive "sWord search backward: ")
1433 (re-search-backward (word-search-regexp string nil) bound noerror count))
1434
1435(defun word-search-forward (string &optional bound noerror count)
1436 "Search forward from point for STRING, ignoring differences in punctuation.
1437Set point to the end of the occurrence found, and return point.
1438An optional second argument bounds the search; it is a buffer position.
1439The match found must not extend after that position.
1440Optional third argument, if t, means if fail just return nil (no error).
1441 If not nil and not t, move to limit of search and return nil.
1442Optional fourth argument is repeat count--search for successive occurrences.
1443
1444Relies on the function `word-search-regexp' to convert a sequence
1445of words in STRING to a regexp used to search words without regard
1446to punctuation."
1447 (interactive "sWord search: ")
1448 (re-search-forward (word-search-regexp string nil) bound noerror count))
1449
1450(defun word-search-backward-lax (string &optional bound noerror count)
1451 "Search backward from point for STRING, ignoring differences in punctuation.
1452Set point to the beginning of the occurrence found, and return point.
1453
1454Unlike `word-search-backward', the end of STRING need not match a word
1455boundary, unless STRING ends in whitespace.
1456
1457An optional second argument bounds the search; it is a buffer position.
1458The match found must not extend before that position.
1459Optional third argument, if t, means if fail just return nil (no error).
1460 If not nil and not t, move to limit of search and return nil.
1461Optional fourth argument is repeat count--search for successive occurrences.
1462
1463Relies on the function `word-search-regexp' to convert a sequence
1464of words in STRING to a regexp used to search words without regard
1465to punctuation."
1466 (interactive "sWord search backward: ")
1467 (re-search-backward (word-search-regexp string t) bound noerror count))
1468
1469(defun word-search-forward-lax (string &optional bound noerror count)
1470 "Search forward from point for STRING, ignoring differences in punctuation.
1471Set point to the end of the occurrence found, and return point.
1472
1473Unlike `word-search-forward', the end of STRING need not match a word
1474boundary, unless STRING ends in whitespace.
1475
1476An optional second argument bounds the search; it is a buffer position.
1477The match found must not extend after that position.
1478Optional third argument, if t, means if fail just return nil (no error).
1479 If not nil and not t, move to limit of search and return nil.
1480Optional fourth argument is repeat count--search for successive occurrences.
1481
1482Relies on the function `word-search-regexp' to convert a sequence
1483of words in STRING to a regexp used to search words without regard
1484to punctuation."
1485 (interactive "sWord search: ")
1486 (re-search-forward (word-search-regexp string t) bound noerror count))
1487
b9cb2387
JL
1488;; Symbol search
1489
1490(defun isearch-symbol-regexp (string &optional lax)
1491 "Return a regexp which matches STRING as a symbol.
1492Creates a regexp where STRING is surrounded by symbol delimiters \\_< and \\_>.
1493If LAX is non-nil, the end of the string need not match a symbol boundary."
1494 (concat "\\_<" (regexp-quote string) (unless lax "\\_>")))
1495
1496(put 'isearch-symbol-regexp 'isearch-message-prefix "symbol ")
1497
a0a79cde 1498\f
9d14752f
JL
1499(defun isearch-query-replace (&optional delimited regexp-flag)
1500 "Start `query-replace' with string to replace from last search string.
1501The arg DELIMITED (prefix arg if interactive), if non-nil, means replace
1502only matches surrounded by word boundaries. Note that using the prefix arg
25173000
JL
1503is possible only when `isearch-allow-scroll' is non-nil, and it doesn't
1504always provide the correct matches for `query-replace', so the preferred
9d14752f
JL
1505way to run word replacements from Isearch is `M-s w ... M-%'."
1506 (interactive
1507 (list current-prefix-arg))
81e898ea 1508 (barf-if-buffer-read-only)
d85519bb 1509 (if regexp-flag (setq isearch-regexp t))
6e3057bb
JL
1510 (let ((case-fold-search isearch-case-fold-search)
1511 ;; set `search-upper-case' to nil to not call
1512 ;; `isearch-no-upper-case-p' in `perform-replace'
8d32ed64
JL
1513 (search-upper-case nil)
1514 ;; Set `isearch-recursive-edit' to nil to prevent calling
1515 ;; `exit-recursive-edit' in `isearch-done' that terminates
1516 ;; the execution of this command when it is non-nil.
1517 ;; We call `exit-recursive-edit' explicitly at the end below.
1518 (isearch-recursive-edit nil))
1519 (isearch-done nil t)
74820eb5 1520 (isearch-clean-overlays)
e7e4ea21
JL
1521 (if (and isearch-other-end
1522 (< isearch-other-end (point))
d85519bb 1523 (not (and transient-mark-mode mark-active
fa81f010 1524 (< (mark) (point)))))
d85519bb
JL
1525 (goto-char isearch-other-end))
1526 (set query-replace-from-history-variable
1527 (cons isearch-string
1528 (symbol-value query-replace-from-history-variable)))
81e898ea
SM
1529 (perform-replace
1530 isearch-string
d85519bb
JL
1531 (query-replace-read-to
1532 isearch-string
9d14752f
JL
1533 (concat "Query replace"
1534 (if (or delimited isearch-word) " word" "")
1535 (if isearch-regexp " regexp" "")
1536 (if (and transient-mark-mode mark-active) " in region" ""))
d85519bb 1537 isearch-regexp)
9d14752f 1538 t isearch-regexp (or delimited isearch-word) nil nil
d85519bb 1539 (if (and transient-mark-mode mark-active) (region-beginning))
8d32ed64
JL
1540 (if (and transient-mark-mode mark-active) (region-end))))
1541 (and isearch-recursive-edit (exit-recursive-edit)))
74820eb5 1542
9d14752f
JL
1543(defun isearch-query-replace-regexp (&optional delimited)
1544 "Start `query-replace-regexp' with string to replace from last search string.
1545See `isearch-query-replace' for more information."
1546 (interactive
1547 (list current-prefix-arg))
1548 (isearch-query-replace delimited t))
74820eb5 1549
6e3057bb 1550(defun isearch-occur (regexp &optional nlines)
0bd1e074
JL
1551 "Run `occur' using the last search string as the regexp.
1552Interactively, REGEXP is constructed using the search string from the
1553last search command. NLINES has the same meaning as in `occur'.
1554
1555If the last search command was a word search, REGEXP is computed from
1556the search words, ignoring punctuation. If the last search
1557command was a regular expression search, REGEXP is the regular
1558expression used in that search. If the last search command searched
1559for a literal string, REGEXP is constructed by quoting all the special
1560characters in that string."
6e3057bb 1561 (interactive
0bd1e074
JL
1562 (let* ((perform-collect (consp current-prefix-arg))
1563 (regexp (cond
d5e61c1c
JL
1564 ((functionp isearch-word)
1565 (funcall isearch-word isearch-string))
0bd1e074
JL
1566 (isearch-word (word-search-regexp isearch-string))
1567 (isearch-regexp isearch-string)
1568 (t (regexp-quote isearch-string)))))
1569 (list regexp
1570 (if perform-collect
1571 ;; Perform collect operation
1572 (if (zerop (regexp-opt-depth regexp))
1573 ;; No subexpression so collect the entire match.
1574 "\\&"
1575 ;; Get the regexp for collection pattern.
1576 (isearch-done nil t)
1577 (isearch-clean-overlays)
1578 (let ((default (car occur-collect-regexp-history)))
1579 (read-string
1580 (format "Regexp to collect (default %s): " default)
1581 nil 'occur-collect-regexp-history default)))
1582 ;; Otherwise normal occur takes numerical prefix argument.
1583 (when current-prefix-arg
1584 (prefix-numeric-value current-prefix-arg))))))
6e3057bb 1585 (let ((case-fold-search isearch-case-fold-search)
3e8cd5ce
JL
1586 ;; Set `search-upper-case' to nil to not call
1587 ;; `isearch-no-upper-case-p' in `occur-1'.
1588 (search-upper-case nil)
db2440b6 1589 (search-spaces-regexp (if isearch-regexp search-whitespace-regexp)))
6e3057bb
JL
1590 (occur regexp nlines)))
1591
11c9f489
JL
1592(declare-function hi-lock-read-face-name "hi-lock" ())
1593
8938c0bc 1594(defun isearch-highlight-regexp ()
11c9f489 1595 "Run `highlight-regexp' with regexp from the current search string.
8938c0bc
JL
1596It exits Isearch mode and calls `hi-lock-face-buffer' with its regexp
1597argument from the last search regexp or a quoted search string,
1598and reads its face argument using `hi-lock-read-face-name'."
1599 (interactive)
8d32ed64
JL
1600 (let (
1601 ;; Set `isearch-recursive-edit' to nil to prevent calling
1602 ;; `exit-recursive-edit' in `isearch-done' that terminates
1603 ;; the execution of this command when it is non-nil.
1604 ;; We call `exit-recursive-edit' explicitly at the end below.
1605 (isearch-recursive-edit nil))
1606 (isearch-done nil t)
1607 (isearch-clean-overlays))
8938c0bc 1608 (require 'hi-lock nil t)
36bdf1ff
CY
1609 (let ((string (cond (isearch-regexp isearch-string)
1610 ((if (and (eq isearch-case-fold-search t)
1611 search-upper-case)
1612 (isearch-no-upper-case-p
1613 isearch-string isearch-regexp)
1614 isearch-case-fold-search)
1615 ;; Turn isearch-string into a case-insensitive
1616 ;; regexp.
9c7a6b15
CY
1617 (mapconcat
1618 (lambda (c)
1619 (let ((s (string c)))
1620 (if (string-match "[[:alpha:]]" s)
1621 (format "[%s%s]" (upcase s) (downcase s))
1622 (regexp-quote s))))
1623 isearch-string ""))
36bdf1ff 1624 (t (regexp-quote isearch-string)))))
8d32ed64
JL
1625 (hi-lock-face-buffer string (hi-lock-read-face-name)))
1626 (and isearch-recursive-edit (exit-recursive-edit)))
11c9f489 1627
74820eb5 1628\f
8e1cae6d 1629(defun isearch-delete-char ()
d6b8a1c0 1630 "Discard last input item and move point back.
8e1cae6d
JB
1631If no previous match was done, just beep."
1632 (interactive)
1633 (if (null (cdr isearch-cmds))
1634 (ding)
1635 (isearch-pop-state))
1636 (isearch-update))
1637
74820eb5
JL
1638(defun isearch-del-char (&optional arg)
1639 "Delete character from end of search string and search again.
1640If search string is empty, just beep."
1641 (interactive "p")
1642 (if (= 0 (length isearch-string))
35904fd3 1643 (ding)
74820eb5 1644 (setq isearch-string (substring isearch-string 0 (- (or arg 1)))
35904fd3 1645 isearch-message (mapconcat 'isearch-text-char-description
02b99a17
JL
1646 isearch-string "")))
1647 ;; Use the isearch-other-end as new starting point to be able
1648 ;; to find the remaining part of the search string again.
1649 (if isearch-other-end (goto-char isearch-other-end))
1650 (isearch-search)
1651 (isearch-push-state)
1652 (isearch-update))
8e1cae6d 1653
9cf081fa
KH
1654(defun isearch-yank-string (string)
1655 "Pull STRING into search string."
1656 ;; Downcase the string if not supposed to case-fold yanked strings.
1657 (if (and isearch-case-fold-search
1658 (eq 'not-yanks search-upper-case))
1659 (setq string (downcase string)))
1660 (if isearch-regexp (setq string (regexp-quote string)))
5d944a8f
JL
1661 ;; Don't move cursor in reverse search.
1662 (setq isearch-yank-flag t)
1663 (isearch-process-search-string
1664 string (mapconcat 'isearch-text-char-description string "")))
8e1cae6d 1665
30d47262
RS
1666(defun isearch-yank-kill ()
1667 "Pull string from kill ring into search string."
1668 (interactive)
9cf081fa
KH
1669 (isearch-yank-string (current-kill 0)))
1670
25666126
LL
1671(defun isearch-yank-pop ()
1672 "Replace just-yanked search string with previously killed string."
1673 (interactive)
1674 (if (not (memq last-command '(isearch-yank-kill isearch-yank-pop)))
1675 ;; Fall back on `isearch-yank-kill' for the benefits of people
1676 ;; who are used to the old behavior of `M-y' in isearch mode. In
1677 ;; future, this fallback may be changed if we ever change
1678 ;; `yank-pop' to do something like the kill-ring-browser.
1679 (isearch-yank-kill)
1680 (isearch-pop-state)
1681 (isearch-yank-string (current-kill 1))))
1682
9cf081fa 1683(defun isearch-yank-x-selection ()
117132a6 1684 "Pull current X selection into search string."
9cf081fa 1685 (interactive)
c935221f
SM
1686 (isearch-yank-string (x-get-selection))
1687 ;; If `x-get-selection' returned the text from the active region,
1688 ;; then it "used" the mark which we should hence deactivate.
1689 (when select-active-regions (deactivate-mark)))
8e1cae6d 1690
e4af1426 1691
191f025a 1692(defun isearch-mouse-2 (click)
e4af1426 1693 "Handle mouse-2 in Isearch mode.
117132a6 1694For a click in the echo area, invoke `isearch-yank-x-selection'.
f3b5dd74
DK
1695Otherwise invoke whatever the calling mouse-2 command sequence
1696is bound to outside of Isearch."
191f025a 1697 (interactive "e")
e4af1426
GM
1698 (let* ((w (posn-window (event-start click)))
1699 (overriding-terminal-local-map nil)
f3b5dd74 1700 (binding (key-binding (this-command-keys-vector) t)))
117132a6
DL
1701 (if (and (window-minibuffer-p w)
1702 (not (minibuffer-window-active-p w))) ; in echo area
1703 (isearch-yank-x-selection)
cd59ea72 1704 (when (functionp binding)
191f025a 1705 (call-interactively binding)))))
e4af1426 1706
29e53a0a
KF
1707(defun isearch-yank-internal (jumpform)
1708 "Pull the text from point to the point reached by JUMPFORM.
4b65254d
JB
1709JUMPFORM is a lambda expression that takes no arguments and returns
1710a buffer position, possibly having moved point to that position.
1711For example, it might move point forward by a word and return point,
1712or it might return the position of the end of the line."
9cf081fa
KH
1713 (isearch-yank-string
1714 (save-excursion
1715 (and (not isearch-forward) isearch-other-end
1716 (goto-char isearch-other-end))
29e53a0a
KF
1717 (buffer-substring-no-properties (point) (funcall jumpform)))))
1718
74820eb5
JL
1719(defun isearch-yank-char-in-minibuffer (&optional arg)
1720 "Pull next character from buffer into end of search string in minibuffer."
1721 (interactive "p")
1722 (if (eobp)
1723 (insert
00c42405 1724 (with-current-buffer (cadr (buffer-list))
74820eb5
JL
1725 (buffer-substring-no-properties
1726 (point) (progn (forward-char arg) (point)))))
1727 (forward-char arg)))
1728
1729(defun isearch-yank-char (&optional arg)
35904fd3 1730 "Pull next character from buffer into search string."
74820eb5
JL
1731 (interactive "p")
1732 (isearch-yank-internal (lambda () (forward-char arg) (point))))
29e53a0a 1733
1ddb2ea0 1734(declare-function subword-forward "subword" (&optional arg))
868bf43a 1735(defun isearch-yank-word-or-char ()
1ddb2ea0
MY
1736 "Pull next character, subword or word from buffer into search string.
1737Subword is used when `subword-mode' is activated. "
868bf43a 1738 (interactive)
21d90805 1739 (isearch-yank-internal
b48ca14f 1740 (lambda ()
21d90805
KF
1741 (if (or (= (char-syntax (or (char-after) 0)) ?w)
1742 (= (char-syntax (or (char-after (1+ (point))) 0)) ?w))
1ddb2ea0
MY
1743 (if (and (boundp 'subword-mode) subword-mode)
1744 (subword-forward 1)
1745 (forward-word 1))
21d90805 1746 (forward-char 1)) (point))))
868bf43a 1747
29e53a0a
KF
1748(defun isearch-yank-word ()
1749 "Pull next word from buffer into search string."
1750 (interactive)
1751 (isearch-yank-internal (lambda () (forward-word 1) (point))))
8e1cae6d
JB
1752
1753(defun isearch-yank-line ()
1754 "Pull rest of line from buffer into search string."
1755 (interactive)
a1883913 1756 (isearch-yank-internal
933f8467
RF
1757 (lambda () (let ((inhibit-field-text-motion t))
1758 (line-end-position (if (eolp) 2 1))))))
8e1cae6d
JB
1759
1760(defun isearch-search-and-update ()
1761 ;; Do the search and update the display.
191f025a 1762 (when (or isearch-success
35904fd3
JL
1763 ;; Unsuccessful regexp search may become successful by
1764 ;; addition of characters which make isearch-string valid
cd59ea72
SM
1765 isearch-regexp
1766 ;; If the string was found but was completely invisible,
1767 ;; it might now be partly visible, so try again.
1768 (prog1 isearch-hidden (setq isearch-hidden nil)))
8e1cae6d
JB
1769 ;; In reverse search, adding stuff at
1770 ;; the end may cause zero or many more chars to be
1771 ;; matched, in the string following point.
1772 ;; Allow all those possibilities without moving point as
1773 ;; long as the match does not extend past search origin.
1774 (if (and (not isearch-forward) (not isearch-adjusted)
1775 (condition-case ()
99ae9e9f 1776 (let ((case-fold-search isearch-case-fold-search))
ec0a2f45
KH
1777 (if (and (eq case-fold-search t) search-upper-case)
1778 (setq case-fold-search
1779 (isearch-no-upper-case-p isearch-string isearch-regexp)))
02b16839 1780 (looking-at (cond
d5e61c1c
JL
1781 ((functionp isearch-word)
1782 (funcall isearch-word isearch-string t))
02b16839
JL
1783 (isearch-word (word-search-regexp isearch-string t))
1784 (isearch-regexp isearch-string)
1785 (t (regexp-quote isearch-string)))))
8e1cae6d 1786 (error nil))
bd6a8414 1787 (or isearch-yank-flag
191f025a 1788 (<= (match-end 0)
bd6a8414 1789 (min isearch-opoint isearch-barrier))))
d64b1d96 1790 (progn
191f025a 1791 (setq isearch-success t
ba653a53 1792 isearch-error nil
d64b1d96
RS
1793 isearch-other-end (match-end 0))
1794 (if (and (eq isearch-case-fold-search t) search-upper-case)
1795 (setq isearch-case-fold-search
1796 (isearch-no-upper-case-p isearch-string isearch-regexp))))
8e1cae6d
JB
1797 ;; Not regexp, not reverse, or no match at point.
1798 (if (and isearch-other-end (not isearch-adjusted))
1799 (goto-char (if isearch-forward isearch-other-end
191f025a
SM
1800 (min isearch-opoint
1801 isearch-barrier
8e1cae6d
JB
1802 (1+ isearch-other-end)))))
1803 (isearch-search)
1804 ))
1805 (isearch-push-state)
1806 (if isearch-op-fun (funcall isearch-op-fun))
1807 (isearch-update))
1808
1809
08e3de69 1810;; *, ?, }, and | chars can make a regexp more liberal.
08200510 1811;; They can make a regexp match sooner or make it succeed instead of failing.
8e1cae6d
JB
1812;; So go back to place last successful search started
1813;; or to the last ^S/^R (barrier), whichever is nearer.
08200510 1814;; + needs no special handling because the string must match at least once.
8e1cae6d 1815
08e3de69
EZ
1816(defun isearch-backslash (str)
1817 "Return t if STR ends in an odd number of backslashes."
1818 (= (mod (- (length str) (string-match "\\\\*\\'" str)) 2) 1))
1819
1820(defun isearch-fallback (want-backslash &optional allow-invalid to-barrier)
1821 "Return point to previous successful match to allow regexp liberalization.
1822\\<isearch-mode-map>
4b65254d 1823Respects \\[isearch-repeat-forward] and \\[isearch-repeat-backward] by \
08e3de69
EZ
1824stopping at `isearch-barrier' as needed.
1825
6f2df0f4
JL
1826Do nothing if a backslash is escaping the liberalizing character.
1827If WANT-BACKSLASH is non-nil, invert this behavior (for \\} and \\|).
08e3de69 1828
6f2df0f4
JL
1829Do nothing if regexp has recently been invalid unless optional
1830ALLOW-INVALID non-nil.
08e3de69 1831
6f2df0f4
JL
1832If optional TO-BARRIER non-nil, ignore previous matches and go exactly
1833to the barrier."
08e3de69
EZ
1834 ;; (eq (not a) (not b)) makes all non-nil values equivalent
1835 (when (and isearch-regexp (eq (not (isearch-backslash isearch-string))
1836 (not want-backslash))
1837 ;; We have to check 2 stack frames because the last might be
1838 ;; invalid just because of a backslash.
ba653a53 1839 (or (not isearch-error)
7c2dc8bd 1840 (not (isearch--state-error (cadr isearch-cmds)))
08e3de69
EZ
1841 allow-invalid))
1842 (if to-barrier
1843 (progn (goto-char isearch-barrier)
1844 (setq isearch-adjusted t))
1845 (let* ((stack isearch-cmds)
1846 (previous (cdr stack)) ; lookbelow in the stack
1847 (frame (car stack)))
1848 ;; Walk down the stack looking for a valid regexp (as of course only
1849 ;; they can be the previous successful match); this conveniently
1850 ;; removes all bracket-sets and groups that might be in the way, as
1851 ;; well as partial \{\} constructs that the code below leaves behind.
1852 ;; Also skip over postfix operators -- though horrid,
9b9a4122 1853 ;; 'ab?\{5,6\}+\{1,2\}*' is perfectly valid.
08e3de69 1854 (while (and previous
7c2dc8bd
SM
1855 (or (isearch--state-error frame)
1856 (let* ((string (isearch--state-string frame))
08e3de69
EZ
1857 (lchar (aref string (1- (length string)))))
1858 ;; The operators aren't always operators; check
1859 ;; backslashes. This doesn't handle the case of
1860 ;; operators at the beginning of the regexp not
1861 ;; being special, but then we should fall back to
1862 ;; the barrier anyway because it's all optional.
1863 (if (isearch-backslash
7c2dc8bd 1864 (isearch--state-string (car previous)))
08e3de69
EZ
1865 (eq lchar ?\})
1866 (memq lchar '(?* ?? ?+))))))
1867 (setq stack previous previous (cdr previous) frame (car stack)))
1868 (when stack
1869 ;; `stack' now refers the most recent valid regexp that is not at
1870 ;; all optional in its last term. Now dig one level deeper and find
1871 ;; what matched before that.
5a1f9fcf
JL
1872 (let ((last-other-end
1873 (or (and (car previous)
7c2dc8bd 1874 (isearch--state-other-end (car previous)))
5a1f9fcf 1875 isearch-barrier)))
08e3de69
EZ
1876 (goto-char (if isearch-forward
1877 (max last-other-end isearch-barrier)
1878 (min last-other-end isearch-barrier)))
6f2df0f4 1879 (setq isearch-adjusted t)))))))
8e1cae6d 1880
6b61353c
KH
1881(defun isearch-unread-key-sequence (keylist)
1882 "Unread the given key-sequence KEYLIST.
1883Scroll-bar or mode-line events are processed appropriately."
1884 (cancel-kbd-macro-events)
1885 (apply 'isearch-unread keylist)
1886 ;; If the event was a scroll-bar or mode-line click, the event will have
1887 ;; been prefixed by a symbol such as vertical-scroll-bar. We must remove
1888 ;; it here, because this symbol will be attached to the event again next
1889 ;; time it gets read by read-key-sequence.
1890 ;;
1891 ;; (Old comment from isearch-other-meta-char: "Note that we don't have to
1892 ;; modify the event anymore in 21 because read_key_sequence no longer
1893 ;; modifies events to produce fake prefix keys.")
1894 (if (and (> (length keylist) 1)
1895 (symbolp (car keylist))
1896 (listp (cadr keylist))
1897 (not (numberp (posn-point
1898 (event-start (cadr keylist) )))))
1899 (pop unread-command-events)))
1900
1901;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1902;; scrolling within Isearch mode. Alan Mackenzie (acm@muc.de), 2003/2/24
1903;;
1904;; The idea here is that certain vertical scrolling commands (like C-l
1905;; `recenter') should be usable WITHIN Isearch mode. For a command to be
1906;; suitable, it must NOT alter the buffer, swap to another buffer or frame,
1907;; tamper with isearch's state, or move point. It is unacceptable for the
1908;; search string to be scrolled out of the current window. If a command
1909;; attempts this, we scroll the text back again.
1910;;
1911;; We implement this feature with a property called `isearch-scroll'.
ad40eec5
JL
1912;; If a command's symbol has the value t for this property or for the
1913;; `scroll-command' property, it is a scrolling command. The feature
1914;; needs to be enabled by setting the customizable variable
1915;; `isearch-allow-scroll' to a non-nil value.
6b61353c
KH
1916;;
1917;; The universal argument commands (e.g. C-u) in simple.el are marked
1918;; as scrolling commands, and isearch.el has been amended to allow
1919;; prefix arguments to be passed through to scrolling commands. Thus
1920;; M-0 C-l will scroll point to the top of the window.
1921;;
1922;; Horizontal scrolling commands are currently not catered for.
1923;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1924
1925;; Set the isearch-scroll property on some standard functions:
1926;; Scroll-bar functions:
1927(if (fboundp 'scroll-bar-toolkit-scroll)
1928 (put 'scroll-bar-toolkit-scroll 'isearch-scroll t))
6b61353c
KH
1929(if (fboundp 'w32-handle-scroll-bar-event)
1930 (put 'w32-handle-scroll-bar-event 'isearch-scroll t))
1931
ad40eec5
JL
1932;; Commands which scroll the window (some scroll commands
1933;; already have the `scroll-command' property on them):
6b61353c 1934(put 'recenter 'isearch-scroll t)
21d9ed8b 1935(put 'recenter-top-bottom 'isearch-scroll t)
6b61353c 1936(put 'reposition-window 'isearch-scroll t)
6b61353c
KH
1937
1938;; Commands which act on the other window
1939(put 'list-buffers 'isearch-scroll t)
1940(put 'scroll-other-window 'isearch-scroll t)
1941(put 'scroll-other-window-down 'isearch-scroll t)
1942(put 'beginning-of-buffer-other-window 'isearch-scroll t)
1943(put 'end-of-buffer-other-window 'isearch-scroll t)
1944
1945;; Commands which change the window layout
1946(put 'delete-other-windows 'isearch-scroll t)
1947(put 'balance-windows 'isearch-scroll t)
2d197ffb
CY
1948(put 'split-window-right 'isearch-scroll t)
1949(put 'split-window-below 'isearch-scroll t)
1950(put 'enlarge-window 'isearch-scroll t)
1951
1952;; Aliases for split-window-*
6b61353c 1953(put 'split-window-vertically 'isearch-scroll t)
7f55d3b7 1954(put 'split-window-horizontally 'isearch-scroll t)
6b61353c
KH
1955
1956;; Universal argument commands
1957(put 'universal-argument 'isearch-scroll t)
1958(put 'negative-argument 'isearch-scroll t)
1959(put 'digit-argument 'isearch-scroll t)
1960
1961(defcustom isearch-allow-scroll nil
9425f8e1
CY
1962 "Whether scrolling is allowed during incremental search.
1963If non-nil, scrolling commands can be used in Isearch mode.
1964However, the current match will never scroll offscreen.
a4b000fb 1965If nil, scrolling commands will first cancel Isearch mode."
6b61353c
KH
1966 :type 'boolean
1967 :group 'isearch)
1968
1969(defun isearch-string-out-of-window (isearch-point)
1970 "Test whether the search string is currently outside of the window.
1971Return nil if it's completely visible, or if point is visible,
1972together with as much of the search string as will fit; the symbol
1973`above' if we need to scroll the text downwards; the symbol `below',
1974if upwards."
1975 (let ((w-start (window-start))
1976 (w-end (window-end nil t))
1977 (w-L1 (save-excursion (move-to-window-line 1) (point)))
1978 (w-L-1 (save-excursion (move-to-window-line -1) (point)))
1979 start end) ; start and end of search string in buffer
1980 (if isearch-forward
1981 (setq end isearch-point start (or isearch-other-end isearch-point))
1982 (setq start isearch-point end (or isearch-other-end isearch-point)))
1983 (cond ((or (and (>= start w-start) (<= end w-end))
1984 (if isearch-forward
1985 (and (>= isearch-point w-L-1) (< isearch-point w-end)) ; point on Line -1
1986 (and (>= isearch-point w-start) (< isearch-point w-L1)))) ; point on Line 0
1987 nil)
1988 ((and (< start w-start)
1989 (< isearch-point w-L-1))
1990 'above)
1991 (t 'below))))
1992
1993(defun isearch-back-into-window (above isearch-point)
1994 "Scroll the window to bring the search string back into view.
1995Restore point to ISEARCH-POINT in the process. ABOVE is t when the
1996search string is above the top of the window, nil when it is beneath
1997the bottom."
1998 (let (start end)
1999 (if isearch-forward
2000 (setq end isearch-point start (or isearch-other-end isearch-point))
2001 (setq start isearch-point end (or isearch-other-end isearch-point)))
2002 (if above
2003 (progn
2004 (goto-char start)
2005 (recenter 0)
2006 (when (>= isearch-point (window-end nil t))
2007 (goto-char isearch-point)
2008 (recenter -1)))
2009 (goto-char end)
2010 (recenter -1)
2011 (when (< isearch-point (window-start))
2012 (goto-char isearch-point)
2013 (recenter 0))))
2014 (goto-char isearch-point))
2015
2016(defun isearch-reread-key-sequence-naturally (keylist)
e9a452d9 2017 "Reread key sequence KEYLIST with an inactive Isearch-mode keymap.
6b61353c
KH
2018Return the key sequence as a string/vector."
2019 (isearch-unread-key-sequence keylist)
2020 (let (overriding-terminal-local-map)
2021 (read-key-sequence nil))) ; This will go through function-key-map, if nec.
2022
2023(defun isearch-lookup-scroll-key (key-seq)
2024 "If KEY-SEQ is bound to a scrolling command, return it as a symbol.
2025Otherwise return nil."
2026 (let* ((overriding-terminal-local-map nil)
2027 (binding (key-binding key-seq)))
2028 (and binding (symbolp binding) (commandp binding)
ad40eec5
JL
2029 (or (eq (get binding 'isearch-scroll) t)
2030 (eq (get binding 'scroll-command) t))
6b61353c 2031 binding)))
8e1cae6d 2032
b457cc3b 2033(defalias 'isearch-other-control-char 'isearch-other-meta-char)
8e1cae6d 2034
6b61353c
KH
2035(defun isearch-other-meta-char (&optional arg)
2036 "Process a miscellaneous key sequence in Isearch mode.
2037
2038Try to convert the current key-sequence to something usable in Isearch
2039mode, either by converting it with `function-key-map', downcasing a
2040key with C-<upper case>, or finding a \"scrolling command\" bound to
2041it. \(In the last case, we may have to read more events.) If so,
2042either unread the converted sequence or execute the command.
2043
2044Otherwise, if `search-exit-option' is non-nil (the default) unread the
2045key-sequence and exit the search normally. If it is the symbol
2046`edit', the search string is edited in the minibuffer and the meta
2047character is unread so that it applies to editing the string.
2048
2049ARG is the prefix argument. It will be transmitted through to the
2050scrolling command or to the command whose key-sequence exits
2051Isearch mode."
2052 (interactive "P")
2053 (let* ((key (if current-prefix-arg ; not nec the same as ARG
2054 (substring (this-command-keys) universal-argument-num-events)
2055 (this-command-keys)))
c6431f12 2056 (main-event (aref key 0))
6b61353c
KH
2057 (keylist (listify-key-sequence key))
2058 scroll-command isearch-point)
24b5caec 2059 (cond ((and (= (length key) 1)
c40bb1ba 2060 (let ((lookup (lookup-key local-function-key-map key)))
3f866b53
KH
2061 (not (or (null lookup) (integerp lookup)
2062 (keymapp lookup)))))
24b5caec
RS
2063 ;; Handle a function key that translates into something else.
2064 ;; If the key has a global definition too,
2065 ;; exit and unread the key itself, so its global definition runs.
2066 ;; Otherwise, unread the translation,
2067 ;; so that the translated key takes effect within isearch.
d94eb6eb 2068 (cancel-kbd-macro-events)
24b5caec 2069 (if (lookup-key global-map key)
02b2f510 2070 (progn
24b5caec 2071 (isearch-done)
d809b8eb 2072 (setq prefix-arg arg)
24b5caec 2073 (apply 'isearch-unread keylist))
a5cc922e 2074 (setq keylist
c40bb1ba 2075 (listify-key-sequence (lookup-key local-function-key-map key)))
a5cc922e
KH
2076 (while keylist
2077 (setq key (car keylist))
2078 ;; If KEY is a printing char, we handle it here
2079 ;; directly to avoid the input method and keyboard
2080 ;; coding system translating it.
2081 (if (and (integerp key)
6480c508 2082 (>= key ?\s) (/= key 127) (< key 256))
a5cc922e
KH
2083 (progn
2084 (isearch-process-search-char key)
2085 (setq keylist (cdr keylist)))
2086 ;; As the remaining keys in KEYLIST can't be handled
2087 ;; here, we must reread them.
d809b8eb 2088 (setq prefix-arg arg)
a5cc922e
KH
2089 (apply 'isearch-unread keylist)
2090 (setq keylist nil)))))
24b5caec 2091 (
c6431f12
KH
2092 ;; Handle an undefined shifted control character
2093 ;; by downshifting it if that makes it defined.
2094 ;; (As read-key-sequence would normally do,
2095 ;; if we didn't have a default definition.)
2096 (let ((mods (event-modifiers main-event)))
2097 (and (integerp main-event)
2098 (memq 'shift mods)
2099 (memq 'control mods)
f438bf5c
EZ
2100 (not (memq (lookup-key isearch-mode-map
2101 (let ((copy (copy-sequence key)))
2102 (aset copy 0
2103 (- main-event
2104 (- ?\C-\S-a ?\C-a)))
2105 copy)
2106 nil)
2107 '(nil
2108 isearch-other-control-char)))))
c6431f12 2109 (setcar keylist (- main-event (- ?\C-\S-a ?\C-a)))
d94eb6eb 2110 (cancel-kbd-macro-events)
d809b8eb 2111 (setq prefix-arg arg)
c6431f12
KH
2112 (apply 'isearch-unread keylist))
2113 ((eq search-exit-option 'edit)
d809b8eb 2114 (setq prefix-arg arg)
c6431f12
KH
2115 (apply 'isearch-unread keylist)
2116 (isearch-edit-string))
6b61353c
KH
2117 ;; Handle a scrolling function.
2118 ((and isearch-allow-scroll
2119 (progn (setq key (isearch-reread-key-sequence-naturally keylist))
2120 (setq keylist (listify-key-sequence key))
2121 (setq main-event (aref key 0))
2122 (setq scroll-command (isearch-lookup-scroll-key key))))
2123 ;; From this point onwards, KEY, KEYLIST and MAIN-EVENT hold a
2124 ;; complete key sequence, possibly as modified by function-key-map,
2125 ;; not merely the one or two event fragment which invoked
2126 ;; isearch-other-meta-char in the first place.
2127 (setq isearch-point (point))
2128 (setq prefix-arg arg)
2129 (command-execute scroll-command)
2130 (let ((ab-bel (isearch-string-out-of-window isearch-point)))
2131 (if ab-bel
35904fd3 2132 (isearch-back-into-window (eq ab-bel 'above) isearch-point)
d85519bb 2133 (goto-char isearch-point)))
6b61353c 2134 (isearch-update))
72a69d7f
JL
2135 ;; A mouse click on the isearch message starts editing the search string
2136 ((and (eq (car-safe main-event) 'down-mouse-1)
2137 (window-minibuffer-p (posn-window (event-start main-event))))
2138 ;; Swallow the up-event.
2139 (read-event)
2140 (isearch-edit-string))
c6431f12
KH
2141 (search-exit-option
2142 (let (window)
d809b8eb 2143 (setq prefix-arg arg)
6b61353c
KH
2144 (isearch-unread-key-sequence keylist)
2145 (setq main-event (car unread-command-events))
3fb01f36 2146
346f18dc
GM
2147 ;; If we got a mouse click event, that event contains the
2148 ;; window clicked on. maybe it was read with the buffer
c6431f12
KH
2149 ;; it was clicked on. If so, that buffer, not the current one,
2150 ;; is in isearch mode. So end the search in that buffer.
346f18dc
GM
2151
2152 ;; ??? I have no idea what this if checks for, but it's
2153 ;; obviously wrong for the case that a down-mouse event
2154 ;; on another window invokes this function. The event
2155 ;; will contain the window clicked on and that window's
b48ca14f 2156 ;; buffer is certainly not always in Isearch mode.
346f18dc
GM
2157 ;;
2158 ;; Leave the code in, but check for current buffer not
2159 ;; being in Isearch mode for now, until someone tells
2160 ;; what it's really supposed to do.
2161 ;;
2162 ;; --gerd 2001-08-10.
2163
2164 (if (and (not isearch-mode)
2165 (listp main-event)
c6431f12 2166 (setq window (posn-window (event-start main-event)))
4fd017e7
RS
2167 (windowp window)
2168 (or (> (minibuffer-depth) 0)
2169 (not (window-minibuffer-p window))))
00c42405 2170 (with-current-buffer (window-buffer window)
0352b205
RS
2171 (isearch-done)
2172 (isearch-clean-overlays))
2173 (isearch-done)
6b61353c
KH
2174 (isearch-clean-overlays)
2175 (setq prefix-arg arg))))
2176 (t;; otherwise nil
c6431f12 2177 (isearch-process-search-string key key)))))
8e1cae6d 2178
8e1cae6d
JB
2179(defun isearch-quote-char ()
2180 "Quote special characters for incremental search."
2181 (interactive)
8bc15fa8 2182 (let ((char (read-quoted-char (isearch-message t))))
3c75023f 2183 ;; Assume character codes 0200 - 0377 stand for characters in some
c20d35d5
KH
2184 ;; single-byte character set, and convert them to Emacs
2185 ;; characters.
6480c508 2186 (if (and isearch-regexp (= char ?\s))
be02a7ed 2187 (if (subregexp-context-p isearch-string (length isearch-string))
30bb1443
SM
2188 (isearch-process-search-string "[ ]" " ")
2189 (isearch-process-search-char char))
ab67e8b6
RS
2190 (and enable-multibyte-characters
2191 (>= char ?\200)
2192 (<= char ?\377)
2193 (setq char (unibyte-char-to-multibyte char)))
2194 (isearch-process-search-char char))))
8e1cae6d 2195
8e1cae6d 2196(defun isearch-printing-char ()
b68c164d 2197 "Add this ordinary printing character to the search string and search."
8e1cae6d 2198 (interactive)
8989a920 2199 (let ((char last-command-event))
45b94eb2 2200 (if (= char ?\S-\ )
6480c508 2201 (setq char ?\s))
758710cb
KH
2202 (if current-input-method
2203 (isearch-process-search-multibyte-characters char)
2204 (isearch-process-search-char char))))
8e1cae6d 2205
8e1cae6d 2206(defun isearch-process-search-char (char)
6f2df0f4
JL
2207 ;; * and ? are special in regexps when not preceded by \.
2208 ;; } and | are special in regexps when preceded by \.
2209 ;; Nothing special for + because it matches at least once.
2210 (cond
2211 ((memq char '(?* ??)) (isearch-fallback nil))
2212 ((eq char ?\}) (isearch-fallback t t))
2213 ((eq char ?|) (isearch-fallback t nil t)))
2214
8e1cae6d 2215 ;; Append the char to the search string, update the message and re-search.
191f025a
SM
2216 (isearch-process-search-string
2217 (char-to-string char)
8f3c1d76 2218 (if (>= char ?\200)
01a6ef79
RS
2219 (char-to-string char)
2220 (isearch-text-char-description char))))
8e1cae6d
JB
2221
2222(defun isearch-process-search-string (string message)
2223 (setq isearch-string (concat isearch-string string)
2224 isearch-message (concat isearch-message message))
2225 (isearch-search-and-update))
2226
2227\f
8e1cae6d
JB
2228;; Search Ring
2229
08200510
RS
2230(defun isearch-ring-adjust1 (advance)
2231 ;; Helper for isearch-ring-adjust
2232 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
8e1cae6d
JB
2233 (length (length ring))
2234 (yank-pointer-name (if isearch-regexp
08200510 2235 'regexp-search-ring-yank-pointer
8e1cae6d
JB
2236 'search-ring-yank-pointer))
2237 (yank-pointer (eval yank-pointer-name)))
2238 (if (zerop length)
2239 ()
2240 (set yank-pointer-name
2241 (setq yank-pointer
11dcdbb2 2242 (mod (+ (or yank-pointer (if advance 0 -1))
ffbc30b2
PE
2243 (if advance -1 1))
2244 length)))
a5dcf63f 2245 (setq isearch-string (nth yank-pointer ring)
08200510
RS
2246 isearch-message (mapconcat 'isearch-text-char-description
2247 isearch-string "")))))
2248
2249(defun isearch-ring-adjust (advance)
2250 ;; Helper for isearch-ring-advance and isearch-ring-retreat
08200510 2251 (isearch-ring-adjust1 advance)
08200510
RS
2252 (if search-ring-update
2253 (progn
2254 (isearch-search)
a71a98cf 2255 (isearch-push-state)
08200510 2256 (isearch-update))
a71a98cf
JL
2257 ;; Otherwise, edit the search string instead. Note that there is
2258 ;; no need to push the search state after isearch-edit-string here
2259 ;; since isearch-edit-string already pushes its state
2260 (isearch-edit-string)))
8e1cae6d
JB
2261
2262(defun isearch-ring-advance ()
2263 "Advance to the next search string in the ring."
08200510 2264 ;; This could be more general to handle a prefix arg, but who would use it.
8e1cae6d
JB
2265 (interactive)
2266 (isearch-ring-adjust 'advance))
2267
2268(defun isearch-ring-retreat ()
2269 "Retreat to the previous search string in the ring."
2270 (interactive)
2271 (isearch-ring-adjust nil))
2272
08200510
RS
2273(defun isearch-complete1 ()
2274 ;; Helper for isearch-complete and isearch-complete-edit
2275 ;; Return t if completion OK, nil if no completion exists.
2276 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
08200510 2277 (completion-ignore-case case-fold-search)
c789e608 2278 (completion (try-completion isearch-string ring)))
08200510
RS
2279 (cond
2280 ((eq completion t)
2281 ;; isearch-string stays the same
2282 t)
2283 ((or completion ; not nil, must be a string
b7852303 2284 (= 0 (length isearch-string))) ; shouldn't have to say this
08200510 2285 (if (equal completion isearch-string) ;; no extension?
36bcac3f
RS
2286 (progn
2287 (if completion-auto-help
2288 (with-output-to-temp-buffer "*Isearch completions*"
b48ca14f 2289 (display-completion-list
c789e608 2290 (all-completions isearch-string ring))))
36bcac3f
RS
2291 t)
2292 (and completion
2293 (setq isearch-string completion))))
08200510
RS
2294 (t
2295 (message "No completion") ; waits a second if in minibuffer
2296 nil))))
2297
2298(defun isearch-complete ()
2299 "Complete the search string from the strings on the search ring.
2300The completed string is then editable in the minibuffer.
2301If there is no completion possible, say so and continue searching."
2302 (interactive)
2303 (if (isearch-complete1)
3ae4c509
RS
2304 (progn (setq isearch-message
2305 (mapconcat 'isearch-text-char-description
2306 isearch-string ""))
2307 (isearch-edit-string))
08200510
RS
2308 ;; else
2309 (sit-for 1)
2310 (isearch-update)))
8e1cae6d 2311
08200510
RS
2312(defun isearch-complete-edit ()
2313 "Same as `isearch-complete' except in the minibuffer."
2314 (interactive)
c789e608 2315 (setq isearch-string (field-string))
08200510 2316 (if (isearch-complete1)
8e1cae6d 2317 (progn
b7b66466 2318 (delete-field)
08200510 2319 (insert isearch-string))))
8e1cae6d
JB
2320
2321\f
8e1cae6d
JB
2322;; Message string
2323
2324(defun isearch-message (&optional c-q-hack ellipsis)
2325 ;; Generate and print the message string.
2326 (let ((cursor-in-echo-area ellipsis)
d8891294 2327 (m isearch-message)
72779976
JL
2328 (fail-pos (isearch-fail-pos t)))
2329 ;; Highlight failed part
2330 (when fail-pos
2331 (setq m (copy-sequence m))
2332 (add-text-properties fail-pos (length m) '(face isearch-fail) m)
d8891294
JL
2333 ;; Highlight failed trailing whitespace
2334 (when (string-match " +$" m)
2335 (add-text-properties (match-beginning 0) (match-end 0)
2336 '(face trailing-whitespace) m)))
2337 (setq m (concat
7c2dc8bd 2338 (isearch-message-prefix ellipsis isearch-nonincremental)
d8891294 2339 m
7c2dc8bd 2340 (isearch-message-suffix c-q-hack)))
d8891294 2341 (if c-q-hack m (let ((message-log-max nil)) (message "%s" m)))))
8e1cae6d 2342
7c2dc8bd 2343(defun isearch-message-prefix (&optional ellipsis nonincremental)
8e1cae6d
JB
2344 ;; If about to search, and previous search regexp was invalid,
2345 ;; check that it still is. If it is valid now,
2346 ;; let the message we display while searching say that it is valid.
ba653a53 2347 (and isearch-error ellipsis
8e1cae6d
JB
2348 (condition-case ()
2349 (progn (re-search-forward isearch-string (point) t)
ba653a53 2350 (setq isearch-error nil))
8e1cae6d
JB
2351 (error nil)))
2352 ;; If currently failing, display no ellipsis.
2353 (or isearch-success (setq ellipsis nil))
2354 (let ((m (concat (if isearch-success "" "failing ")
d85519bb 2355 (if isearch-adjusted "pending " "")
7badea30 2356 (if (and isearch-wrapped
6a18e4e7 2357 (not isearch-wrap-function)
7badea30
RS
2358 (if isearch-forward
2359 (> (point) isearch-opoint)
2360 (< (point) isearch-opoint)))
2361 "over")
8e1cae6d 2362 (if isearch-wrapped "wrapped ")
d5e61c1c
JL
2363 (if isearch-word
2364 (or (and (symbolp isearch-word)
2365 (get isearch-word 'isearch-message-prefix))
2366 "word ")
2367 "")
8e1cae6d 2368 (if isearch-regexp "regexp " "")
3c0aa5e6 2369 (if multi-isearch-next-buffer-current-function "multi " "")
ee9b85a8 2370 (or isearch-message-prefix-add "")
08200510 2371 (if nonincremental "search" "I-search")
f46d5091 2372 (if isearch-forward "" " backward")
5b56d4e4 2373 (if current-input-method
66e0570c
EZ
2374 ;; Input methods for RTL languages use RTL
2375 ;; characters for their title, and that messes
dd782f24 2376 ;; up the display of search text after the prompt.
66e0570c
EZ
2377 (bidi-string-mark-left-to-right
2378 (concat " [" current-input-method-title "]: "))
f46d5091 2379 ": ")
8e1cae6d 2380 )))
aec11aff
KS
2381 (propertize (concat (upcase (substring m 0 1)) (substring m 1))
2382 'face 'minibuffer-prompt)))
8e1cae6d 2383
7c2dc8bd 2384(defun isearch-message-suffix (&optional c-q-hack)
8e1cae6d 2385 (concat (if c-q-hack "^Q" "")
ba653a53
JL
2386 (if isearch-error
2387 (concat " [" isearch-error "]")
ee9b85a8
JL
2388 "")
2389 (or isearch-message-suffix-add "")))
8e1cae6d
JB
2390
2391\f
191f025a
SM
2392;; Searching
2393
8cbd80f7
JL
2394(defvar isearch-search-fun-function 'isearch-search-fun-default
2395 "Non-default value overrides the behavior of `isearch-search-fun-default'.
f158badc
LMI
2396This variable's value should be a function, which will be called
2397with no arguments, and should return a function that takes three
2398arguments: STRING, BOUND, and NOERROR.
2399
2400This returned function will be used by `isearch-search-string' to
2401search for the first occurrence of STRING or its translation.")
191f025a
SM
2402
2403(defun isearch-search-fun ()
2404 "Return the function to use for the search.
2405Can be changed via `isearch-search-fun-function' for special needs."
8cbd80f7
JL
2406 (funcall (or isearch-search-fun-function 'isearch-search-fun-default)))
2407
2408(defun isearch-search-fun-default ()
2409 "Return default functions to use for the search."
2410 (cond
2411 (isearch-word
d5e61c1c
JL
2412 (lambda (string &optional bound noerror count)
2413 ;; Use lax versions to not fail at the end of the word while
2414 ;; the user adds and removes characters in the search string
2415 ;; (or when using nonincremental word isearch)
2416 (let ((lax (not (or isearch-nonincremental
2417 (eq (length isearch-string)
7c2dc8bd
SM
2418 (length (isearch--state-string
2419 (car isearch-cmds))))))))
d5e61c1c
JL
2420 (funcall
2421 (if isearch-forward #'re-search-forward #'re-search-backward)
2422 (if (functionp isearch-word)
2423 (funcall isearch-word string lax)
2424 (word-search-regexp string lax))
2425 bound noerror count))))
8cbd80f7
JL
2426 (isearch-regexp
2427 (if isearch-forward 're-search-forward 're-search-backward))
2428 (t
2429 (if isearch-forward 'search-forward 'search-backward))))
8e1cae6d 2430
6cf157df 2431(defun isearch-search-string (string bound noerror)
4b65254d
JB
2432 "Search for the first occurrence of STRING or its translation.
2433If found, move point to the end of the occurrence,
2434update the match data, and return point."
3be5da9e
SM
2435 (let* ((func (isearch-search-fun))
2436 (pos1 (save-excursion (funcall func string bound noerror)))
2437 pos2)
0d58bedd
EZ
2438 (when (and
2439 ;; Avoid "obsolete" warnings for translation-table-for-input.
2440 (with-no-warnings
2441 (char-table-p translation-table-for-input))
2442 (multibyte-string-p string)
2443 ;; Minor optimization.
2444 (string-match-p "[^[:ascii:]]" string))
3be5da9e
SM
2445 (let ((translated
2446 (apply 'string
2447 (mapcar (lambda (c)
0d58bedd
EZ
2448 (or
2449 ;; Avoid "obsolete" warnings for
2450 ;; translation-table-for-input.
2451 (with-no-warnings
2452 (aref translation-table-for-input c))
2453 c))
3be5da9e
SM
2454 string)))
2455 match-data)
2456 (when translated
2457 (save-match-data
2458 (save-excursion
2459 (if (setq pos2 (funcall func translated bound noerror))
2460 (setq match-data (match-data t)))))
2461 (when (and pos2
2462 (or (not pos1)
2463 (if isearch-forward (< pos2 pos1) (> pos2 pos1))))
2464 (setq pos1 pos2)
2465 (set-match-data match-data)))))
d240f431
JL
2466 (when pos1
2467 ;; When using multiple buffers isearch, switch to the new buffer here,
2468 ;; because `save-excursion' above doesn't allow doing it inside funcall.
3c0aa5e6
JL
2469 (if (and multi-isearch-next-buffer-current-function
2470 (buffer-live-p multi-isearch-current-buffer))
2471 (switch-to-buffer multi-isearch-current-buffer))
3be5da9e
SM
2472 (goto-char pos1)
2473 pos1)))
6cf157df 2474
8e1cae6d
JB
2475(defun isearch-search ()
2476 ;; Do the search with the current search string.
ac475d3a
JL
2477 (if isearch-message-function
2478 (funcall isearch-message-function nil t)
2479 (isearch-message nil t))
4453091d 2480 (if (and (eq isearch-case-fold-search t) search-upper-case)
b78559b0
RS
2481 (setq isearch-case-fold-search
2482 (isearch-no-upper-case-p isearch-string isearch-regexp)))
8e1cae6d 2483 (condition-case lossage
5e189f39 2484 (let ((inhibit-point-motion-hooks
7c2dc8bd 2485 ;; FIXME: equality comparisons on functions is asking for trouble.
f2fd3261 2486 (and (eq isearch-filter-predicate 'isearch-filter-visible)
5e189f39 2487 search-invisible))
79c7a4fa 2488 (inhibit-quit nil)
86bfaffe 2489 (case-fold-search isearch-case-fold-search)
ab67e8b6 2490 (search-spaces-regexp search-whitespace-regexp)
86bfaffe 2491 (retry t))
ba653a53 2492 (setq isearch-error nil)
86bfaffe
RS
2493 (while retry
2494 (setq isearch-success
6cf157df 2495 (isearch-search-string isearch-string nil t))
2f669fac
JL
2496 ;; Clear RETRY unless the search predicate says
2497 ;; to skip this search hit.
5e189f39 2498 (if (or (not isearch-success)
86bfaffe
RS
2499 (bobp) (eobp)
2500 (= (match-beginning 0) (match-end 0))
2f669fac 2501 (funcall isearch-filter-predicate
5e189f39 2502 (match-beginning 0) (match-end 0)))
86bfaffe 2503 (setq retry nil)))
99ae9e9f 2504 (setq isearch-just-started nil)
8e1cae6d
JB
2505 (if isearch-success
2506 (setq isearch-other-end
2507 (if isearch-forward (match-beginning 0) (match-end 0)))))
2508
d32696d4 2509 (quit (isearch-unread ?\C-g)
8e1cae6d
JB
2510 (setq isearch-success nil))
2511
191f025a 2512 (invalid-regexp
ba653a53 2513 (setq isearch-error (car (cdr lossage)))
8e1cae6d
JB
2514 (if (string-match
2515 "\\`Premature \\|\\`Unmatched \\|\\`Invalid "
ba653a53
JL
2516 isearch-error)
2517 (setq isearch-error "incomplete input")))
2518
2519 (search-failed
2520 (setq isearch-success nil)
2521 (setq isearch-error (nth 2 lossage)))
2522
f1c03125 2523 (error
c982ab21 2524 ;; stack overflow in regexp search.
ba653a53 2525 (setq isearch-error (format "%s" lossage))))
8e1cae6d
JB
2526
2527 (if isearch-success
2528 nil
2529 ;; Ding if failed this time after succeeding last time.
7c2dc8bd 2530 (and (isearch--state-success (car isearch-cmds))
8e1cae6d 2531 (ding))
7c2dc8bd
SM
2532 (if (functionp (isearch--state-pop-fun (car isearch-cmds)))
2533 (funcall (isearch--state-pop-fun (car isearch-cmds))
2534 (car isearch-cmds)))
2535 (goto-char (isearch--state-point (car isearch-cmds)))))
8e1cae6d 2536
0352b205 2537
191f025a 2538;; Called when opening an overlay, and we are still in isearch.
0352b205 2539(defun isearch-open-overlay-temporary (ov)
b48ca14f 2540 (if (not (null (overlay-get ov 'isearch-open-invisible-temporary)))
0352b205
RS
2541 ;; Some modes would want to open the overlays temporary during
2542 ;; isearch in their own way, they should set the
2543 ;; `isearch-open-invisible-temporary' to a function doing this.
2544 (funcall (overlay-get ov 'isearch-open-invisible-temporary) ov nil)
2545 ;; Store the values for the `invisible' and `intangible'
2546 ;; properties, and then set them to nil. This way the text hidden
2547 ;; by this overlay becomes visible.
2548
380866a2 2549 ;; Do we really need to set the `intangible' property to t? Can we
0352b205
RS
2550 ;; have the point inside an overlay with an `intangible' property?
2551 ;; In 19.34 this does not exist so I cannot test it.
2552 (overlay-put ov 'isearch-invisible (overlay-get ov 'invisible))
2553 (overlay-put ov 'isearch-intangible (overlay-get ov 'intangible))
2554 (overlay-put ov 'invisible nil)
2555 (overlay-put ov 'intangible nil)))
2556
2557
191f025a
SM
2558;; This is called at the end of isearch. It will open the overlays
2559;; that contain the latest match. Obviously in case of a C-g the
2560;; point returns to the original location which surely is not contain
2561;; in any of these overlays, se we are safe in this case too.
0352b205 2562(defun isearch-open-necessary-overlays (ov)
191f025a 2563 (let ((inside-overlay (and (> (point) (overlay-start ov))
0352b205
RS
2564 (< (point) (overlay-end ov))))
2565 ;; If this exists it means that the overlay was opened using
2566 ;; this function, not by us tweaking the overlay properties.
2567 (fct-temp (overlay-get ov 'isearch-open-invisible-temporary)))
2568 (when (or inside-overlay (not fct-temp))
2569 ;; restore the values for the `invisible' and `intangible'
2570 ;; properties
2571 (overlay-put ov 'invisible (overlay-get ov 'isearch-invisible))
2572 (overlay-put ov 'intangible (overlay-get ov 'isearch-intangible))
2573 (overlay-put ov 'isearch-invisible nil)
2574 (overlay-put ov 'isearch-intangible nil))
2575 (if inside-overlay
2576 (funcall (overlay-get ov 'isearch-open-invisible) ov)
2577 (if fct-temp
2578 (funcall fct-temp ov t)))))
2579
191f025a
SM
2580;; This is called when exiting isearch. It closes the temporary
2581;; opened overlays, except the ones that contain the latest match.
0352b205
RS
2582(defun isearch-clean-overlays ()
2583 (when isearch-opened-overlays
02b2f510 2584 (mapc 'isearch-open-necessary-overlays isearch-opened-overlays)
0352b205
RS
2585 (setq isearch-opened-overlays nil)))
2586
fc0eccfc
GM
2587
2588(defun isearch-intersects-p (start0 end0 start1 end1)
2589 "Return t if regions START0..END0 and START1..END1 intersect."
eaa493df
GM
2590 (or (and (>= start0 start1) (< start0 end1))
2591 (and (> end0 start1) (<= end0 end1))
2592 (and (>= start1 start0) (< start1 end0))
2593 (and (> end1 start0) (<= end1 end0))))
fc0eccfc
GM
2594
2595
191f025a
SM
2596;; Verify if the current match is outside of each element of
2597;; `isearch-opened-overlays', if so close that overlay.
fc0eccfc
GM
2598
2599(defun isearch-close-unnecessary-overlays (begin end)
2600 (let ((overlays isearch-opened-overlays))
0352b205 2601 (setq isearch-opened-overlays nil)
fc0eccfc
GM
2602 (dolist (ov overlays)
2603 (if (isearch-intersects-p begin end (overlay-start ov) (overlay-end ov))
2604 (push ov isearch-opened-overlays)
2605 (let ((fct-temp (overlay-get ov 'isearch-open-invisible-temporary)))
2606 (if fct-temp
2607 ;; If this exists it means that the overlay was opened
2608 ;; using this function, not by us tweaking the overlay
2609 ;; properties.
2610 (funcall fct-temp ov t)
2611 (overlay-put ov 'invisible (overlay-get ov 'isearch-invisible))
2612 (overlay-put ov 'intangible (overlay-get ov 'isearch-intangible))
2613 (overlay-put ov 'isearch-invisible nil)
2614 (overlay-put ov 'isearch-intangible nil)))))))
2615
0352b205 2616
86bfaffe 2617(defun isearch-range-invisible (beg end)
79c7a4fa 2618 "Return t if all the text from BEG to END is invisible."
cd59ea72
SM
2619 (when (/= beg end)
2620 ;; Check that invisibility runs up to END.
2621 (save-excursion
2622 (goto-char beg)
2623 (let (;; can-be-opened keeps track if we can open some overlays.
2624 (can-be-opened (eq search-invisible 'open))
2625 ;; the list of overlays that could be opened
2626 (crt-overlays nil))
2627 (when (and can-be-opened isearch-hide-immediately)
2628 (isearch-close-unnecessary-overlays beg end))
2629 ;; If the following character is currently invisible,
2630 ;; skip all characters with that same `invisible' property value.
2631 ;; Do that over and over.
4d90d6d0 2632 (while (and (< (point) end) (invisible-p (point)))
66e2e71d 2633 (if (invisible-p (get-text-property (point) 'invisible))
cd59ea72
SM
2634 (progn
2635 (goto-char (next-single-property-change (point) 'invisible
2636 nil end))
2637 ;; if text is hidden by an `invisible' text property
2638 ;; we cannot open it at all.
2639 (setq can-be-opened nil))
2640 (when can-be-opened
2641 (let ((overlays (overlays-at (point)))
2642 ov-list
2643 o
2644 invis-prop)
2645 (while overlays
2646 (setq o (car overlays)
2647 invis-prop (overlay-get o 'invisible))
4d90d6d0 2648 (if (invisible-p invis-prop)
cd59ea72
SM
2649 (if (overlay-get o 'isearch-open-invisible)
2650 (setq ov-list (cons o ov-list))
2651 ;; We found one overlay that cannot be
2652 ;; opened, that means the whole chunk
2653 ;; cannot be opened.
2654 (setq can-be-opened nil)))
2655 (setq overlays (cdr overlays)))
2656 (if can-be-opened
2657 ;; It makes sense to append to the open
2658 ;; overlays list only if we know that this is
2659 ;; t.
2660 (setq crt-overlays (append ov-list crt-overlays)))))
2661 (goto-char (next-overlay-change (point)))))
2662 ;; See if invisibility reaches up thru END.
2663 (if (>= (point) end)
2664 (if (and can-be-opened (consp crt-overlays))
2665 (progn
2666 (setq isearch-opened-overlays
2667 (append isearch-opened-overlays crt-overlays))
2668 (mapc 'isearch-open-overlay-temporary crt-overlays)
2669 nil)
2670 (setq isearch-hidden t)))))))
08200510 2671
f2fd3261
JL
2672(defun isearch-filter-visible (beg end)
2673 "Test whether the current search hit is visible at least partially.
2674Return non-nil if the text from BEG to END is visible to Isearch as
2675determined by `isearch-range-invisible' unless invisible text can be
2676searched too when `search-invisible' is t."
5e189f39
JL
2677 (or (eq search-invisible t)
2678 (not (isearch-range-invisible beg end))))
2679
08200510 2680\f
191f025a 2681;; General utilities
08200510 2682
b78559b0
RS
2683(defun isearch-no-upper-case-p (string regexp-flag)
2684 "Return t if there are no upper case chars in STRING.
b7852303 2685If REGEXP-FLAG is non-nil, disregard letters preceded by `\\' (but not `\\\\')
b78559b0 2686since they have special meaning in a regexp."
b48ca14f 2687 (let (quote-flag (i 0) (len (length string)) found)
59057198
RS
2688 (while (and (not found) (< i len))
2689 (let ((char (aref string i)))
2690 (if (and regexp-flag (eq char ?\\))
2691 (setq quote-flag (not quote-flag))
2692 (if (and (not quote-flag) (not (eq char (downcase char))))
f4be3f89
RS
2693 (setq found t))
2694 (setq quote-flag nil)))
59057198 2695 (setq i (1+ i)))
c5f847b6
SM
2696 (not (or found
2697 ;; Even if there's no uppercase char, we want to detect the use
2698 ;; of [:upper:] or [:lower:] char-class, which indicates
2699 ;; clearly that the user cares about case distinction.
2700 (and regexp-flag (string-match "\\[:\\(upp\\|low\\)er:]" string)
2701 (condition-case err
2702 (progn
2703 (string-match (substring string 0 (match-beginning 0))
2704 "")
2705 nil)
2706 (invalid-regexp
2707 (equal "Unmatched [ or [^" (cadr err)))))))))
08200510 2708
b78559b0 2709;; Portability functions to support various Emacs versions.
8e1cae6d 2710
08200510 2711(defun isearch-text-char-description (c)
14373677 2712 (cond
cf5e4199
JL
2713 ((< c ?\s) (propertize (format "^%c" (+ c 64)) 'face 'escape-glyph))
2714 ((= c ?\^?) (propertize "^?" 'face 'escape-glyph))
14373677 2715 (t (char-to-string c))))
08200510 2716
bd1bd125 2717;; General function to unread characters or events.
99ae9e9f 2718;; Also insert them in a keyboard macro being defined.
8f90f594 2719(defun isearch-unread (&rest char-or-events)
02b2f510 2720 (mapc 'store-kbd-macro-event char-or-events)
bd1bd125
RS
2721 (setq unread-command-events
2722 (append char-or-events unread-command-events)))
08200510 2723
44336afb 2724\f
bca92193
JL
2725;; Highlighting
2726
2727(defvar isearch-overlay nil)
2728
2729(defun isearch-highlight (beg end)
704d3ae7
JL
2730 (if search-highlight
2731 (if isearch-overlay
2732 ;; Overlay already exists, just move it.
2733 (move-overlay isearch-overlay beg end (current-buffer))
2734 ;; Overlay doesn't exist, create it.
2735 (setq isearch-overlay (make-overlay beg end))
2736 ;; 1001 is higher than lazy's 1000 and ediff's 100+
2737 (overlay-put isearch-overlay 'priority 1001)
4be520fb 2738 (overlay-put isearch-overlay 'face isearch-face))))
bca92193
JL
2739
2740(defun isearch-dehighlight ()
2741 (when isearch-overlay
2742 (delete-overlay isearch-overlay)))
2743\f
191f025a
SM
2744;; isearch-lazy-highlight feature
2745;; by Bob Glickstein <http://www.zanshin.com/~bobg/>
2746
2747;; When active, *every* match for the current search string is
2748;; highlighted: the current one using the normal isearch match color
e3cde0c7 2749;; and all the others using `isearch-lazy-highlight'. The extra
191f025a
SM
2750;; highlighting makes it easier to anticipate where the cursor will
2751;; land each time you press C-s or C-r to repeat a pending search.
2752;; Highlighting of these additional matches happens in a deferred
2753;; fashion using "idle timers," so the cycles needed do not rob
2754;; isearch of its usual snappy response.
2755
2756;; IMPLEMENTATION NOTE: This depends on some isearch internals.
2757;; Specifically:
2758;; - `isearch-update' is expected to be called (at least) every time
2759;; the search string or window-start changes;
2760;; - `isearch-string' is expected to contain the current search
2761;; string as entered by the user;
2762;; - the type of the current search is expected to be given by
2763;; `isearch-word' and `isearch-regexp';
2764;; - the direction of the current search is expected to be given by
2765;; `isearch-forward';
ba653a53 2766;; - the variable `isearch-error' is expected to be true
4837b516 2767;; only if `isearch-string' is an invalid regexp.
44336afb 2768
44336afb 2769(defvar isearch-lazy-highlight-overlays nil)
c982ab21 2770(defvar isearch-lazy-highlight-wrapped nil)
f9114cec
RS
2771(defvar isearch-lazy-highlight-start-limit nil)
2772(defvar isearch-lazy-highlight-end-limit nil)
44336afb
GM
2773(defvar isearch-lazy-highlight-start nil)
2774(defvar isearch-lazy-highlight-end nil)
2775(defvar isearch-lazy-highlight-timer nil)
2776(defvar isearch-lazy-highlight-last-string nil)
c982ab21
GM
2777(defvar isearch-lazy-highlight-window nil)
2778(defvar isearch-lazy-highlight-window-start nil)
6b61353c 2779(defvar isearch-lazy-highlight-window-end nil)
46daf6c7
GM
2780(defvar isearch-lazy-highlight-case-fold-search nil)
2781(defvar isearch-lazy-highlight-regexp nil)
9a193944 2782(defvar isearch-lazy-highlight-space-regexp nil)
7ce7717b 2783(defvar isearch-lazy-highlight-word nil)
e54a1075 2784(defvar isearch-lazy-highlight-forward nil)
957e5dd1 2785(defvar isearch-lazy-highlight-error nil)
44336afb 2786
46fe9018 2787(defun lazy-highlight-cleanup (&optional force)
c982ab21 2788 "Stop lazy highlighting and remove extra highlighting from current buffer.
c1bc6bb6 2789FORCE non-nil means do it whether or not `lazy-highlight-cleanup'
c982ab21 2790is nil. This function is called when exiting an incremental search if
c1bc6bb6 2791`lazy-highlight-cleanup' is non-nil."
44336afb 2792 (interactive '(t))
c1bc6bb6 2793 (if (or force lazy-highlight-cleanup)
c982ab21
GM
2794 (while isearch-lazy-highlight-overlays
2795 (delete-overlay (car isearch-lazy-highlight-overlays))
2796 (setq isearch-lazy-highlight-overlays
2797 (cdr isearch-lazy-highlight-overlays))))
2798 (when isearch-lazy-highlight-timer
2799 (cancel-timer isearch-lazy-highlight-timer)
2800 (setq isearch-lazy-highlight-timer nil)))
44336afb 2801
6480c508
JB
2802(define-obsolete-function-alias 'isearch-lazy-highlight-cleanup
2803 'lazy-highlight-cleanup
2804 "22.1")
46fe9018 2805
d9dd1f33 2806(defun isearch-lazy-highlight-new-loop (&optional beg end)
c1bc6bb6 2807 "Cleanup any previous `lazy-highlight' loop and begin a new one.
f9114cec
RS
2808BEG and END specify the bounds within which highlighting should occur.
2809This is called when `isearch-update' is invoked (which can cause the
2810search string to change or the window to scroll). It is also used
2811by other Emacs features."
da79720c 2812 (when (and (null executing-kbd-macro)
c982ab21
GM
2813 (sit-for 0) ;make sure (window-start) is credible
2814 (or (not (equal isearch-string
2815 isearch-lazy-highlight-last-string))
2816 (not (eq (selected-window)
2817 isearch-lazy-highlight-window))
46daf6c7
GM
2818 (not (eq isearch-lazy-highlight-case-fold-search
2819 isearch-case-fold-search))
2820 (not (eq isearch-lazy-highlight-regexp
2821 isearch-regexp))
7ce7717b
JL
2822 (not (eq isearch-lazy-highlight-word
2823 isearch-word))
c982ab21 2824 (not (= (window-start)
6b61353c
KH
2825 isearch-lazy-highlight-window-start))
2826 (not (= (window-end) ; Window may have been split/joined.
e54a1075
JB
2827 isearch-lazy-highlight-window-end))
2828 (not (eq isearch-forward
957e5dd1
JL
2829 isearch-lazy-highlight-forward))
2830 ;; In case we are recovering from an error.
2831 (not (equal isearch-error
2832 isearch-lazy-highlight-error))))
c982ab21 2833 ;; something important did indeed change
46fe9018 2834 (lazy-highlight-cleanup t) ;kill old loop & remove overlays
957e5dd1 2835 (setq isearch-lazy-highlight-error isearch-error)
30c62133
JL
2836 ;; It used to check for `(not isearch-error)' here, but actually
2837 ;; lazy-highlighting might find matches to highlight even when
2838 ;; `isearch-error' is non-nil. (Bug#9918)
2839 (setq isearch-lazy-highlight-start-limit beg
2840 isearch-lazy-highlight-end-limit end)
2841 (setq isearch-lazy-highlight-window (selected-window)
2842 isearch-lazy-highlight-window-start (window-start)
2843 isearch-lazy-highlight-window-end (window-end)
2844 isearch-lazy-highlight-start (point)
2845 isearch-lazy-highlight-end (point)
2846 isearch-lazy-highlight-wrapped nil
2847 isearch-lazy-highlight-last-string isearch-string
2848 isearch-lazy-highlight-case-fold-search isearch-case-fold-search
2849 isearch-lazy-highlight-regexp isearch-regexp
2850 isearch-lazy-highlight-space-regexp search-whitespace-regexp
2851 isearch-lazy-highlight-word isearch-word
2852 isearch-lazy-highlight-forward isearch-forward)
5f3a57c9
RS
2853 (unless (equal isearch-string "")
2854 (setq isearch-lazy-highlight-timer
c1bc6bb6 2855 (run-with-idle-timer lazy-highlight-initial-delay nil
30c62133 2856 'isearch-lazy-highlight-update)))))
c982ab21
GM
2857
2858(defun isearch-lazy-highlight-search ()
2859 "Search ahead for the next or previous match, for lazy highlighting.
4b65254d 2860Attempt to do the search exactly the way the pending Isearch would."
83659220
JL
2861 (condition-case nil
2862 (let ((case-fold-search isearch-lazy-highlight-case-fold-search)
2863 (isearch-regexp isearch-lazy-highlight-regexp)
2864 (search-spaces-regexp isearch-lazy-highlight-space-regexp)
7ce7717b 2865 (isearch-word isearch-lazy-highlight-word)
83659220
JL
2866 (search-invisible nil) ; don't match invisible text
2867 (retry t)
2868 (success nil)
e54a1075
JB
2869 (isearch-forward isearch-lazy-highlight-forward)
2870 (bound (if isearch-lazy-highlight-forward
83659220
JL
2871 (min (or isearch-lazy-highlight-end-limit (point-max))
2872 (if isearch-lazy-highlight-wrapped
2873 isearch-lazy-highlight-start
2874 (window-end)))
2875 (max (or isearch-lazy-highlight-start-limit (point-min))
ba653a53 2876 (if isearch-lazy-highlight-wrapped
83659220
JL
2877 isearch-lazy-highlight-end
2878 (window-start))))))
2f669fac 2879 ;; Use a loop like in `isearch-search'.
83659220
JL
2880 (while retry
2881 (setq success (isearch-search-string
2882 isearch-lazy-highlight-last-string bound t))
2f669fac
JL
2883 ;; Clear RETRY unless the search predicate says
2884 ;; to skip this search hit.
83659220 2885 (if (or (not success)
27dd3c11
JL
2886 (= (point) bound) ; like (bobp) (eobp) in `isearch-search'.
2887 (= (match-beginning 0) (match-end 0))
2f669fac 2888 (funcall isearch-filter-predicate
83659220
JL
2889 (match-beginning 0) (match-end 0)))
2890 (setq retry nil)))
2891 success)
2892 (error nil)))
44336afb
GM
2893
2894(defun isearch-lazy-highlight-update ()
c982ab21 2895 "Update highlighting of other matches for current search."
c1bc6bb6 2896 (let ((max lazy-highlight-max-at-a-time)
c982ab21
GM
2897 (looping t)
2898 nomore)
6ee8e621
JL
2899 (with-local-quit
2900 (save-selected-window
2901 (if (and (window-live-p isearch-lazy-highlight-window)
2902 (not (eq (selected-window) isearch-lazy-highlight-window)))
2903 (select-window isearch-lazy-highlight-window))
2904 (save-excursion
2905 (save-match-data
e54a1075 2906 (goto-char (if isearch-lazy-highlight-forward
6ee8e621
JL
2907 isearch-lazy-highlight-end
2908 isearch-lazy-highlight-start))
2909 (while looping
2910 (let ((found (isearch-lazy-highlight-search)))
2911 (when max
2912 (setq max (1- max))
2913 (if (<= max 0)
2914 (setq looping nil)))
2915 (if found
2916 (let ((mb (match-beginning 0))
2917 (me (match-end 0)))
2918 (if (= mb me) ;zero-length match
e54a1075 2919 (if isearch-lazy-highlight-forward
6ee8e621
JL
2920 (if (= mb (if isearch-lazy-highlight-wrapped
2921 isearch-lazy-highlight-start
2922 (window-end)))
2923 (setq found nil)
2924 (forward-char 1))
2925 (if (= mb (if isearch-lazy-highlight-wrapped
2926 isearch-lazy-highlight-end
2927 (window-start)))
2928 (setq found nil)
2929 (forward-char -1)))
2930
2931 ;; non-zero-length match
2932 (let ((ov (make-overlay mb me)))
2933 (push ov isearch-lazy-highlight-overlays)
704d3ae7
JL
2934 ;; 1000 is higher than ediff's 100+,
2935 ;; but lower than isearch main overlay's 1001
2936 (overlay-put ov 'priority 1000)
46fe9018 2937 (overlay-put ov 'face lazy-highlight-face)
6ee8e621 2938 (overlay-put ov 'window (selected-window))))
e54a1075 2939 (if isearch-lazy-highlight-forward
6ee8e621
JL
2940 (setq isearch-lazy-highlight-end (point))
2941 (setq isearch-lazy-highlight-start (point)))))
2942
2943 ;; not found or zero-length match at the search bound
2944 (if (not found)
2945 (if isearch-lazy-highlight-wrapped
2946 (setq looping nil
2947 nomore t)
2948 (setq isearch-lazy-highlight-wrapped t)
e54a1075 2949 (if isearch-lazy-highlight-forward
6ee8e621
JL
2950 (progn
2951 (setq isearch-lazy-highlight-end (window-start))
f9114cec
RS
2952 (goto-char (max (or isearch-lazy-highlight-start-limit (point-min))
2953 (window-start))))
6ee8e621 2954 (setq isearch-lazy-highlight-start (window-end))
f9114cec
RS
2955 (goto-char (min (or isearch-lazy-highlight-end-limit (point-max))
2956 (window-end))))))))
6ee8e621
JL
2957 (unless nomore
2958 (setq isearch-lazy-highlight-timer
2c987fc2 2959 (run-at-time lazy-highlight-interval nil
6ee8e621 2960 'isearch-lazy-highlight-update)))))))))
44336afb 2961
72a69d7f 2962(defun isearch-resume (string regexp word forward message case-fold)
c40a4de1 2963 "Resume an incremental search.
72a69d7f 2964STRING is the string or regexp searched for.
c40a4de1
GM
2965REGEXP non-nil means the resumed search was a regexp search.
2966WORD non-nil means resume a word search.
2967FORWARD non-nil means resume a forward search.
2968MESSAGE is the echo-area message recorded for the search resumed.
2969CASE-FOLD non-nil means the search was case-insensitive."
2970 (isearch-mode forward regexp nil nil word)
72a69d7f 2971 (setq isearch-string string
c40a4de1
GM
2972 isearch-message message
2973 isearch-case-fold-search case-fold)
72a69d7f
JL
2974 (isearch-search)
2975 (isearch-update))
191f025a 2976
3b1e4dd1 2977;;; isearch.el ends here