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