(with-electric-help): Add missing argument MINHEIGHT.
[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 Likewise for function keys and mouse button events.
390
391 If this function is called non-interactively, it does not return to
392 the calling function until the search is done."
393
394 (interactive "P\np")
395 (isearch-mode t (not (null regexp-p)) nil (not no-recursive-edit)))
396
397 (defun isearch-forward-regexp (&optional not-regexp no-recursive-edit)
398 "\
399 Do incremental search forward for regular expression.
400 With a prefix argument, do a regular string search instead.
401 Like ordinary incremental search except that your input
402 is treated as a regexp. See \\[isearch-forward] for more info."
403 (interactive "P\np")
404 (isearch-mode t (null not-regexp) nil (not no-recursive-edit)))
405
406 (defun isearch-backward (&optional regexp-p no-recursive-edit)
407 "\
408 Do incremental search backward.
409 With a prefix argument, do a regular expression search instead.
410 See \\[isearch-forward] for more information."
411 (interactive "P\np")
412 (isearch-mode nil (not (null regexp-p)) nil (not no-recursive-edit)))
413
414 (defun isearch-backward-regexp (&optional not-regexp no-recursive-edit)
415 "\
416 Do incremental search backward for regular expression.
417 With a prefix argument, do a regular string search instead.
418 Like ordinary incremental search except that your input
419 is treated as a regexp. See \\[isearch-forward] for more info."
420 (interactive "P\np")
421 (isearch-mode nil (null not-regexp) nil (not no-recursive-edit)))
422
423
424 (defun isearch-mode-help ()
425 (interactive)
426 (describe-function 'isearch-forward)
427 (isearch-update))
428
429 \f
430 ;;;==================================================================
431 ;; isearch-mode only sets up incremental search for the minor mode.
432 ;; All the work is done by the isearch-mode commands.
433
434 ;; Not used yet:
435 ;;(defconst isearch-commands '(isearch-forward isearch-backward
436 ;; isearch-forward-regexp isearch-backward-regexp)
437 ;; "List of commands for which isearch-mode does not recursive-edit.")
438
439
440 (defun isearch-mode (forward &optional regexp op-fun recursive-edit word-p)
441 "Start isearch minor mode. Called by `isearch-forward', etc.
442
443 \\{isearch-mode-map}"
444
445 ;; Initialize global vars.
446 (setq isearch-forward forward
447 isearch-regexp regexp
448 isearch-word word-p
449 isearch-op-fun op-fun
450 isearch-case-fold-search case-fold-search
451 isearch-string ""
452 isearch-message ""
453 isearch-cmds nil
454 isearch-success t
455 isearch-wrapped nil
456 isearch-barrier (point)
457 isearch-adjusted nil
458 isearch-yank-flag nil
459 isearch-invalid-regexp nil
460 isearch-within-brackets nil
461 isearch-slow-terminal-mode (and (<= baud-rate search-slow-speed)
462 (> (window-height)
463 (* 4 search-slow-window-lines)))
464 isearch-other-end nil
465 isearch-small-window nil
466
467 isearch-opoint (point)
468 search-ring-yank-pointer nil
469 regexp-search-ring-yank-pointer nil)
470 (setq isearch-window-configuration
471 (if isearch-slow-terminal-mode (current-window-configuration) nil))
472
473 (setq isearch-mode " Isearch") ;; forward? regexp?
474 (force-mode-line-update)
475
476 (isearch-push-state)
477
478 (setq overriding-terminal-local-map isearch-mode-map)
479 (isearch-update)
480 (run-hooks 'isearch-mode-hook)
481
482 (setq mouse-leave-buffer-hook '(isearch-done))
483
484 ;; isearch-mode can be made modal (in the sense of not returning to
485 ;; the calling function until searching is completed) by entering
486 ;; a recursive-edit and exiting it when done isearching.
487 (if recursive-edit
488 (let ((isearch-recursive-edit t))
489 (recursive-edit)))
490 isearch-success)
491
492
493 ;;;====================================================
494 ;; Some high level utilities. Others below.
495
496 (defun isearch-update ()
497 ;; Called after each command to update the display.
498 (if (null unread-command-events)
499 (progn
500 (if (not (input-pending-p))
501 (isearch-message))
502 (if (and isearch-slow-terminal-mode
503 (not (or isearch-small-window
504 (pos-visible-in-window-p))))
505 (let ((found-point (point)))
506 (setq isearch-small-window t)
507 (move-to-window-line 0)
508 (let ((window-min-height 1))
509 (split-window nil (if (< search-slow-window-lines 0)
510 (1+ (- search-slow-window-lines))
511 (- (window-height)
512 (1+ search-slow-window-lines)))))
513 (if (< search-slow-window-lines 0)
514 (progn (vertical-motion (- 1 search-slow-window-lines))
515 (set-window-start (next-window) (point))
516 (set-window-hscroll (next-window)
517 (window-hscroll))
518 (set-window-hscroll (selected-window) 0))
519 (other-window 1))
520 (goto-char found-point)))
521 (if isearch-other-end
522 (if (< isearch-other-end (point)) ; isearch-forward?
523 (isearch-highlight isearch-other-end (point))
524 (isearch-highlight (point) isearch-other-end))
525 (isearch-dehighlight nil))
526 ))
527 (setq ;; quit-flag nil not for isearch-mode
528 isearch-adjusted nil
529 isearch-yank-flag nil)
530 )
531
532 (defun isearch-done (&optional nopush edit)
533 (setq mouse-leave-buffer-hook nil)
534 ;; Called by all commands that terminate isearch-mode.
535 ;; If NOPUSH is non-nil, we don't push the string on the search ring.
536 (setq overriding-terminal-local-map nil)
537 ;; (setq pre-command-hook isearch-old-pre-command-hook) ; for lemacs
538 (isearch-dehighlight t)
539 (let ((found-start (window-start (selected-window)))
540 (found-point (point)))
541 (if isearch-window-configuration
542 (set-window-configuration isearch-window-configuration))
543
544 (if isearch-small-window
545 (goto-char found-point)
546 ;; Exiting the save-window-excursion clobbers window-start; restore it.
547 (set-window-start (selected-window) found-start t))
548
549 ;; If there was movement, mark the starting position.
550 ;; Maybe should test difference between and set mark iff > threshold.
551 (if (/= (point) isearch-opoint)
552 (or (and transient-mark-mode mark-active)
553 (progn
554 (push-mark isearch-opoint t)
555 (or executing-macro (> (minibuffer-depth) 0)
556 (message "Mark saved where search started"))))))
557
558 (setq isearch-mode nil)
559 (force-mode-line-update)
560
561 (if (and (> (length isearch-string) 0) (not nopush))
562 ;; Update the ring data.
563 (isearch-update-ring isearch-string isearch-regexp))
564
565 (run-hooks 'isearch-mode-end-hook)
566 (and (not edit) isearch-recursive-edit (exit-recursive-edit)))
567
568 (defun isearch-update-ring (string &optional regexp)
569 "Add STRING to the beginning of the search ring.
570 REGEXP says which ring to use."
571 (if regexp
572 (if (or (null regexp-search-ring)
573 (not (string= string (car regexp-search-ring))))
574 (progn
575 (setq regexp-search-ring
576 (cons string regexp-search-ring))
577 (if (> (length regexp-search-ring) regexp-search-ring-max)
578 (setcdr (nthcdr (1- search-ring-max) regexp-search-ring)
579 nil))))
580 (if (or (null search-ring)
581 (not (string= string (car search-ring))))
582 (progn
583 (setq search-ring (cons string search-ring))
584 (if (> (length search-ring) search-ring-max)
585 (setcdr (nthcdr (1- search-ring-max) search-ring) nil))))))
586
587 ;;;=======================================================
588 ;;; Switching buffers should first terminate isearch-mode.
589 ;;; This is done quite differently for each variant of emacs.
590 ;;; For lemacs, see Exiting in lemacs below
591
592 ;; For Emacs 19, the frame switch event is handled.
593 (defun isearch-switch-frame-handler ()
594 (interactive) ;; Is this necessary?
595 ;; First terminate isearch-mode.
596 (isearch-done)
597 (handle-switch-frame (car (cdr (isearch-last-command-char)))))
598
599 ;;;========================================================
600
601 \f
602 ;;;====================================================
603 ;; Commands active while inside of the isearch minor mode.
604
605 (defun isearch-exit ()
606 "Exit search normally.
607 However, if this is the first command after starting incremental
608 search and `search-nonincremental-instead' is non-nil, do a
609 nonincremental search instead via `isearch-edit-string'."
610 (interactive)
611 (if (and search-nonincremental-instead
612 (= 0 (length isearch-string)))
613 (let ((isearch-nonincremental t))
614 (isearch-edit-string)))
615 (isearch-done))
616
617
618 (defun isearch-edit-string ()
619 "Edit the search string in the minibuffer.
620 The following additional command keys are active while editing.
621 \\<minibuffer-local-isearch-map>
622 \\[exit-minibuffer] to resume incremental searching with the edited string.
623 \\[isearch-nonincremental-exit-minibuffer] to do one nonincremental search.
624 \\[isearch-forward-exit-minibuffer] to resume isearching forward.
625 \\[isearch-reverse-exit-minibuffer] to resume isearching backward.
626 \\[isearch-ring-advance-edit] to replace the search string with the next item in the search ring.
627 \\[isearch-ring-retreat-edit] to replace the search string with the previous item in the search ring.
628 \\[isearch-complete-edit] to complete the search string using the search ring.
629 \\<isearch-mode-map>
630 If first char entered is \\[isearch-yank-word], then do word search instead."
631
632 ;; This code is very hairy for several reasons, explained in the code.
633 ;; Mainly, isearch-mode must be terminated while editing and then restarted.
634 ;; If there were a way to catch any change of buffer from the minibuffer,
635 ;; this could be simplified greatly.
636 ;; Editing doesn't back up the search point. Should it?
637 (interactive)
638 (condition-case err
639 (let ((isearch-nonincremental isearch-nonincremental)
640
641 ;; Locally bind all isearch global variables to protect them
642 ;; from recursive isearching.
643 ;; isearch-string -message and -forward are not bound
644 ;; so they may be changed. Instead, save the values.
645 (isearch-new-string isearch-string)
646 (isearch-new-message isearch-message)
647 (isearch-new-forward isearch-forward)
648 (isearch-new-word isearch-word)
649
650 (isearch-regexp isearch-regexp)
651 (isearch-op-fun isearch-op-fun)
652 (isearch-cmds isearch-cmds)
653 (isearch-success isearch-success)
654 (isearch-wrapped isearch-wrapped)
655 (isearch-barrier isearch-barrier)
656 (isearch-adjusted isearch-adjusted)
657 (isearch-yank-flag isearch-yank-flag)
658 (isearch-invalid-regexp isearch-invalid-regexp)
659 (isearch-within-brackets isearch-within-brackets)
660 ;;; Don't bind this. We want isearch-search, below, to set it.
661 ;;; And the old value won't matter after that.
662 ;;; (isearch-other-end isearch-other-end)
663 ;;; Perhaps some of these other variables should be bound for a
664 ;;; shorter period, ending before the next isearch-search.
665 ;;; But there doesn't seem to be a real bug, so let's not risk it now.
666 (isearch-opoint isearch-opoint)
667 (isearch-slow-terminal-mode isearch-slow-terminal-mode)
668 (isearch-small-window isearch-small-window)
669 (isearch-recursive-edit isearch-recursive-edit)
670 ;; Save current configuration so we can restore it here.
671 (isearch-window-configuration (current-window-configuration))
672 )
673
674 ;; Actually terminate isearching until editing is done.
675 ;; This is so that the user can do anything without failure,
676 ;; like switch buffers and start another isearch, and return.
677 (condition-case err
678 (isearch-done t t)
679 (exit nil)) ; was recursive editing
680
681 (isearch-message) ;; for read-char
682 (unwind-protect
683 (let* (;; Why does following read-char echo?
684 ;;(echo-keystrokes 0) ;; not needed with above message
685 (e (let ((cursor-in-echo-area t))
686 (read-event)))
687 ;; Binding minibuffer-history-symbol to nil is a work-around
688 ;; for some incompatibility with gmhist.
689 (minibuffer-history-symbol)
690 (message-log-max nil))
691 ;; If the first character the user types when we prompt them
692 ;; for a string is the yank-word character, then go into
693 ;; word-search mode. Otherwise unread that character and
694 ;; read a key the normal way.
695 ;; Word search does not apply (yet) to regexp searches,
696 ;; no check is made here.
697 (message (isearch-message-prefix nil nil t))
698 (if (eq 'isearch-yank-word
699 (lookup-key isearch-mode-map (vector e)))
700 (setq isearch-word t ;; so message-prefix is right
701 isearch-new-word t)
702 (isearch-unread e))
703 (setq cursor-in-echo-area nil)
704 (setq isearch-new-string
705 (let (junk-ring)
706 (read-from-minibuffer
707 (isearch-message-prefix nil nil isearch-nonincremental)
708 isearch-string
709 minibuffer-local-isearch-map nil
710 'junk-ring))
711 isearch-new-message
712 (mapconcat 'isearch-text-char-description
713 isearch-new-string "")))
714 ;; Always resume isearching by restarting it.
715 (isearch-mode isearch-forward
716 isearch-regexp
717 isearch-op-fun
718 nil
719 isearch-word)
720
721 ;; Copy new local values to isearch globals
722 (setq isearch-string isearch-new-string
723 isearch-message isearch-new-message
724 isearch-forward isearch-new-forward
725 isearch-word isearch-new-word))
726
727 ;; Empty isearch-string means use default.
728 (if (= 0 (length isearch-string))
729 (setq isearch-string (car (if isearch-regexp regexp-search-ring
730 search-ring)))
731 ;; This used to set the last search string,
732 ;; but I think it is not right to do that here.
733 ;; Only the string actually used should be saved.
734 )
735
736 ;; Reinvoke the pending search.
737 (isearch-push-state)
738 (isearch-search)
739 (isearch-update)
740 (if isearch-nonincremental
741 (progn
742 ;; (sit-for 1) ;; needed if isearch-done does: (message "")
743 (isearch-done))))
744
745 (quit ; handle abort-recursive-edit
746 (isearch-abort) ;; outside of let to restore outside global values
747 )))
748
749 (defun isearch-nonincremental-exit-minibuffer ()
750 (interactive)
751 (setq isearch-nonincremental t)
752 (exit-minibuffer))
753
754 (defun isearch-forward-exit-minibuffer ()
755 (interactive)
756 (setq isearch-new-forward t)
757 (exit-minibuffer))
758
759 (defun isearch-reverse-exit-minibuffer ()
760 (interactive)
761 (setq isearch-new-forward nil)
762 (exit-minibuffer))
763
764 (defun isearch-cancel ()
765 "Terminate the search and go back to the starting point."
766 (interactive)
767 (goto-char isearch-opoint)
768 (isearch-done t)
769 (signal 'quit nil)) ; and pass on quit signal
770
771 (defun isearch-abort ()
772 "Abort incremental search mode if searching is successful, signalling quit.
773 Otherwise, revert to previous successful search and continue searching.
774 Use `isearch-exit' to quit without signalling."
775 (interactive)
776 ;; (ding) signal instead below, if quitting
777 (discard-input)
778 (if isearch-success
779 ;; If search is successful, move back to starting point
780 ;; and really do quit.
781 (progn (goto-char isearch-opoint)
782 (setq isearch-success nil)
783 (isearch-done t) ; exit isearch
784 (signal 'quit nil)) ; and pass on quit signal
785 ;; If search is failing, or has an incomplete regexp,
786 ;; rub out until it is once more successful.
787 (while (or (not isearch-success) isearch-invalid-regexp)
788 (isearch-pop-state))
789 (isearch-update)))
790
791 (defun isearch-repeat (direction)
792 ;; Utility for isearch-repeat-forward and -backward.
793 (if (eq isearch-forward (eq direction 'forward))
794 ;; C-s in forward or C-r in reverse.
795 (if (equal isearch-string "")
796 ;; If search string is empty, use last one.
797 (setq isearch-string
798 (or (if isearch-regexp
799 (car regexp-search-ring)
800 (car search-ring))
801 "")
802 isearch-message
803 (mapconcat 'isearch-text-char-description
804 isearch-string ""))
805 ;; If already have what to search for, repeat it.
806 (or isearch-success
807 (progn
808
809 (goto-char (if isearch-forward (point-min) (point-max)))
810 (setq isearch-wrapped t))))
811 ;; C-s in reverse or C-r in forward, change direction.
812 (setq isearch-forward (not isearch-forward)))
813
814 (setq isearch-barrier (point)) ; For subsequent \| if regexp.
815
816 (if (equal isearch-string "")
817 (setq isearch-success t)
818 (if (and isearch-success (equal (match-end 0) (match-beginning 0)))
819 ;; If repeating a search that found
820 ;; an empty string, ensure we advance.
821 (if (if isearch-forward (eobp) (bobp))
822 ;; If there's nowhere to advance to, fail (and wrap next time).
823 (progn
824 (setq isearch-success nil)
825 (ding))
826 (forward-char (if isearch-forward 1 -1))
827 (isearch-search))
828 (isearch-search)))
829
830 (isearch-push-state)
831 (isearch-update))
832
833 (defun isearch-repeat-forward ()
834 "Repeat incremental search forwards."
835 (interactive)
836 (isearch-repeat 'forward))
837
838 (defun isearch-repeat-backward ()
839 "Repeat incremental search backwards."
840 (interactive)
841 (isearch-repeat 'backward))
842
843 (defun isearch-toggle-regexp ()
844 "Toggle regexp searching on or off."
845 ;; The status stack is left unchanged.
846 (interactive)
847 (setq isearch-regexp (not isearch-regexp))
848 (if isearch-regexp (setq isearch-word nil))
849 (isearch-update))
850
851 (defun isearch-toggle-case-fold ()
852 "Toggle case folding in searching on or off."
853 (interactive)
854 (setq isearch-case-fold-search
855 (if isearch-case-fold-search nil 'yes))
856 (let ((message-log-max nil))
857 (message "%s%s [case %ssensitive]"
858 (isearch-message-prefix nil nil isearch-nonincremental)
859 isearch-message
860 (if isearch-case-fold-search "in" "")))
861 (setq isearch-adjusted t)
862 (sit-for 1)
863 (isearch-update))
864
865 (defun isearch-delete-char ()
866 "Discard last input item and move point back.
867 If no previous match was done, just beep."
868 (interactive)
869 (if (null (cdr isearch-cmds))
870 (ding)
871 (isearch-pop-state))
872 (isearch-update))
873
874
875 (defun isearch-yank (chunk)
876 ;; Helper for isearch-yank-word and isearch-yank-line
877 ;; CHUNK should be word, line or kill.
878 (let ((string (cond
879 ((eq chunk 'kill)
880 (current-kill 0))
881 (t
882 (save-excursion
883 (and (not isearch-forward) isearch-other-end
884 (goto-char isearch-other-end))
885 (buffer-substring
886 (point)
887 (save-excursion
888 (cond
889 ((eq chunk 'word)
890 (forward-word 1))
891 ((eq chunk 'line)
892 (end-of-line)))
893 (point))))))))
894 ;; Downcase the string if not supposed to case-fold yanked strings.
895 (if (and isearch-case-fold-search
896 (eq 'not-yanks search-upper-case))
897 (setq string (downcase string)))
898 (if isearch-regexp (setq string (regexp-quote string)))
899 (setq isearch-string (concat isearch-string string)
900 isearch-message
901 (concat isearch-message
902 (mapconcat 'isearch-text-char-description
903 string ""))
904 ;; Don't move cursor in reverse search.
905 isearch-yank-flag t))
906 (isearch-search-and-update))
907
908 (defun isearch-yank-kill ()
909 "Pull string from kill ring into search string."
910 (interactive)
911 (isearch-yank 'kill))
912
913 (defun isearch-yank-word ()
914 "Pull next word from buffer into search string."
915 (interactive)
916 (isearch-yank 'word))
917
918 (defun isearch-yank-line ()
919 "Pull rest of line from buffer into search string."
920 (interactive)
921 (isearch-yank 'line))
922
923
924 (defun isearch-search-and-update ()
925 ;; Do the search and update the display.
926 (if (and (not isearch-success)
927 ;; unsuccessful regexp search may become
928 ;; successful by addition of characters which
929 ;; make isearch-string valid
930 (not isearch-regexp))
931 nil
932 ;; In reverse search, adding stuff at
933 ;; the end may cause zero or many more chars to be
934 ;; matched, in the string following point.
935 ;; Allow all those possibilities without moving point as
936 ;; long as the match does not extend past search origin.
937 (if (and (not isearch-forward) (not isearch-adjusted)
938 (condition-case ()
939 (looking-at (if isearch-regexp isearch-string
940 (regexp-quote isearch-string)))
941 (error nil))
942 (or isearch-yank-flag
943 (<= (match-end 0)
944 (min isearch-opoint isearch-barrier))))
945 (setq isearch-success t
946 isearch-invalid-regexp nil
947 isearch-within-brackets nil
948 isearch-other-end (match-end 0))
949 ;; Not regexp, not reverse, or no match at point.
950 (if (and isearch-other-end (not isearch-adjusted))
951 (goto-char (if isearch-forward isearch-other-end
952 (min isearch-opoint
953 isearch-barrier
954 (1+ isearch-other-end)))))
955 (isearch-search)
956 ))
957 (isearch-push-state)
958 (if isearch-op-fun (funcall isearch-op-fun))
959 (isearch-update))
960
961
962 ;; *, ?, and | chars can make a regexp more liberal.
963 ;; They can make a regexp match sooner or make it succeed instead of failing.
964 ;; So go back to place last successful search started
965 ;; or to the last ^S/^R (barrier), whichever is nearer.
966 ;; + needs no special handling because the string must match at least once.
967
968 (defun isearch-*-char ()
969 "Handle * and ? specially in regexps."
970 (interactive)
971 (if isearch-regexp
972
973 (progn
974 (setq isearch-adjusted t)
975 (let ((cs (nth (if isearch-forward
976 5 ; isearch-other-end
977 2) ; saved (point)
978 (car (cdr isearch-cmds)))))
979 ;; (car isearch-cmds) is after last search;
980 ;; (car (cdr isearch-cmds)) is from before it.
981 (setq cs (or cs isearch-barrier))
982 (goto-char
983 (if isearch-forward
984 (max cs isearch-barrier)
985 (min cs isearch-barrier))))))
986 (isearch-process-search-char (isearch-last-command-char)))
987
988
989 (defun isearch-|-char ()
990 "If in regexp search, jump to the barrier."
991 (interactive)
992 (if isearch-regexp
993 (progn
994 (setq isearch-adjusted t)
995 (goto-char isearch-barrier)))
996 (isearch-process-search-char (isearch-last-command-char)))
997
998
999 (defalias 'isearch-other-control-char 'isearch-other-meta-char)
1000
1001 (defun isearch-other-meta-char ()
1002 "Exit the search normally and reread this key sequence.
1003 But only if `search-exit-option' is non-nil, the default.
1004 If it is the symbol `edit', the search string is edited in the minibuffer
1005 and the meta character is unread so that it applies to editing the string."
1006 (interactive)
1007 (let* ((key (this-command-keys))
1008 (main-event (aref key 0))
1009 (keylist (listify-key-sequence key)))
1010 (cond ((and (= (length key) 1)
1011 (let ((lookup (lookup-key function-key-map key)))
1012 (not (or (null lookup) (integerp lookup)))))
1013 ;; Handle a function key that translates into something else.
1014 ;; If the key has a global definition too,
1015 ;; exit and unread the key itself, so its global definition runs.
1016 ;; Otherwise, unread the translation,
1017 ;; so that the translated key takes effect within isearch.
1018 (cancel-kbd-macro-events)
1019 (if (lookup-key global-map key)
1020 (progn
1021 (isearch-done)
1022 (apply 'isearch-unread keylist))
1023 (apply 'isearch-unread
1024 (listify-key-sequence (lookup-key function-key-map key)))))
1025 (
1026 ;; Handle an undefined shifted control character
1027 ;; by downshifting it if that makes it defined.
1028 ;; (As read-key-sequence would normally do,
1029 ;; if we didn't have a default definition.)
1030 (let ((mods (event-modifiers main-event)))
1031 (and (integerp main-event)
1032 (memq 'shift mods)
1033 (memq 'control mods)
1034 (lookup-key isearch-mode-map
1035 (let ((copy (copy-sequence key)))
1036 (aset copy 0
1037 (- main-event (- ?\C-\S-a ?\C-a)))
1038 copy)
1039 nil)))
1040 (setcar keylist (- main-event (- ?\C-\S-a ?\C-a)))
1041 (cancel-kbd-macro-events)
1042 (apply 'isearch-unread keylist))
1043 ((eq search-exit-option 'edit)
1044 (apply 'isearch-unread keylist)
1045 (isearch-edit-string))
1046 (search-exit-option
1047 (let (window)
1048 (cancel-kbd-macro-events)
1049 (apply 'isearch-unread keylist)
1050 ;; Properly handle scroll-bar and mode-line clicks
1051 ;; for which a dummy prefix event was generated as (aref key 0).
1052 (and (> (length key) 1)
1053 (symbolp (aref key 0))
1054 (listp (aref key 1))
1055 (not (numberp (posn-point (event-start (aref key 1)))))
1056 ;; Convert the event back into its raw form,
1057 ;; with the dummy prefix implicit in the mouse event,
1058 ;; so it will get split up once again.
1059 (progn (setq unread-command-events
1060 (cdr unread-command-events))
1061 (setq main-event (car unread-command-events))
1062 (setcar (cdr (event-start main-event))
1063 (car (nth 1 (event-start main-event))))))
1064 ;; If we got a mouse click, maybe it was read with the buffer
1065 ;; it was clicked on. If so, that buffer, not the current one,
1066 ;; is in isearch mode. So end the search in that buffer.
1067 (if (and (listp main-event)
1068 (setq window (posn-window (event-start main-event)))
1069 (windowp window))
1070 (save-excursion
1071 (set-buffer (window-buffer window))
1072 (isearch-done))
1073 (isearch-done))))
1074 (t;; otherwise nil
1075 (isearch-process-search-string key key)))))
1076
1077 (defun isearch-quote-char ()
1078 "Quote special characters for incremental search."
1079 (interactive)
1080 (isearch-process-search-char (read-quoted-char (isearch-message t))))
1081
1082 (defun isearch-return-char ()
1083 "Convert return into newline for incremental search.
1084 Obsolete."
1085 (interactive)
1086 (isearch-process-search-char ?\n))
1087
1088 (defun isearch-printing-char ()
1089 "Add this ordinary printing character to the search string and search."
1090 (interactive)
1091 (isearch-process-search-char (isearch-last-command-char)))
1092
1093 (defun isearch-whitespace-chars ()
1094 "Match all whitespace chars, if in regexp mode.
1095 If you want to search for just a space, type C-q SPC."
1096 (interactive)
1097 (if isearch-regexp
1098 (if (and search-whitespace-regexp (not isearch-within-brackets))
1099 (isearch-process-search-string search-whitespace-regexp " ")
1100 (isearch-printing-char))
1101 (progn
1102 ;; This way of doing word search doesn't correctly extend current search.
1103 ;; (setq isearch-word t)
1104 ;; (setq isearch-adjusted t)
1105 ;; (goto-char isearch-barrier)
1106 (isearch-printing-char))))
1107
1108 (defun isearch-process-search-char (char)
1109 ;; Append the char to the search string, update the message and re-search.
1110 (isearch-process-search-string
1111 (isearch-char-to-string char)
1112 (isearch-text-char-description char)))
1113
1114 (defun isearch-process-search-string (string message)
1115 (setq isearch-string (concat isearch-string string)
1116 isearch-message (concat isearch-message message))
1117 (isearch-search-and-update))
1118
1119 \f
1120 ;;===========================================================
1121 ;; Search Ring
1122
1123 (defun isearch-ring-adjust1 (advance)
1124 ;; Helper for isearch-ring-adjust
1125 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
1126 (length (length ring))
1127 (yank-pointer-name (if isearch-regexp
1128 'regexp-search-ring-yank-pointer
1129 'search-ring-yank-pointer))
1130 (yank-pointer (eval yank-pointer-name)))
1131 (if (zerop length)
1132 ()
1133 (set yank-pointer-name
1134 (setq yank-pointer
1135 (mod (+ (or yank-pointer 0)
1136 (if advance -1 1))
1137 length)))
1138 (setq isearch-string (nth yank-pointer ring)
1139 isearch-message (mapconcat 'isearch-text-char-description
1140 isearch-string "")))))
1141
1142 (defun isearch-ring-adjust (advance)
1143 ;; Helper for isearch-ring-advance and isearch-ring-retreat
1144 (if (cdr isearch-cmds) ;; is there more than one thing on stack?
1145 (isearch-pop-state))
1146 (isearch-ring-adjust1 advance)
1147 (isearch-push-state)
1148 (if search-ring-update
1149 (progn
1150 (isearch-search)
1151 (isearch-update))
1152 (isearch-edit-string)
1153 ))
1154
1155 (defun isearch-ring-advance ()
1156 "Advance to the next search string in the ring."
1157 ;; This could be more general to handle a prefix arg, but who would use it.
1158 (interactive)
1159 (isearch-ring-adjust 'advance))
1160
1161 (defun isearch-ring-retreat ()
1162 "Retreat to the previous search string in the ring."
1163 (interactive)
1164 (isearch-ring-adjust nil))
1165
1166 (defun isearch-ring-advance-edit (n)
1167 "Insert the next element of the search history into the minibuffer."
1168 (interactive "p")
1169 (let* ((yank-pointer-name (if isearch-regexp
1170 'regexp-search-ring-yank-pointer
1171 'search-ring-yank-pointer))
1172 (yank-pointer (eval yank-pointer-name))
1173 (ring (if isearch-regexp regexp-search-ring search-ring))
1174 (length (length ring)))
1175 (if (zerop length)
1176 ()
1177 (set yank-pointer-name
1178 (setq yank-pointer
1179 (mod (- (or yank-pointer 0) n)
1180 length)))
1181
1182 (erase-buffer)
1183 (insert (nth yank-pointer ring))
1184 (goto-char (point-max)))))
1185
1186 (defun isearch-ring-retreat-edit (n)
1187 "Inserts the previous element of the search history into the minibuffer."
1188 (interactive "p")
1189 (isearch-ring-advance-edit (- n)))
1190
1191 ;;(defun isearch-ring-adjust-edit (advance)
1192 ;; "Use the next or previous search string in the ring while in minibuffer."
1193 ;; (isearch-ring-adjust1 advance)
1194 ;; (erase-buffer)
1195 ;; (insert isearch-string))
1196
1197 ;;(defun isearch-ring-advance-edit ()
1198 ;; (interactive)
1199 ;; (isearch-ring-adjust-edit 'advance))
1200
1201 ;;(defun isearch-ring-retreat-edit ()
1202 ;; "Retreat to the previous search string in the ring while in the minibuffer."
1203 ;; (interactive)
1204 ;; (isearch-ring-adjust-edit nil))
1205
1206
1207 (defun isearch-complete1 ()
1208 ;; Helper for isearch-complete and isearch-complete-edit
1209 ;; Return t if completion OK, nil if no completion exists.
1210 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
1211 (alist (mapcar (function (lambda (string) (list string))) ring))
1212 (completion-ignore-case case-fold-search)
1213 (completion (try-completion isearch-string alist)))
1214 (cond
1215 ((eq completion t)
1216 ;; isearch-string stays the same
1217 t)
1218 ((or completion ; not nil, must be a string
1219 (= 0 (length isearch-string))) ; shouldnt have to say this
1220 (if (equal completion isearch-string) ;; no extension?
1221 (if completion-auto-help
1222 (with-output-to-temp-buffer "*Isearch completions*"
1223 (display-completion-list
1224 (all-completions isearch-string alist))))
1225 (setq isearch-string completion))
1226 t)
1227 (t
1228 (message "No completion") ; waits a second if in minibuffer
1229 nil))))
1230
1231 (defun isearch-complete ()
1232 "Complete the search string from the strings on the search ring.
1233 The completed string is then editable in the minibuffer.
1234 If there is no completion possible, say so and continue searching."
1235 (interactive)
1236 (if (isearch-complete1)
1237 (isearch-edit-string)
1238 ;; else
1239 (sit-for 1)
1240 (isearch-update)))
1241
1242 (defun isearch-complete-edit ()
1243 "Same as `isearch-complete' except in the minibuffer."
1244 (interactive)
1245 (setq isearch-string (buffer-string))
1246 (if (isearch-complete1)
1247 (progn
1248 (erase-buffer)
1249 (insert isearch-string))))
1250
1251 \f
1252 ;;;==============================================================
1253 ;; The search status stack (and isearch window-local variables, not used).
1254 ;; Need a structure for this.
1255
1256 (defun isearch-top-state ()
1257 (let ((cmd (car isearch-cmds)))
1258 (setq isearch-string (car cmd)
1259 isearch-message (car (cdr cmd))
1260 isearch-success (nth 3 cmd)
1261 isearch-forward (nth 4 cmd)
1262 isearch-other-end (nth 5 cmd)
1263 isearch-word (nth 6 cmd)
1264 isearch-invalid-regexp (nth 7 cmd)
1265 isearch-wrapped (nth 8 cmd)
1266 isearch-barrier (nth 9 cmd)
1267 isearch-within-brackets (nth 10 cmd)
1268 isearch-case-fold-search (nth 11 cmd))
1269 (goto-char (car (cdr (cdr cmd))))))
1270
1271 (defun isearch-pop-state ()
1272 (setq isearch-cmds (cdr isearch-cmds))
1273 (isearch-top-state)
1274 )
1275
1276 (defun isearch-push-state ()
1277 (setq isearch-cmds
1278 (cons (list isearch-string isearch-message (point)
1279 isearch-success isearch-forward isearch-other-end
1280 isearch-word
1281 isearch-invalid-regexp isearch-wrapped isearch-barrier
1282 isearch-within-brackets isearch-case-fold-search)
1283 isearch-cmds)))
1284
1285 \f
1286 ;;;==================================================================
1287 ;; Message string
1288
1289 (defun isearch-message (&optional c-q-hack ellipsis)
1290 ;; Generate and print the message string.
1291 (let ((cursor-in-echo-area ellipsis)
1292 (m (concat
1293 (isearch-message-prefix c-q-hack ellipsis isearch-nonincremental)
1294 isearch-message
1295 (isearch-message-suffix c-q-hack ellipsis)
1296 )))
1297 (if c-q-hack
1298 m
1299 (let ((message-log-max nil))
1300 (message "%s" m)))))
1301
1302 (defun isearch-message-prefix (&optional c-q-hack ellipsis nonincremental)
1303 ;; If about to search, and previous search regexp was invalid,
1304 ;; check that it still is. If it is valid now,
1305 ;; let the message we display while searching say that it is valid.
1306 (and isearch-invalid-regexp ellipsis
1307 (condition-case ()
1308 (progn (re-search-forward isearch-string (point) t)
1309 (setq isearch-invalid-regexp nil
1310 isearch-within-brackets nil))
1311 (error nil)))
1312 ;; If currently failing, display no ellipsis.
1313 (or isearch-success (setq ellipsis nil))
1314 (let ((m (concat (if isearch-success "" "failing ")
1315 (if (and isearch-wrapped
1316 (if isearch-forward
1317 (> (point) isearch-opoint)
1318 (< (point) isearch-opoint)))
1319 "over")
1320 (if isearch-wrapped "wrapped ")
1321 (if isearch-word "word " "")
1322 (if isearch-regexp "regexp " "")
1323 (if nonincremental "search" "I-search")
1324 (if isearch-forward ": " " backward: ")
1325 )))
1326 (aset m 0 (upcase (aref m 0)))
1327 m))
1328
1329
1330 (defun isearch-message-suffix (&optional c-q-hack ellipsis)
1331 (concat (if c-q-hack "^Q" "")
1332 (if isearch-invalid-regexp
1333 (concat " [" isearch-invalid-regexp "]")
1334 "")))
1335
1336 \f
1337 ;;;========================================================
1338 ;;; Searching
1339
1340 (defun isearch-search ()
1341 ;; Do the search with the current search string.
1342 (isearch-message nil t)
1343 (if (and (eq isearch-case-fold-search t) search-upper-case)
1344 (setq isearch-case-fold-search
1345 (isearch-no-upper-case-p isearch-string isearch-regexp)))
1346 (condition-case lossage
1347 (let ((inhibit-quit nil)
1348 (case-fold-search isearch-case-fold-search))
1349 (if isearch-regexp (setq isearch-invalid-regexp nil))
1350 (setq isearch-within-brackets nil)
1351 (setq isearch-success
1352 (funcall
1353 (cond (isearch-word
1354 (if isearch-forward
1355 'word-search-forward 'word-search-backward))
1356 (isearch-regexp
1357 (if isearch-forward
1358 're-search-forward 're-search-backward))
1359 (t
1360 (if isearch-forward 'search-forward 'search-backward)))
1361 isearch-string nil t))
1362 (if isearch-success
1363 (setq isearch-other-end
1364 (if isearch-forward (match-beginning 0) (match-end 0)))))
1365
1366 (quit (isearch-unread ?\C-g)
1367 (setq isearch-success nil))
1368
1369 (invalid-regexp
1370 (setq isearch-invalid-regexp (car (cdr lossage)))
1371 (setq isearch-within-brackets (string-match "\\`Unmatched \\["
1372 isearch-invalid-regexp))
1373 (if (string-match
1374 "\\`Premature \\|\\`Unmatched \\|\\`Invalid "
1375 isearch-invalid-regexp)
1376 (setq isearch-invalid-regexp "incomplete input")))
1377 (error
1378 ;; stack overflow in regexp search.
1379 (setq isearch-invalid-regexp (car (cdr lossage)))))
1380
1381 (if isearch-success
1382 nil
1383 ;; Ding if failed this time after succeeding last time.
1384 (and (nth 3 (car isearch-cmds))
1385 (ding))
1386 (goto-char (nth 2 (car isearch-cmds)))))
1387
1388
1389 \f
1390 ;;;========================================================
1391 ;;; Highlighting
1392
1393 (defvar isearch-overlay nil)
1394
1395 (defun isearch-highlight (beg end)
1396 (if (or (null search-highlight) (null window-system))
1397 nil
1398 (or isearch-overlay (setq isearch-overlay (make-overlay beg end)))
1399 (move-overlay isearch-overlay beg end (current-buffer))
1400 (overlay-put isearch-overlay 'face
1401 (if (internal-find-face 'isearch nil)
1402 'isearch 'region))))
1403
1404 (defun isearch-dehighlight (totally)
1405 (if isearch-overlay
1406 (delete-overlay isearch-overlay)))
1407
1408 ;;;===========================================================
1409 ;;; General utilities
1410
1411
1412 (defun isearch-no-upper-case-p (string regexp-flag)
1413 "Return t if there are no upper case chars in STRING.
1414 If REGEXP-FLAG is non-nil, disregard letters preceeded by `\\' (but not `\\\\')
1415 since they have special meaning in a regexp."
1416 (let ((case-fold-search nil))
1417 (not (string-match (if regexp-flag "\\(^\\|\\\\\\\\\\|[^\\]\\)[A-Z]"
1418 "[A-Z]")
1419 string))))
1420
1421
1422 ;;;=================================================
1423 ;; Portability functions to support various Emacs versions.
1424
1425 ;; To quiet the byte-compiler.
1426 (defvar unread-command-event)
1427 (defvar unread-command-events)
1428 (defvar last-command-event)
1429
1430 (defun isearch-char-to-string (c)
1431 (make-string 1 c))
1432
1433 (defun isearch-text-char-description (c)
1434 (if (and (integerp c) (or (< c ?\ ) (= c ?\^?)))
1435 (text-char-description c)
1436 (isearch-char-to-string c)))
1437
1438 ;; General function to unread characters or events.
1439 (defun isearch-unread (&rest char-or-events)
1440 (setq unread-command-events
1441 (append char-or-events unread-command-events)))
1442
1443 (defun isearch-last-command-char ()
1444 ;; General function to return the last command character.
1445 last-command-char)
1446
1447 ;;; isearch.el ends here