Update copyright.
[bpt/emacs.git] / lisp / isearch.el
1 ;;; isearch.el --- incremental search minor mode.
2
3 ;; Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
4
5 ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
6
7 ;; |$Date: 1995/03/23 02:25:55 $|$Revision: 1.86 $
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
25 ;;; Commentary:
26
27 ;;;====================================================================
28 ;; Instructions
29
30 ;; For programmed use of isearch-mode, e.g. calling (isearch-forward),
31 ;; isearch-mode behaves modally and does not return until the search
32 ;; is completed. It uses a recursive-edit to behave this way. Note:
33 ;; gnus does it wrong: (call-interactively 'isearch-forward).
34
35 ;; The key bindings active within isearch-mode are defined below in
36 ;; `isearch-mode-map' which is given bindings close to the default
37 ;; characters of the original isearch.el. With `isearch-mode',
38 ;; however, you can bind multi-character keys and it should be easier
39 ;; to add new commands. One bug though: keys with meta-prefix cannot
40 ;; be longer than two chars. Also see minibuffer-local-isearch-map
41 ;; for bindings active during `isearch-edit-string'.
42
43 ;; Note to emacs version 19 users: isearch-mode should work even if
44 ;; you switch windows with the mouse, in which case isearch-mode is
45 ;; terminated automatically before the switch. This is true of lemacs
46 ;; too, with a few more cleanups I've neglected in this release.
47 ;; No one has supplied patches for epoch yet.
48
49 ;; The search ring and completion commands automatically put you in
50 ;; the minibuffer to edit the string. This gives you a chance to
51 ;; modify the search string before executing the search. There are
52 ;; three commands to terminate the editing: C-s and C-r exit the
53 ;; minibuffer and search forward and reverse respectively, while C-m
54 ;; exits and does a nonincremental search.
55
56 ;; Exiting immediately from isearch uses isearch-edit-string instead
57 ;; of nonincremental-search, if search-nonincremental-instead is non-nil.
58 ;; The name of this option should probably be changed if we decide to
59 ;; keep the behavior. No point in forcing nonincremental search until
60 ;; the last possible moment.
61
62 ;; TODO
63 ;; - Integrate the emacs 19 generalized command history.
64 ;; - Think about incorporating query-replace.
65 ;; - Hooks and options for failed search.
66
67 ;;; Change Log:
68
69 ;;; Changes before those recorded in ChangeLog:
70
71 ;;; Revision 1.4 92/09/14 16:26:02 liberte
72 ;;; Added prefix args to isearch-forward, etc. to switch between
73 ;;; string and regular expression searching.
74 ;;; Added some support for lemacs.
75 ;;; Added general isearch-highlight option - but only for lemacs so far.
76 ;;; Added support for frame switching in emacs 19.
77 ;;; Added word search option to isearch-edit-string.
78 ;;; Renamed isearch-quit to isearch-abort.
79 ;;; Numerous changes to comments and doc strings.
80 ;;;
81 ;;; Revision 1.3 92/06/29 13:10:08 liberte
82 ;;; Moved modal isearch-mode handling into isearch-mode.
83 ;;; Got rid of buffer-local isearch variables.
84 ;;; isearch-edit-string used by ring adjustments, completion, and
85 ;;; nonincremental searching. C-s and C-r are additional exit commands.
86 ;;; Renamed all regex to regexp.
87 ;;; Got rid of found-start and found-point globals.
88 ;;; Generalized handling of upper-case chars.
89
90 ;;; Revision 1.2 92/05/27 11:33:57 liberte
91 ;;; Emacs version 19 has a search ring, which is supported here.
92 ;;; Other fixes found in the version 19 isearch are included here.
93 ;;;
94 ;;; Also see variables search-caps-disable-folding,
95 ;;; search-nonincremental-instead, search-whitespace-regexp, and
96 ;;; commands isearch-toggle-regexp, isearch-edit-string.
97 ;;;
98 ;;; semi-modal isearching is supported.
99
100 ;;; Changes for 1.1
101 ;;; 3/18/92 Fixed invalid-regexp.
102 ;;; 3/18/92 Fixed yanking in regexps.
103
104 ;;; Code:
105
106 \f
107 ;;;========================================================================
108 ;;; Some additional options and constants.
109
110 (defconst search-exit-option t
111 "*Non-nil means random control characters terminate incremental search.")
112
113 (defvar search-slow-window-lines 1
114 "*Number of lines in slow search display windows.
115 These are the short windows used during incremental search on slow terminals.
116 Negative means put the slow search window at the top (normally it's at bottom)
117 and the value is minus the number of lines.")
118
119 (defvar search-slow-speed 1200
120 "*Highest terminal speed at which to use \"slow\" style incremental search.
121 This is the style where a one-line window is created to show the line
122 that the search has reached.")
123
124 (defvar search-upper-case 'not-yanks
125 "*If non-nil, upper case chars disable case fold searching.
126 That is, upper and lower case chars must match exactly.
127 This applies no matter where the chars come from, but does not
128 apply to chars in regexps that are prefixed with `\\'.
129 If this value is `not-yanks', yanked text is always downcased.")
130
131 (defvar search-nonincremental-instead t
132 "*If non-nil, do a nonincremental search instead if exiting immediately.
133 Actually, `isearch-edit-string' is called to let you enter the search
134 string, and RET terminates editing and does a nonincremental search.")
135
136 (defconst search-whitespace-regexp "\\s-+"
137 "*If non-nil, regular expression to match a sequence of whitespace chars.
138 You might want to use something like \"[ \\t\\r\\n]+\" instead.")
139
140 ;; I removed the * from the doc string because highlighting is not
141 ;; currently a clean thing to do. Once highlighting is made clean,
142 ;; this feature can be re-enabled and advertised.
143 (defvar search-highlight nil
144 "*Non-nil means incremental search highlights the current match.")
145
146 (defvar isearch-mode-hook nil
147 "Function(s) to call after starting up an incremental search.")
148
149 (defvar isearch-mode-end-hook nil
150 "Function(s) to call after terminating an incremental search.")
151
152 ;;;==================================================================
153 ;;; Search ring.
154
155 (defvar search-ring nil
156 "List of search string sequences.")
157 (defvar regexp-search-ring nil
158 "List of regular expression search string sequences.")
159
160 (defconst search-ring-max 16
161 "*Maximum length of search ring before oldest elements are thrown away.")
162 (defconst regexp-search-ring-max 16
163 "*Maximum length of regexp search ring before oldest elements are thrown away.")
164
165 (defvar search-ring-yank-pointer nil
166 "Index in `search-ring' of last string reused.
167 nil if none yet.")
168 (defvar regexp-search-ring-yank-pointer nil
169 "Index in `regexp-search-ring' of last string reused.
170 nil if none yet.")
171
172 (defvar search-ring-update nil
173 "*Non-nil if advancing or retreating in the search ring should cause search.
174 Default value, nil, means edit the string instead.")
175
176 ;;;====================================================
177 ;;; Define isearch-mode keymap.
178
179 (defvar isearch-mode-map nil
180 "Keymap for isearch-mode.")
181
182 (or isearch-mode-map
183 (let* ((i 0)
184 (map (make-keymap)))
185 (or (vectorp (nth 1 map))
186 (error "The initialization of isearch-mode-map must be updated"))
187 ;; Give this map a vector 256 long, for dense binding
188 ;; of a larger range of ordinary characters.
189 (setcar (cdr map) (make-vector 256 nil))
190
191 ;; Make function keys, etc, exit the search.
192 (define-key map [t] 'isearch-other-control-char)
193 ;; Control chars, by default, end isearch mode transparently.
194 ;; We need these explicit definitions because, in a dense keymap,
195 ;; the binding for t does not affect characters.
196 ;; We use a dense keymap to save space.
197 (while (< i ?\ )
198 (define-key map (make-string 1 i) 'isearch-other-control-char)
199 (setq i (1+ i)))
200
201 ;; Printing chars extend the search string by default.
202 (setq i ?\ )
203 (while (< i (length (nth 1 map)))
204 (define-key map (vector i) 'isearch-printing-char)
205 (setq i (1+ i)))
206
207 ;; To handle local bindings with meta char prefix keys, define
208 ;; another full keymap. This must be done for any other prefix
209 ;; keys as well, one full keymap per char of the prefix key. It
210 ;; would be simpler to disable the global keymap, and/or have a
211 ;; default local key binding for any key not otherwise bound.
212 (let ((meta-map (make-sparse-keymap)))
213 (define-key map (char-to-string meta-prefix-char) meta-map)
214 (define-key map [escape] meta-map))
215 (define-key map (vector meta-prefix-char t) 'isearch-other-meta-char)
216
217 ;; Several non-printing chars change the searching behavior.
218 (define-key map "\C-s" 'isearch-repeat-forward)
219 (define-key map "\C-r" 'isearch-repeat-backward)
220 (define-key map "\177" 'isearch-delete-char)
221 (define-key map "\C-g" 'isearch-abort)
222 ;; This assumes \e is the meta-prefix-char.
223 (or (= ?\e meta-prefix-char)
224 (error "Inconsistency in isearch.el"))
225 (define-key map "\e\e\e" 'isearch-cancel)
226 (define-key map [escape escape escape] 'isearch-cancel)
227
228 (define-key map "\C-q" 'isearch-quote-char)
229
230 (define-key map "\r" 'isearch-exit)
231 (define-key map "\C-j" 'isearch-printing-char)
232 (define-key map "\t" 'isearch-printing-char)
233 (define-key map " " 'isearch-whitespace-chars)
234
235 (define-key map "\C-w" 'isearch-yank-word)
236 (define-key map "\C-y" 'isearch-yank-line)
237
238 ;; Bind the ASCII-equivalent "function keys" explicitly to nil
239 ;; so that the default binding does not apply.
240 ;; As a result, these keys translate thru function-key-map
241 ;; as normal, and they have the effect of the equivalent ASCII char.
242 ;; We bind [escape] below.
243 (define-key map [tab] 'nil)
244 (define-key map [kp-0] 'nil)
245 (define-key map [kp-1] 'nil)
246 (define-key map [kp-2] 'nil)
247 (define-key map [kp-3] 'nil)
248 (define-key map [kp-4] 'nil)
249 (define-key map [kp-5] 'nil)
250 (define-key map [kp-6] 'nil)
251 (define-key map [kp-7] 'nil)
252 (define-key map [kp-8] 'nil)
253 (define-key map [kp-9] 'nil)
254 (define-key map [kp-add] 'nil)
255 (define-key map [kp-subtract] 'nil)
256 (define-key map [kp-multiply] 'nil)
257 (define-key map [kp-divide] 'nil)
258 (define-key map [kp-decimal] 'nil)
259 (define-key map [kp-separator] 'nil)
260 (define-key map [kp-equal] 'nil)
261 (define-key map [kp-tab] 'nil)
262 (define-key map [kp-space] 'nil)
263 (define-key map [kp-enter] 'nil)
264 (define-key map [delete] 'nil)
265 (define-key map [backspace] 'nil)
266 (define-key map [return] 'nil)
267 (define-key map [newline] 'nil)
268
269 ;; Define keys for regexp chars * ? |.
270 ;; Nothing special for + because it matches at least once.
271 (define-key map "*" 'isearch-*-char)
272 (define-key map "?" 'isearch-*-char)
273 (define-key map "|" 'isearch-|-char)
274
275 ;;; Turned off because I find I expect to get the global definition--rms.
276 ;;; ;; Instead bind C-h to special help command for isearch-mode.
277 ;;; (define-key map "\C-h" 'isearch-mode-help)
278
279 (define-key map "\M-n" 'isearch-ring-advance)
280 (define-key map "\M-p" 'isearch-ring-retreat)
281 (define-key map "\M-y" 'isearch-yank-kill)
282
283 (define-key map "\M-\t" 'isearch-complete)
284
285 ;; Switching frames should terminate isearch-mode
286 (define-key map [switch-frame] 'isearch-switch-frame-handler)
287
288 (setq isearch-mode-map map)
289 ))
290
291 ;; Some bindings you may want to put in your isearch-mode-hook.
292 ;; Suggest some alternates...
293 ;; (define-key isearch-mode-map "\C-t" 'isearch-toggle-case-fold)
294 ;; (define-key isearch-mode-map "\C-t" 'isearch-toggle-regexp)
295 ;; (define-key isearch-mode-map "\C-^" 'isearch-edit-string)
296
297
298 (defvar minibuffer-local-isearch-map nil
299 "Keymap for editing isearch strings in the minibuffer.")
300
301 (or minibuffer-local-isearch-map
302 (let ((map (copy-keymap minibuffer-local-map)))
303 (define-key map "\r" 'isearch-nonincremental-exit-minibuffer)
304 (define-key map "\M-n" 'isearch-ring-advance-edit)
305 (define-key map "\M-p" 'isearch-ring-retreat-edit)
306 (define-key map "\M-\t" 'isearch-complete-edit)
307 (define-key map "\C-s" 'isearch-forward-exit-minibuffer)
308 (define-key map "\C-r" 'isearch-reverse-exit-minibuffer)
309 (setq minibuffer-local-isearch-map map)
310 ))
311
312 ;;;========================================================
313 ;; Internal variables declared globally for byte-compiler.
314 ;; These are all set with setq while isearching
315 ;; and bound locally while editing the search string.
316
317 (defvar isearch-forward nil) ; Searching in the forward direction.
318 (defvar isearch-regexp nil) ; Searching for a regexp.
319 (defvar isearch-word nil) ; Searching for words.
320
321 (defvar isearch-cmds nil) ; Stack of search status sets.
322 (defvar isearch-string "") ; The current search string.
323 (defvar isearch-message "") ; text-char-description version of isearch-string
324
325 (defvar isearch-success t) ; Searching is currently successful.
326 (defvar isearch-invalid-regexp nil) ; Regexp not well formed.
327 (defvar isearch-within-brackets nil) ; Regexp has unclosed [.
328 (defvar isearch-other-end nil) ; Start (end) of match if forward (backward).
329 (defvar isearch-wrapped nil) ; Searching restarted from the top (bottom).
330 (defvar isearch-barrier 0)
331
332 ; case-fold-search while searching.
333 ; either nil, t, or 'yes. 'yes means the same as t except that mixed
334 ; case in the search string is ignored.
335 (defvar isearch-case-fold-search nil)
336
337 (defvar isearch-adjusted nil)
338 (defvar isearch-slow-terminal-mode nil)
339 ;;; If t, using a small window.
340 (defvar isearch-small-window nil)
341 (defvar isearch-opoint 0)
342 ;;; The window configuration active at the beginning of the search.
343 (defvar isearch-window-configuration nil)
344
345 ;; Flag to indicate a yank occurred, so don't move the cursor.
346 (defvar isearch-yank-flag nil)
347
348 ;;; A function to be called after each input character is processed.
349 ;;; (It is not called after characters that exit the search.)
350 ;;; It is only set from an optional argument to `isearch-mode'.
351 (defvar isearch-op-fun nil)
352
353 ;;; Is isearch-mode in a recursive edit for modal searching.
354 (defvar isearch-recursive-edit nil)
355
356 ;;; Should isearch be terminated after doing one search?
357 (defvar isearch-nonincremental nil)
358
359 ;; New value of isearch-forward after isearch-edit-string.
360 (defvar isearch-new-forward nil)
361
362
363 ;;;==============================================================
364 ;; Minor-mode-alist changes - kind of redundant with the
365 ;; echo area, but if isearching in multiple windows, it can be useful.
366
367 (or (assq 'isearch-mode minor-mode-alist)
368 (nconc minor-mode-alist
369 (list '(isearch-mode isearch-mode))))
370
371 (defvar isearch-mode nil) ;; Name of the minor mode, if non-nil.
372 (make-variable-buffer-local 'isearch-mode)
373
374 (define-key global-map "\C-s" 'isearch-forward)
375 (define-key esc-map "\C-s" 'isearch-forward-regexp)
376 (define-key global-map "\C-r" 'isearch-backward)
377 (define-key esc-map "\C-r" 'isearch-backward-regexp)
378
379 ;;;===============================================================
380 ;;; Entry points to isearch-mode.
381 ;;; These four functions should replace those in loaddefs.el
382 ;;; An alternative is to defalias isearch-forward etc to isearch-mode,
383 ;;; and look at this-command to set the options accordingly.
384
385 (defun isearch-forward (&optional regexp-p no-recursive-edit)
386 "\
387 Do incremental search forward.
388 With a prefix argument, do an incremental regular expression search instead.
389 \\<isearch-mode-map>
390 As you type characters, they add to the search string and are found.
391 The following non-printing keys are bound in `isearch-mode-map'.
392
393 Type \\[isearch-delete-char] to cancel characters from end of search string.
394 Type \\[isearch-exit] to exit, leaving point at location found.
395 Type LFD (C-j) to match end of line.
396 Type \\[isearch-repeat-forward] to search again forward,\
397 \\[isearch-repeat-backward] to search again backward.
398 Type \\[isearch-yank-word] to yank word from buffer onto end of search\
399 string and search for it.
400 Type \\[isearch-yank-line] to yank rest of line onto end of search string\
401 and search for it.
402 Type \\[isearch-quote-char] to quote control character to search for it.
403 \\[isearch-abort] while searching or when search has failed cancels input\
404 back to what has
405 been found successfully.
406 \\[isearch-abort] when search is successful aborts and moves point to\
407 starting point.
408
409 Also supported is a search ring of the previous 16 search strings.
410 Type \\[isearch-ring-advance] to search for the next item in the search ring.
411 Type \\[isearch-ring-retreat] to search for the previous item in the search\
412 ring.
413 Type \\[isearch-complete] to complete the search string using the search ring.
414
415 The above keys, bound in `isearch-mode-map', are often controlled by
416 options; do M-x apropos on search-.* to find them.
417 Other control and meta characters terminate the search
418 and are then executed normally (depending on `search-exit-option').
419
420 If this function is called non-interactively, it does not return to
421 the calling function until the search is done."
422
423 (interactive "P\np")
424 (isearch-mode t (not (null regexp-p)) nil (not no-recursive-edit)))
425
426 (defun isearch-forward-regexp (&optional not-regexp no-recursive-edit)
427 "\
428 Do incremental search forward for regular expression.
429 With a prefix argument, do a regular string search instead.
430 Like ordinary incremental search except that your input
431 is treated as a regexp. See \\[isearch-forward] for more info."
432 (interactive "P\np")
433 (isearch-mode t (null not-regexp) nil (not no-recursive-edit)))
434
435 (defun isearch-backward (&optional regexp-p no-recursive-edit)
436 "\
437 Do incremental search backward.
438 With a prefix argument, do a regular expression search instead.
439 See \\[isearch-forward] for more information."
440 (interactive "P\np")
441 (isearch-mode nil (not (null regexp-p)) nil (not no-recursive-edit)))
442
443 (defun isearch-backward-regexp (&optional not-regexp no-recursive-edit)
444 "\
445 Do incremental search backward for regular expression.
446 With a prefix argument, do a regular string search instead.
447 Like ordinary incremental search except that your input
448 is treated as a regexp. See \\[isearch-forward] for more info."
449 (interactive "P\np")
450 (isearch-mode nil (null not-regexp) nil (not no-recursive-edit)))
451
452
453 (defun isearch-mode-help ()
454 (interactive)
455 (describe-function 'isearch-forward)
456 (isearch-update))
457
458 \f
459 ;;;==================================================================
460 ;; isearch-mode only sets up incremental search for the minor mode.
461 ;; All the work is done by the isearch-mode commands.
462
463 ;; Not used yet:
464 ;;(defconst isearch-commands '(isearch-forward isearch-backward
465 ;; isearch-forward-regexp isearch-backward-regexp)
466 ;; "List of commands for which isearch-mode does not recursive-edit.")
467
468
469 (defun isearch-mode (forward &optional regexp op-fun recursive-edit word-p)
470 "Start isearch minor mode. Called by isearch-forward, etc."
471
472 ;; Initialize global vars.
473 (setq isearch-forward forward
474 isearch-regexp regexp
475 isearch-word word-p
476 isearch-op-fun op-fun
477 isearch-case-fold-search case-fold-search
478 isearch-string ""
479 isearch-message ""
480 isearch-cmds nil
481 isearch-success t
482 isearch-wrapped nil
483 isearch-barrier (point)
484 isearch-adjusted nil
485 isearch-yank-flag nil
486 isearch-invalid-regexp nil
487 isearch-within-brackets nil
488 isearch-slow-terminal-mode (and (<= baud-rate search-slow-speed)
489 (> (window-height)
490 (* 4 search-slow-window-lines)))
491 isearch-other-end nil
492 isearch-small-window nil
493
494 isearch-opoint (point)
495 search-ring-yank-pointer nil
496 regexp-search-ring-yank-pointer nil)
497 (setq isearch-window-configuration
498 (if isearch-slow-terminal-mode (current-window-configuration) nil))
499
500 (setq isearch-mode " Isearch") ;; forward? regexp?
501 (set-buffer-modified-p (buffer-modified-p)) ; update modeline
502
503 (isearch-push-state)
504
505 (make-local-variable 'overriding-local-map)
506 (setq overriding-local-map isearch-mode-map)
507 (isearch-update)
508 (run-hooks 'isearch-mode-hook)
509
510 (setq mouse-leave-buffer-hook '(isearch-done))
511
512 ;; isearch-mode can be made modal (in the sense of not returning to
513 ;; the calling function until searching is completed) by entering
514 ;; a recursive-edit and exiting it when done isearching.
515 (if recursive-edit
516 (let ((isearch-recursive-edit t))
517 (recursive-edit)))
518 isearch-success)
519
520
521 ;;;====================================================
522 ;; Some high level utilities. Others below.
523
524 (defun isearch-update ()
525 ;; Called after each command to update the display.
526 (if (null unread-command-events)
527 (progn
528 (if (not (input-pending-p))
529 (isearch-message))
530 (if (and isearch-slow-terminal-mode
531 (not (or isearch-small-window
532 (pos-visible-in-window-p))))
533 (let ((found-point (point)))
534 (setq isearch-small-window t)
535 (move-to-window-line 0)
536 (let ((window-min-height 1))
537 (split-window nil (if (< search-slow-window-lines 0)
538 (1+ (- search-slow-window-lines))
539 (- (window-height)
540 (1+ search-slow-window-lines)))))
541 (if (< search-slow-window-lines 0)
542 (progn (vertical-motion (- 1 search-slow-window-lines))
543 (set-window-start (next-window) (point))
544 (set-window-hscroll (next-window)
545 (window-hscroll))
546 (set-window-hscroll (selected-window) 0))
547 (other-window 1))
548 (goto-char found-point)))
549 (if isearch-other-end
550 (if (< isearch-other-end (point)) ; isearch-forward?
551 (isearch-highlight isearch-other-end (point))
552 (isearch-highlight (point) isearch-other-end))
553 (isearch-dehighlight nil))
554 ))
555 (setq ;; quit-flag nil not for isearch-mode
556 isearch-adjusted nil
557 isearch-yank-flag nil)
558 )
559
560 (defun isearch-done (&optional nopush edit)
561 (setq mouse-leave-buffer-hook nil)
562 ;; Called by all commands that terminate isearch-mode.
563 ;; If NOPUSH is non-nil, we don't push the string on the search ring.
564 (setq overriding-local-map nil)
565 ;; (setq pre-command-hook isearch-old-pre-command-hook) ; for lemacs
566 (isearch-dehighlight t)
567 (let ((found-start (window-start (selected-window)))
568 (found-point (point)))
569 (if isearch-window-configuration
570 (set-window-configuration isearch-window-configuration))
571
572 (if isearch-small-window
573 (goto-char found-point)
574 ;; Exiting the save-window-excursion clobbers window-start; restore it.
575 (set-window-start (selected-window) found-start t))
576
577 ;; If there was movement, mark the starting position.
578 ;; Maybe should test difference between and set mark iff > threshold.
579 (if (/= (point) isearch-opoint)
580 (or (and transient-mark-mode mark-active)
581 (progn
582 (push-mark isearch-opoint t)
583 (or executing-macro (> (minibuffer-depth) 0)
584 (message "Mark saved where search started"))))))
585
586 (setq isearch-mode nil)
587 (set-buffer-modified-p (buffer-modified-p)) ;; update modeline
588
589 (if (and (> (length isearch-string) 0) (not nopush))
590 ;; Update the ring data.
591 (isearch-update-ring isearch-string isearch-regexp))
592
593 (run-hooks 'isearch-mode-end-hook)
594 (and (not edit) isearch-recursive-edit (exit-recursive-edit)))
595
596 (defun isearch-update-ring (string &optional regexp)
597 "Add STRING to the beginning of the search ring.
598 REGEXP says which ring to use."
599 (if regexp
600 (if (or (null regexp-search-ring)
601 (not (string= isearch-string (car regexp-search-ring))))
602 (progn
603 (setq regexp-search-ring
604 (cons isearch-string regexp-search-ring))
605 (if (> (length regexp-search-ring) regexp-search-ring-max)
606 (setcdr (nthcdr (1- search-ring-max) regexp-search-ring)
607 nil))))
608 (if (or (null search-ring)
609 (not (string= isearch-string (car search-ring))))
610 (progn
611 (setq search-ring (cons isearch-string search-ring))
612 (if (> (length search-ring) search-ring-max)
613 (setcdr (nthcdr (1- search-ring-max) search-ring) nil))))))
614
615 ;;;=======================================================
616 ;;; Switching buffers should first terminate isearch-mode.
617 ;;; This is done quite differently for each variant of emacs.
618 ;;; For lemacs, see Exiting in lemacs below
619
620 ;; For Emacs 19, the frame switch event is handled.
621 (defun isearch-switch-frame-handler ()
622 (interactive) ;; Is this necessary?
623 ;; First terminate isearch-mode.
624 (isearch-done)
625 (handle-switch-frame (car (cdr (isearch-last-command-char)))))
626
627 ;;;========================================================
628
629 \f
630 ;;;====================================================
631 ;; Commands active while inside of the isearch minor mode.
632
633 (defun isearch-exit ()
634 "Exit search normally.
635 However, if this is the first command after starting incremental
636 search and `search-nonincremental-instead' is non-nil, do a
637 nonincremental search instead via `isearch-edit-string'."
638 (interactive)
639 (if (and search-nonincremental-instead
640 (= 0 (length isearch-string)))
641 (let ((isearch-nonincremental t))
642 (isearch-edit-string)))
643 (isearch-done))
644
645
646 (defun isearch-edit-string ()
647 "Edit the search string in the minibuffer.
648 The following additional command keys are active while editing.
649 \\<minibuffer-local-isearch-map>
650 \\[exit-minibuffer] to resume incremental searching with the edited string.
651 \\[isearch-nonincremental-exit-minibuffer] to do one nonincremental search.
652 \\[isearch-forward-exit-minibuffer] to resume isearching forward.
653 \\[isearch-reverse-exit-minibuffer] to resume isearching backward.
654 \\[isearch-ring-advance-edit] to replace the search string with the next item in the search ring.
655 \\[isearch-ring-retreat-edit] to replace the search string with the previous item in the search ring.
656 \\[isearch-complete-edit] to complete the search string using the search ring.
657 \\<isearch-mode-map>
658 If first char entered is \\[isearch-yank-word], then do word search instead."
659
660 ;; This code is very hairy for several reasons, explained in the code.
661 ;; Mainly, isearch-mode must be terminated while editing and then restarted.
662 ;; If there were a way to catch any change of buffer from the minibuffer,
663 ;; this could be simplified greatly.
664 ;; Editing doesn't back up the search point. Should it?
665 (interactive)
666 (condition-case err
667 (let ((isearch-nonincremental isearch-nonincremental)
668
669 ;; Locally bind all isearch global variables to protect them
670 ;; from recursive isearching.
671 ;; isearch-string -message and -forward are not bound
672 ;; so they may be changed. Instead, save the values.
673 (isearch-new-string isearch-string)
674 (isearch-new-message isearch-message)
675 (isearch-new-forward isearch-forward)
676 (isearch-new-word isearch-word)
677
678 (isearch-regexp isearch-regexp)
679 (isearch-op-fun isearch-op-fun)
680 (isearch-cmds isearch-cmds)
681 (isearch-success isearch-success)
682 (isearch-wrapped isearch-wrapped)
683 (isearch-barrier isearch-barrier)
684 (isearch-adjusted isearch-adjusted)
685 (isearch-yank-flag isearch-yank-flag)
686 (isearch-invalid-regexp isearch-invalid-regexp)
687 (isearch-within-brackets isearch-within-brackets)
688 (isearch-other-end isearch-other-end)
689 (isearch-opoint isearch-opoint)
690 (isearch-slow-terminal-mode isearch-slow-terminal-mode)
691 (isearch-small-window isearch-small-window)
692 (isearch-recursive-edit isearch-recursive-edit)
693 ;; Save current configuration so we can restore it here.
694 (isearch-window-configuration (current-window-configuration))
695 )
696
697 ;; Actually terminate isearching until editing is done.
698 ;; This is so that the user can do anything without failure,
699 ;; like switch buffers and start another isearch, and return.
700 (condition-case err
701 (isearch-done t t)
702 (exit nil)) ; was recursive editing
703
704 (isearch-message) ;; for read-char
705 (unwind-protect
706 (let* (;; Why does following read-char echo?
707 ;;(echo-keystrokes 0) ;; not needed with above message
708 (e (let ((cursor-in-echo-area t))
709 (read-event)))
710 ;; Binding minibuffer-history-symbol to nil is a work-around
711 ;; for some incompatibility with gmhist.
712 (minibuffer-history-symbol)
713 (message-log-max nil))
714 ;; If the first character the user types when we prompt them
715 ;; for a string is the yank-word character, then go into
716 ;; word-search mode. Otherwise unread that character and
717 ;; read a key the normal way.
718 ;; Word search does not apply (yet) to regexp searches,
719 ;; no check is made here.
720 (message (isearch-message-prefix nil nil t))
721 (if (eq 'isearch-yank-word
722 (lookup-key isearch-mode-map (vector e)))
723 (setq isearch-word t ;; so message-prefix is right
724 isearch-new-word t)
725 (isearch-unread e))
726 (setq cursor-in-echo-area nil)
727 (setq isearch-new-string
728 (let (junk-ring)
729 (read-from-minibuffer
730 (isearch-message-prefix nil nil isearch-nonincremental)
731 isearch-string
732 minibuffer-local-isearch-map nil
733 'junk-ring))
734 isearch-new-message
735 (mapconcat 'isearch-text-char-description
736 isearch-new-string "")))
737 ;; Always resume isearching by restarting it.
738 (isearch-mode isearch-forward
739 isearch-regexp
740 isearch-op-fun
741 nil
742 isearch-word)
743
744 ;; Copy new local values to isearch globals
745 (setq isearch-string isearch-new-string
746 isearch-message isearch-new-message
747 isearch-forward isearch-new-forward
748 isearch-word isearch-new-word))
749
750 ;; Empty isearch-string means use default.
751 (if (= 0 (length isearch-string))
752 (setq isearch-string (car (if isearch-regexp regexp-search-ring
753 search-ring)))
754 ;; This used to set the last search string,
755 ;; but I think it is not right to do that here.
756 ;; Only the string actually used should be saved.
757 )
758
759 ;; Reinvoke the pending search.
760 (isearch-push-state)
761 (isearch-search)
762 (isearch-update)
763 (if isearch-nonincremental
764 (progn
765 ;; (sit-for 1) ;; needed if isearch-done does: (message "")
766 (isearch-done))))
767
768 (quit ; handle abort-recursive-edit
769 (isearch-abort) ;; outside of let to restore outside global values
770 )))
771
772 (defun isearch-nonincremental-exit-minibuffer ()
773 (interactive)
774 (setq isearch-nonincremental t)
775 (exit-minibuffer))
776
777 (defun isearch-forward-exit-minibuffer ()
778 (interactive)
779 (setq isearch-new-forward t)
780 (exit-minibuffer))
781
782 (defun isearch-reverse-exit-minibuffer ()
783 (interactive)
784 (setq isearch-new-forward nil)
785 (exit-minibuffer))
786
787 (defun isearch-cancel ()
788 "Terminate the search and go back to the starting point."
789 (interactive)
790 (goto-char isearch-opoint)
791 (isearch-done t)
792 (signal 'quit nil)) ; and pass on quit signal
793
794 (defun isearch-abort ()
795 "Abort incremental search mode if searching is successful, signalling quit.
796 Otherwise, revert to previous successful search and continue searching.
797 Use `isearch-exit' to quit without signalling."
798 (interactive)
799 ;; (ding) signal instead below, if quitting
800 (discard-input)
801 (if isearch-success
802 ;; If search is successful, move back to starting point
803 ;; and really do quit.
804 (progn (goto-char isearch-opoint)
805 (setq isearch-success nil)
806 (isearch-done t) ; exit isearch
807 (signal 'quit nil)) ; and pass on quit signal
808 ;; If search is failing, or has an incomplete regexp,
809 ;; rub out until it is once more successful.
810 (while (or (not isearch-success) isearch-invalid-regexp)
811 (isearch-pop-state))
812 (isearch-update)))
813
814 (defun isearch-repeat (direction)
815 ;; Utility for isearch-repeat-forward and -backward.
816 (if (eq isearch-forward (eq direction 'forward))
817 ;; C-s in forward or C-r in reverse.
818 (if (equal isearch-string "")
819 ;; If search string is empty, use last one.
820 (setq isearch-string
821 (or (if isearch-regexp
822 (car regexp-search-ring)
823 (car search-ring))
824 "")
825 isearch-message
826 (mapconcat 'isearch-text-char-description
827 isearch-string ""))
828 ;; If already have what to search for, repeat it.
829 (or isearch-success
830 (progn
831
832 (goto-char (if isearch-forward (point-min) (point-max)))
833 (setq isearch-wrapped t))))
834 ;; C-s in reverse or C-r in forward, change direction.
835 (setq isearch-forward (not isearch-forward)))
836
837 (setq isearch-barrier (point)) ; For subsequent \| if regexp.
838
839 (if (equal isearch-string "")
840 (setq isearch-success t)
841 (if (and isearch-success (equal (match-end 0) (match-beginning 0)))
842 ;; If repeating a search that found
843 ;; an empty string, ensure we advance.
844 (if (if isearch-forward (eobp) (bobp))
845 ;; If there's nowhere to advance to, fail (and wrap next time).
846 (progn
847 (setq isearch-success nil)
848 (ding))
849 (forward-char (if isearch-forward 1 -1))
850 (isearch-search))
851 (isearch-search)))
852
853 (isearch-push-state)
854 (isearch-update))
855
856 (defun isearch-repeat-forward ()
857 "Repeat incremental search forwards."
858 (interactive)
859 (isearch-repeat 'forward))
860
861 (defun isearch-repeat-backward ()
862 "Repeat incremental search backwards."
863 (interactive)
864 (isearch-repeat 'backward))
865
866 (defun isearch-toggle-regexp ()
867 "Toggle regexp searching on or off."
868 ;; The status stack is left unchanged.
869 (interactive)
870 (setq isearch-regexp (not isearch-regexp))
871 (if isearch-regexp (setq isearch-word nil))
872 (isearch-update))
873
874 (defun isearch-toggle-case-fold ()
875 "Toggle case folding in searching on or off."
876 (interactive)
877 (setq isearch-case-fold-search
878 (if isearch-case-fold-search nil 'yes))
879 (let ((message-log-max nil))
880 (message "%s%s [case %ssensitive]"
881 (isearch-message-prefix nil nil isearch-nonincremental)
882 isearch-message
883 (if isearch-case-fold-search "in" "")))
884 (setq isearch-adjusted t)
885 (sit-for 1)
886 (isearch-update))
887
888 (defun isearch-delete-char ()
889 "Discard last input item and move point back.
890 If no previous match was done, just beep."
891 (interactive)
892 (if (null (cdr isearch-cmds))
893 (ding)
894 (isearch-pop-state))
895 (isearch-update))
896
897
898 (defun isearch-yank (chunk)
899 ;; Helper for isearch-yank-word and isearch-yank-line
900 ;; CHUNK should be word, line or kill.
901 (let ((string (cond
902 ((eq chunk 'kill)
903 (current-kill 0))
904 (t
905 (save-excursion
906 (and (not isearch-forward) isearch-other-end
907 (goto-char isearch-other-end))
908 (buffer-substring
909 (point)
910 (save-excursion
911 (cond
912 ((eq chunk 'word)
913 (forward-word 1))
914 ((eq chunk 'line)
915 (end-of-line)))
916 (point))))))))
917 ;; Downcase the string if not supposed to case-fold yanked strings.
918 (if (and isearch-case-fold-search
919 (eq 'not-yanks search-upper-case))
920 (setq string (downcase string)))
921 (if isearch-regexp (setq string (regexp-quote string)))
922 (setq isearch-string (concat isearch-string string)
923 isearch-message
924 (concat isearch-message
925 (mapconcat 'isearch-text-char-description
926 string ""))
927 ;; Don't move cursor in reverse search.
928 isearch-yank-flag t))
929 (isearch-search-and-update))
930
931 (defun isearch-yank-kill ()
932 "Pull string from kill ring into search string."
933 (interactive)
934 (isearch-yank 'kill))
935
936 (defun isearch-yank-word ()
937 "Pull next word from buffer into search string."
938 (interactive)
939 (isearch-yank 'word))
940
941 (defun isearch-yank-line ()
942 "Pull rest of line from buffer into search string."
943 (interactive)
944 (isearch-yank 'line))
945
946
947 (defun isearch-search-and-update ()
948 ;; Do the search and update the display.
949 (if (and (not isearch-success)
950 ;; unsuccessful regexp search may become
951 ;; successful by addition of characters which
952 ;; make isearch-string valid
953 (not isearch-regexp))
954 nil
955 ;; In reverse search, adding stuff at
956 ;; the end may cause zero or many more chars to be
957 ;; matched, in the string following point.
958 ;; Allow all those possibilities without moving point as
959 ;; long as the match does not extend past search origin.
960 (if (and (not isearch-forward) (not isearch-adjusted)
961 (condition-case ()
962 (looking-at (if isearch-regexp isearch-string
963 (regexp-quote isearch-string)))
964 (error nil))
965 (or isearch-yank-flag
966 (<= (match-end 0)
967 (min isearch-opoint isearch-barrier))))
968 (setq isearch-success t
969 isearch-invalid-regexp nil
970 isearch-within-brackets nil
971 isearch-other-end (match-end 0))
972 ;; Not regexp, not reverse, or no match at point.
973 (if (and isearch-other-end (not isearch-adjusted))
974 (goto-char (if isearch-forward isearch-other-end
975 (min isearch-opoint
976 isearch-barrier
977 (1+ isearch-other-end)))))
978 (isearch-search)
979 ))
980 (isearch-push-state)
981 (if isearch-op-fun (funcall isearch-op-fun))
982 (isearch-update))
983
984
985 ;; *, ?, and | chars can make a regexp more liberal.
986 ;; They can make a regexp match sooner or make it succeed instead of failing.
987 ;; So go back to place last successful search started
988 ;; or to the last ^S/^R (barrier), whichever is nearer.
989 ;; + needs no special handling because the string must match at least once.
990
991 (defun isearch-*-char ()
992 "Handle * and ? specially in regexps."
993 (interactive)
994 (if isearch-regexp
995
996 (progn
997 (setq isearch-adjusted t)
998 (let ((cs (nth (if isearch-forward
999 5 ; isearch-other-end
1000 2) ; saved (point)
1001 (car (cdr isearch-cmds)))))
1002 ;; (car isearch-cmds) is after last search;
1003 ;; (car (cdr isearch-cmds)) is from before it.
1004 (setq cs (or cs isearch-barrier))
1005 (goto-char
1006 (if isearch-forward
1007 (max cs isearch-barrier)
1008 (min cs isearch-barrier))))))
1009 (isearch-process-search-char (isearch-last-command-char)))
1010
1011
1012 (defun isearch-|-char ()
1013 "If in regexp search, jump to the barrier."
1014 (interactive)
1015 (if isearch-regexp
1016 (progn
1017 (setq isearch-adjusted t)
1018 (goto-char isearch-barrier)))
1019 (isearch-process-search-char (isearch-last-command-char)))
1020
1021
1022 (defalias 'isearch-other-control-char 'isearch-other-meta-char)
1023
1024 (defun isearch-other-meta-char ()
1025 "Exit the search normally and reread this key sequence.
1026 But only if `search-exit-option' is non-nil, the default.
1027 If it is the symbol `edit', the search string is edited in the minibuffer
1028 and the meta character is unread so that it applies to editing the string."
1029 (interactive)
1030 (cond ((eq search-exit-option 'edit)
1031 (let ((key (this-command-keys)))
1032 (apply 'isearch-unread (listify-key-sequence key)))
1033 (isearch-edit-string))
1034 (search-exit-option
1035 (let* ((key (this-command-keys))
1036 (main-event (aref key 0))
1037 window)
1038 (apply 'isearch-unread (listify-key-sequence key))
1039 ;; Properly handle scroll-bar and mode-line clicks
1040 ;; for which a dummy prefix event was generated as (aref key 0).
1041 (and (> (length key) 1)
1042 (symbolp (aref key 0))
1043 (listp (aref key 1))
1044 (not (numberp (posn-point (event-start (aref key 1)))))
1045 ;; Convert the event back into its raw form,
1046 ;; with the dummy prefix implicit in the mouse event,
1047 ;; so it will get split up once again.
1048 (progn (setq unread-command-events
1049 (cdr unread-command-events))
1050 (setq main-event (car unread-command-events))
1051 (setcar (cdr (event-start main-event))
1052 (car (nth 1 (event-start main-event))))))
1053 ;; If we got a mouse click, maybe it was read with the buffer
1054 ;; it was clicked on. If so, that buffer, not the current one,
1055 ;; is in isearch mode. So end the search in that buffer.
1056 (if (and (listp main-event)
1057 (setq window (posn-window (event-start main-event)))
1058 (windowp window))
1059 (save-excursion
1060 (set-buffer (window-buffer window))
1061 (isearch-done))
1062 (isearch-done))))
1063 (t;; otherwise nil
1064 (isearch-process-search-string (this-command-keys)
1065 (this-command-keys)))))
1066
1067 (defun isearch-quote-char ()
1068 "Quote special characters for incremental search."
1069 (interactive)
1070 (isearch-process-search-char (read-quoted-char (isearch-message t))))
1071
1072 (defun isearch-return-char ()
1073 "Convert return into newline for incremental search.
1074 Obsolete."
1075 (interactive)
1076 (isearch-process-search-char ?\n))
1077
1078 (defun isearch-printing-char ()
1079 "Add this ordinary printing character to the search string and search."
1080 (interactive)
1081 (isearch-process-search-char (isearch-last-command-char)))
1082
1083 (defun isearch-whitespace-chars ()
1084 "Match all whitespace chars, if in regexp mode.
1085 If you want to search for just a space, type C-q SPC."
1086 (interactive)
1087 (if isearch-regexp
1088 (if (and search-whitespace-regexp (not isearch-within-brackets))
1089 (isearch-process-search-string search-whitespace-regexp " ")
1090 (isearch-printing-char))
1091 (progn
1092 ;; This way of doing word search doesn't correctly extend current search.
1093 ;; (setq isearch-word t)
1094 ;; (setq isearch-adjusted t)
1095 ;; (goto-char isearch-barrier)
1096 (isearch-printing-char))))
1097
1098 (defun isearch-process-search-char (char)
1099 ;; Append the char to the search string, update the message and re-search.
1100 (isearch-process-search-string
1101 (isearch-char-to-string char)
1102 (isearch-text-char-description char)))
1103
1104 (defun isearch-process-search-string (string message)
1105 (setq isearch-string (concat isearch-string string)
1106 isearch-message (concat isearch-message message))
1107 (isearch-search-and-update))
1108
1109 \f
1110 ;;===========================================================
1111 ;; Search Ring
1112
1113 (defun isearch-ring-adjust1 (advance)
1114 ;; Helper for isearch-ring-adjust
1115 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
1116 (length (length ring))
1117 (yank-pointer-name (if isearch-regexp
1118 'regexp-search-ring-yank-pointer
1119 'search-ring-yank-pointer))
1120 (yank-pointer (eval yank-pointer-name)))
1121 (if (zerop length)
1122 ()
1123 (set yank-pointer-name
1124 (setq yank-pointer
1125 (mod (+ (or yank-pointer 0)
1126 (if advance -1 1))
1127 length)))
1128 (setq isearch-string (nth yank-pointer ring)
1129 isearch-message (mapconcat 'isearch-text-char-description
1130 isearch-string "")))))
1131
1132 (defun isearch-ring-adjust (advance)
1133 ;; Helper for isearch-ring-advance and isearch-ring-retreat
1134 (if (cdr isearch-cmds) ;; is there more than one thing on stack?
1135 (isearch-pop-state))
1136 (isearch-ring-adjust1 advance)
1137 (isearch-push-state)
1138 (if search-ring-update
1139 (progn
1140 (isearch-search)
1141 (isearch-update))
1142 (isearch-edit-string)
1143 ))
1144
1145 (defun isearch-ring-advance ()
1146 "Advance to the next search string in the ring."
1147 ;; This could be more general to handle a prefix arg, but who would use it.
1148 (interactive)
1149 (isearch-ring-adjust 'advance))
1150
1151 (defun isearch-ring-retreat ()
1152 "Retreat to the previous search string in the ring."
1153 (interactive)
1154 (isearch-ring-adjust nil))
1155
1156 (defun isearch-ring-advance-edit (n)
1157 "Insert the next element of the search history into the minibuffer."
1158 (interactive "p")
1159 (let* ((yank-pointer-name (if isearch-regexp
1160 'regexp-search-ring-yank-pointer
1161 'search-ring-yank-pointer))
1162 (yank-pointer (eval yank-pointer-name))
1163 (ring (if isearch-regexp regexp-search-ring search-ring))
1164 (length (length ring)))
1165 (if (zerop length)
1166 ()
1167 (set yank-pointer-name
1168 (setq yank-pointer
1169 (mod (- (or yank-pointer 0) n)
1170 length)))
1171
1172 (erase-buffer)
1173 (insert (nth yank-pointer ring))
1174 (goto-char (point-max)))))
1175
1176 (defun isearch-ring-retreat-edit (n)
1177 "Inserts the previous element of the search history into the minibuffer."
1178 (interactive "p")
1179 (isearch-ring-advance-edit (- n)))
1180
1181 ;;(defun isearch-ring-adjust-edit (advance)
1182 ;; "Use the next or previous search string in the ring while in minibuffer."
1183 ;; (isearch-ring-adjust1 advance)
1184 ;; (erase-buffer)
1185 ;; (insert isearch-string))
1186
1187 ;;(defun isearch-ring-advance-edit ()
1188 ;; (interactive)
1189 ;; (isearch-ring-adjust-edit 'advance))
1190
1191 ;;(defun isearch-ring-retreat-edit ()
1192 ;; "Retreat to the previous search string in the ring while in the minibuffer."
1193 ;; (interactive)
1194 ;; (isearch-ring-adjust-edit nil))
1195
1196
1197 (defun isearch-complete1 ()
1198 ;; Helper for isearch-complete and isearch-complete-edit
1199 ;; Return t if completion OK, nil if no completion exists.
1200 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
1201 (alist (mapcar (function (lambda (string) (list string))) ring))
1202 (completion-ignore-case case-fold-search)
1203 (completion (try-completion isearch-string alist)))
1204 (cond
1205 ((eq completion t)
1206 ;; isearch-string stays the same
1207 t)
1208 ((or completion ; not nil, must be a string
1209 (= 0 (length isearch-string))) ; shouldnt have to say this
1210 (if (equal completion isearch-string) ;; no extension?
1211 (if completion-auto-help
1212 (with-output-to-temp-buffer "*Isearch completions*"
1213 (display-completion-list
1214 (all-completions isearch-string alist))))
1215 (setq isearch-string completion))
1216 t)
1217 (t
1218 (message "No completion") ; waits a second if in minibuffer
1219 nil))))
1220
1221 (defun isearch-complete ()
1222 "Complete the search string from the strings on the search ring.
1223 The completed string is then editable in the minibuffer.
1224 If there is no completion possible, say so and continue searching."
1225 (interactive)
1226 (if (isearch-complete1)
1227 (isearch-edit-string)
1228 ;; else
1229 (sit-for 1)
1230 (isearch-update)))
1231
1232 (defun isearch-complete-edit ()
1233 "Same as `isearch-complete' except in the minibuffer."
1234 (interactive)
1235 (setq isearch-string (buffer-string))
1236 (if (isearch-complete1)
1237 (progn
1238 (erase-buffer)
1239 (insert isearch-string))))
1240
1241 \f
1242 ;;;==============================================================
1243 ;; The search status stack (and isearch window-local variables, not used).
1244 ;; Need a structure for this.
1245
1246 (defun isearch-top-state ()
1247 (let ((cmd (car isearch-cmds)))
1248 (setq isearch-string (car cmd)
1249 isearch-message (car (cdr cmd))
1250 isearch-success (nth 3 cmd)
1251 isearch-forward (nth 4 cmd)
1252 isearch-other-end (nth 5 cmd)
1253 isearch-word (nth 6 cmd)
1254 isearch-invalid-regexp (nth 7 cmd)
1255 isearch-wrapped (nth 8 cmd)
1256 isearch-barrier (nth 9 cmd)
1257 isearch-within-brackets (nth 10 cmd)
1258 isearch-case-fold-search (nth 11 cmd))
1259 (goto-char (car (cdr (cdr cmd))))))
1260
1261 (defun isearch-pop-state ()
1262 (setq isearch-cmds (cdr isearch-cmds))
1263 (isearch-top-state)
1264 )
1265
1266 (defun isearch-push-state ()
1267 (setq isearch-cmds
1268 (cons (list isearch-string isearch-message (point)
1269 isearch-success isearch-forward isearch-other-end
1270 isearch-word
1271 isearch-invalid-regexp isearch-wrapped isearch-barrier
1272 isearch-within-brackets isearch-case-fold-search)
1273 isearch-cmds)))
1274
1275 \f
1276 ;;;==================================================================
1277 ;; Message string
1278
1279 (defun isearch-message (&optional c-q-hack ellipsis)
1280 ;; Generate and print the message string.
1281 (let ((cursor-in-echo-area ellipsis)
1282 (m (concat
1283 (isearch-message-prefix c-q-hack ellipsis isearch-nonincremental)
1284 isearch-message
1285 (isearch-message-suffix c-q-hack ellipsis)
1286 )))
1287 (if c-q-hack
1288 m
1289 (let ((message-log-max nil))
1290 (message "%s" m)))))
1291
1292 (defun isearch-message-prefix (&optional c-q-hack ellipsis nonincremental)
1293 ;; If about to search, and previous search regexp was invalid,
1294 ;; check that it still is. If it is valid now,
1295 ;; let the message we display while searching say that it is valid.
1296 (and isearch-invalid-regexp ellipsis
1297 (condition-case ()
1298 (progn (re-search-forward isearch-string (point) t)
1299 (setq isearch-invalid-regexp nil
1300 isearch-within-brackets nil))
1301 (error nil)))
1302 ;; If currently failing, display no ellipsis.
1303 (or isearch-success (setq ellipsis nil))
1304 (let ((m (concat (if isearch-success "" "failing ")
1305 (if isearch-wrapped "wrapped ")
1306 (if isearch-word "word " "")
1307 (if isearch-regexp "regexp " "")
1308 (if nonincremental "search" "I-search")
1309 (if isearch-forward ": " " backward: ")
1310 )))
1311 (aset m 0 (upcase (aref m 0)))
1312 m))
1313
1314
1315 (defun isearch-message-suffix (&optional c-q-hack ellipsis)
1316 (concat (if c-q-hack "^Q" "")
1317 (if isearch-invalid-regexp
1318 (concat " [" isearch-invalid-regexp "]")
1319 "")))
1320
1321 \f
1322 ;;;========================================================
1323 ;;; Searching
1324
1325 (defun isearch-search ()
1326 ;; Do the search with the current search string.
1327 (isearch-message nil t)
1328 (if (and (eq isearch-case-fold-search t) search-upper-case)
1329 (setq isearch-case-fold-search
1330 (isearch-no-upper-case-p isearch-string isearch-regexp)))
1331 (condition-case lossage
1332 (let ((inhibit-quit nil)
1333 (case-fold-search isearch-case-fold-search))
1334 (if isearch-regexp (setq isearch-invalid-regexp nil))
1335 (setq isearch-within-brackets nil)
1336 (setq isearch-success
1337 (funcall
1338 (cond (isearch-word
1339 (if isearch-forward
1340 'word-search-forward 'word-search-backward))
1341 (isearch-regexp
1342 (if isearch-forward
1343 're-search-forward 're-search-backward))
1344 (t
1345 (if isearch-forward 'search-forward 'search-backward)))
1346 isearch-string nil t))
1347 (if isearch-success
1348 (setq isearch-other-end
1349 (if isearch-forward (match-beginning 0) (match-end 0)))))
1350
1351 (quit (isearch-unread ?\C-g)
1352 (setq isearch-success nil))
1353
1354 (invalid-regexp
1355 (setq isearch-invalid-regexp (car (cdr lossage)))
1356 (setq isearch-within-brackets (string-match "\\`Unmatched \\["
1357 isearch-invalid-regexp))
1358 (if (string-match
1359 "\\`Premature \\|\\`Unmatched \\|\\`Invalid "
1360 isearch-invalid-regexp)
1361 (setq isearch-invalid-regexp "incomplete input")))
1362 (error
1363 ;; stack overflow in regexp search.
1364 (setq isearch-invalid-regexp (car (cdr lossage)))))
1365
1366 (if isearch-success
1367 nil
1368 ;; Ding if failed this time after succeeding last time.
1369 (and (nth 3 (car isearch-cmds))
1370 (ding))
1371 (goto-char (nth 2 (car isearch-cmds)))))
1372
1373
1374 \f
1375 ;;;========================================================
1376 ;;; Highlighting
1377
1378 (defvar isearch-overlay nil)
1379
1380 (defun isearch-highlight (beg end)
1381 (if (or (null search-highlight) (null window-system))
1382 nil
1383 (or isearch-overlay (setq isearch-overlay (make-overlay beg end)))
1384 (move-overlay isearch-overlay beg end (current-buffer))
1385 (overlay-put isearch-overlay 'face
1386 (if (internal-find-face 'isearch nil)
1387 'isearch 'region))))
1388
1389 (defun isearch-dehighlight (totally)
1390 (if isearch-overlay
1391 (delete-overlay isearch-overlay)))
1392
1393 ;;;===========================================================
1394 ;;; General utilities
1395
1396
1397 (defun isearch-no-upper-case-p (string regexp-flag)
1398 "Return t if there are no upper case chars in STRING.
1399 If REGEXP-FLAG is non-nil, disregard letters preceeded by `\\' (but not `\\\\')
1400 since they have special meaning in a regexp."
1401 (let ((case-fold-search nil))
1402 (not (string-match (if regexp-flag "\\(^\\|\\\\\\\\\\|[^\\]\\)[A-Z]"
1403 "[A-Z]")
1404 string))))
1405
1406
1407 ;;;=================================================
1408 ;; Portability functions to support various Emacs versions.
1409
1410 ;; To quiet the byte-compiler.
1411 (defvar unread-command-event)
1412 (defvar unread-command-events)
1413 (defvar last-command-event)
1414
1415 (defun isearch-char-to-string (c)
1416 (make-string 1 c))
1417
1418 (defun isearch-text-char-description (c)
1419 (if (and (integerp c) (or (< c ?\ ) (= c ?\^?)))
1420 (text-char-description c)
1421 (isearch-char-to-string c)))
1422
1423 ;; General function to unread characters or events.
1424 (defun isearch-unread (&rest char-or-events)
1425 (setq unread-command-events
1426 (append char-or-events unread-command-events)))
1427
1428 (defun isearch-last-command-char ()
1429 ;; General function to return the last command character.
1430 last-command-char)
1431
1432 ;;; isearch.el ends here