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