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