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