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