Added library headers.
[emacs.git] / lisp / isearch.el
blob3595b972ab57c4e2037eaa2044c73fa987a1c6ba
1 ;; Incremental search minor mode.
2 ;; Copyright (C) 1992 Free Software Foundation, Inc.
4 ;; LCD Archive Entry:
5 ;; isearch-mode|Daniel LaLiberte|liberte@cs.uiuc.edu
6 ;; |A minor mode replacement for isearch.el.
7 ;; |$Date: 1993/03/07 08:43:57 $|$Revision: 1.22 $|~/modes/isearch-mode.el
9 ;; This file is not yet part of GNU Emacs, but it is based almost
10 ;; entirely on isearch.el which is part of GNU Emacs.
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY. No author or distributor
14 ;; accepts responsibility to anyone for the consequences of using it
15 ;; or for whether it serves any particular purpose or works at all,
16 ;; unless he says so in writing. Refer to the GNU Emacs General Public
17 ;; License for full details.
19 ;; Everyone is granted permission to copy, modify and redistribute
20 ;; GNU Emacs, but only under the conditions described in the
21 ;; GNU Emacs General Public License. A copy of this license is
22 ;; supposed to have been given to you along with GNU Emacs so you
23 ;; can know your rights and responsibilities. It should be in a
24 ;; file named COPYING. Among other things, the copyright notice
25 ;; and this notice must be preserved on all copies.
27 ;;;====================================================================
28 ;; Instructions
30 ;; Searching with isearch-mode.el should work just like isearch.el,
31 ;; except it is done in a temporary minor mode that terminates when
32 ;; you finish searching.
34 ;; To use isearch-mode instead of the standard isearch.el, add the
35 ;; following to your .emacs file. The standard key bindings to
36 ;; isearch-forward, etc, will then use isearch-mode instead of
37 ;; isearch.
39 ;; (fset 'isearch 'isearch-mode)
40 ;; (autoload 'isearch-mode "isearch-mode")
42 ;; For programmed use of isearch-mode, e.g. calling (isearch-forward),
43 ;; isearch-mode behaves modally and does not return until the search
44 ;; is completed. It uses a recursive-edit to behave this way. Note:
45 ;; gnus does it wrong: (call-interactively 'isearch-forward).
47 ;; If any package you use invokes isearching non-interactively to get
48 ;; the modal behavior described above, you must use the redefinitions
49 ;; of isearch-forward, etc. found in this file instead of those in
50 ;; loaddefs.el. The simplest way to ensure this is to just load
51 ;; isearch-mode explicitly in your .emacs instead of using the above
52 ;; fset and autoload.
54 ;; (load "isearch-mode")
56 ;; The key bindings active within isearch-mode are defined below in
57 ;; `isearch-mode-map' which is given bindings close to the default
58 ;; characters of the original isearch.el. With `isearch-mode',
59 ;; however, you can bind multi-character keys and it should be easier
60 ;; to add new commands. One bug though: keys with meta-prefix cannot
61 ;; be longer than two chars. Also see minibuffer-local-isearch-map
62 ;; for bindings active during `isearch-edit-string'.
64 ;; Note to emacs version 19 users: isearch-mode should work even if
65 ;; you switch windows with the mouse, in which case isearch-mode is
66 ;; terminated automatically before the switch. This is true of lemacs
67 ;; too, with a few more cleanups I've neglected in this release.
68 ;; No one has supplied patches for epoch yet.
70 ;; The search ring and completion commands automatically put you in
71 ;; the minibuffer to edit the string. This gives you a chance to
72 ;; modify the search string before executing the search. There are
73 ;; three commands to terminate the editing: C-s and C-r exit the
74 ;; minibuffer and search forward and reverse respectively, while C-m
75 ;; exits and does a nonincremental search.
77 ;; Exiting immediately from isearch uses isearch-edit-string instead
78 ;; of nonincremental-search, if search-nonincremental-instead is non-nil.
79 ;; The name of this option should probably be changed if we decide to
80 ;; keep the behavior. No point in forcing nonincremental search until
81 ;; the last possible moment.
83 ;; TODO
84 ;; - Integrate the emacs 19 generalized commmand history.
85 ;; - Think about incorporating query-replace.
86 ;; - Hooks and options for failed search.
88 ;;;====================================================================
89 ;;; Change History
91 ;;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/isearch-mode.el,v 1.22 1993/03/07 08:43:57 rms Exp rms $
92 ;;; $Log: isearch-mode.el,v $
93 ; Revision 1.22 1993/03/07 08:43:57 rms
94 ; (isearch-mode): Don't make a pre-command-hook.
96 ; Revision 1.21 1993/03/07 04:22:00 rms
97 ; (isearch-unread): Find last list element by hand.
99 ; Revision 1.20 1993/03/06 06:15:05 rms
100 ; (isearch-unread): Handle multiple args.
101 ; For Emacs 19, use listify-key-sequence.
102 ; If not Emacs 19, assume they are a meta sequence.
103 ; (isearch-other-meta-char): Pass the whole key sequence.
104 ; (isearch-other-control-char): Make this alias for ...-meta-char.
106 ; Revision 1.19 1993/02/17 21:30:25 rms
107 ; Fix minor bugs in previous change.
109 ; Revision 1.18 1993/02/17 20:34:20 rms
110 ; (isearch-backward-regexp):
111 ; New arg no-recursive-edit, always non-nil for interactive call.
112 ; Rename first arg, and set it right in interactive call.
113 ; (isearch-forward-regexp): Likewise.
114 ; (isearch-forward, isearch-backward): Likewise no-recursive-edit.
116 ; Revision 1.17 1993/01/26 01:48:27 jimb
117 ; JimB's changes since January 18th
119 ; Revision 1.16 1992/11/16 01:37:06 jimb
120 ; * bytecomp.el: Declare unread-command-char an obsolete variable.
121 ; * vip.el (vip-escape-to-emacs, vip-prefix-arg-value,
122 ; vip-prefix-arg-com): Use unread-command-event instead of
123 ; unread-command-char; respect its new semantics.
124 ; * isearch-mode.el (isearch-update, isearch-unread): Same.
126 ; Revision 1.15 1992/11/07 06:17:04 jimb
127 ; * isearch.el (isearch-frames-exist): This isn't what we want -
128 ; replaced by...
129 ; (isearch-gnu-emacs-events): non-nil if should expect events in the
130 ; style generated by GNU Emacs 19. Set if set-frame-height is
131 ; fboundp; this is true on any GNU Emacs 19, whether or not it was
132 ; compiled with multiple frame support.
133 ; (isearch-mode-map): Test isearch-gnu-emacs-events instead of
134 ; isearch-frames-exist to see if we should bind switch-frame events.
135 ; (isearch-update): Test isearch-gnu-emacs-events instead of
136 ; isearch-frames-exist to see if unread-command-char's quiescent
137 ; value is nil or -1.
139 ; Revision 1.14 1992/11/01 22:10:59 rms
140 ; (isearch-search): Handle all sorts of errors from regexp search.
142 ; Revision 1.13 1992/10/27 04:11:46 rms
143 ; (isearch-edit-string):
144 ; Bind cursor-in-echo-area only around read-char/allocate-event.
146 ; Revision 1.12 1992/10/20 21:21:47 rms
147 ; (isearch-mode-map): Make the top-level keymap dense.
148 ; Explicitly bind control characters at that level.
150 ; Revision 1.11 1992/10/11 05:25:11 rms
151 ; (isearch-ring-advance-edit): Delete spurious `)'.
153 ; Revision 1.10 1992/09/21 08:28:43 rms
154 ; entered into RCS
156 ;;; Revision 1.4 92/09/14 16:26:02 liberte
157 ;;; Added prefix args to isearch-forward, etc. to switch between
158 ;;; string and regular expression searching.
159 ;;; Added some support for lemacs.
160 ;;; Added general isearch-highlight option - but only for lemacs so far.
161 ;;; Added support for frame switching in emacs 19.
162 ;;; Added word search option to isearch-edit-string.
163 ;;; Renamed isearch-quit to isearch-abort.
164 ;;; Numerous changes to comments and doc strings.
165 ;;;
166 ;;; Revision 1.3 92/06/29 13:10:08 liberte
167 ;;; Moved modal isearch-mode handling into isearch-mode.
168 ;;; Got rid of buffer-local isearch variables.
169 ;;; isearch-edit-string used by ring adjustments, completion, and
170 ;;; nonincremental searching. C-s and C-r are additional exit commands.
171 ;;; Renamed all regex to regexp.
172 ;;; Got rid of found-start and found-point globals.
173 ;;; Generalized handling of upper-case chars.
175 ;;; Revision 1.2 92/05/27 11:33:57 liberte
176 ;;; Emacs version 19 has a search ring, which is supported here.
177 ;;; Other fixes found in the version 19 isearch are included here.
179 ;;; Also see variables search-caps-disable-folding,
180 ;;; search-nonincremental-instead, search-whitespace-regexp, and
181 ;;; commands isearch-toggle-regexp, isearch-edit-string.
183 ;;; semi-modal isearching is supported.
185 ;;; Changes for 1.1
186 ;;; 3/18/92 Fixed invalid-regexp.
187 ;;; 3/18/92 Fixed yanking in regexps.
191 ;;;=========================================================================
192 ;;; Emacs features
194 ;; isearch-mode takes advantage of the features provided by several
195 ;; different versions of emacs. Rather than testing the version of
196 ;; emacs, several constants are defined, one for each of the features.
197 ;; Each of the tests below must work on any version of emacs.
198 ;; (Perhaps provide and featurep could be used for this purpose.)
200 (defconst isearch-gnu-emacs-events (fboundp 'set-frame-height)) ;; emacs 19
201 (defconst isearch-pre-command-hook-exists (boundp 'pre-command-hook)) ;; lemacs
202 (defconst isearch-event-data-type nil) ;; lemacs
204 (defconst search-exit-option t
205 "*Non-nil means random control characters terminate incremental search.")
207 (defvar search-slow-window-lines 1
208 "*Number of lines in slow search display windows.
209 These are the short windows used during incremental search on slow terminals.
210 Negative means put the slow search window at the top (normally it's at bottom)
211 and the value is minus the number of lines.")
213 (defvar search-slow-speed 1200
214 "*Highest terminal speed at which to use \"slow\" style incremental search.
215 This is the style where a one-line window is created to show the line
216 that the search has reached.")
218 ;;;========================================================================
219 ;;; Some additional options and constants.
221 (defvar search-upper-case t
222 "*If non-nil, upper case chars disable case fold searching.
223 That is, upper and lower case chars must match exactly.
224 This applies no matter where the chars come from, but does not
225 apply to chars in regexps that are prefixed with `\\'.
226 If this value is `not-yanks', yanked text is always downcased.")
228 (defvar search-nonincremental-instead t
229 "*If non-nil, do a nonincremental search instead if exiting immediately.
230 Actually, `isearch-edit-string' is called to let you enter the search
231 string, and RET terminates editing and does a nonincremental search.")
233 (defconst search-whitespace-regexp "\\s-+"
234 "*If non-nil, regular expression to match a sequence of whitespace chars.
235 You might want to use something like \"[ \\t\\r\\n]+\" instead.")
237 ;; I removed the * from the doc string because highlighting is not
238 ;; currently a clean thing to do. Once highlighting is made clean,
239 ;; this feature can be re-enabled and advertised.
240 (defvar search-highlight nil
241 "Whether isearch and query-replace should highlight the text which
242 currently matches the search-string.")
245 (defvar isearch-mode-hook nil
246 "Function(s) to call after starting up an incremental search.")
248 (defvar isearch-mode-end-hook nil
249 "Function(s) to call after terminating an incremental search.")
251 ;;;==================================================================
252 ;;; Search ring.
254 (defvar search-ring nil
255 "List of search string sequences.")
256 (defvar regexp-search-ring nil
257 "List of regular expression search string sequences.")
259 (defconst search-ring-max 16
260 "*Maximum length of search ring before oldest elements are thrown away.")
261 (defconst regexp-search-ring-max 16
262 "*Maximum length of regexp search ring before oldest elements are thrown away.")
264 (defvar search-ring-yank-pointer nil
265 "Index in `search-ring' of last string reused.
266 nil if none yet.")
267 (defvar regexp-search-ring-yank-pointer nil
268 "Index in `regexp-search-ring' of last string reused.
269 nil if none yet.")
271 (defvar search-ring-update nil
272 "*Non-nil if advancing or retreating in the search ring should cause search.
273 Default value, nil, means edit the string instead.")
275 ;;;====================================================
276 ;;; Define isearch-mode keymap.
278 (defvar isearch-mode-map nil
279 "Keymap for isearch-mode.")
281 (or isearch-mode-map
282 (let* ((i 0)
283 (map (make-keymap)))
285 ;; Make function keys, etc, exit the search.
286 (define-key map [t] 'isearch-other-control-char)
287 ;; Control chars, by default, end isearch mode transparently.
288 ;; We need these explicit definitions because, in a dense keymap,
289 ;; the binding for t does not affect characters.
290 ;; We use a dense keymap to save space.
291 (while (< i ?\ )
292 (define-key map (make-string 1 i) 'isearch-other-control-char)
293 (setq i (1+ i)))
295 ;; Printing chars extend the selection by default.
296 (setq i ?\ )
297 (while (< i 128)
298 (define-key map (make-string 1 i) 'isearch-printing-char)
299 (setq i (1+ i)))
301 ;; Several non-printing chars change the searching behavior.
302 (define-key map "\C-s" 'isearch-repeat-forward)
303 (define-key map "\C-r" 'isearch-repeat-backward)
304 (define-key map "\177" 'isearch-delete-char)
305 (define-key map "\C-g" 'isearch-abort)
307 (define-key map "\C-q" 'isearch-quote-char)
309 (define-key map "\r" 'isearch-exit)
310 (define-key map "\C-j" 'isearch-printing-char)
311 (define-key map "\t" 'isearch-printing-char)
312 (define-key map " " 'isearch-whitespace-chars)
314 (define-key map "\C-w" 'isearch-yank-word)
315 (define-key map "\C-y" 'isearch-yank-line)
317 ;; Bind the ASCII-equivalent "function keys" explicitly
318 ;; if we bind their equivalents,
319 ;; since otherwise the default binding would override.
320 ;; We bind [escape] below.
321 (define-key map [tab] 'isearch-printing-char)
322 (define-key map [delete] 'isearch-delete-char)
323 (define-key map [backspace] 'isearch-delete-char)
324 (define-key map [return] 'isearch-exit)
325 (define-key map [newline] 'isearch-printing-char)
327 ;; Define keys for regexp chars * ? |.
328 ;; Nothing special for + because it matches at least once.
329 (define-key map "*" 'isearch-*-char)
330 (define-key map "?" 'isearch-*-char)
331 (define-key map "|" 'isearch-|-char)
333 ;; You can reenable global keys by binding them locally to nil.
334 ;; For the help char this doesnt work quite as expected because
335 ;; isearch-mode is not a major mode. Also the echo area is not
336 ;; restored after the help command while isearch-mode is
337 ;; still active. Furthermore, we should not assume that the
338 ;; help-command is on C-h. But here is how it would be done:
339 ;; (define-key map "\C-h" nil)
341 ;; Instead bind C-h to special help command for isearch-mode.
342 (define-key map "\C-h" 'isearch-mode-help)
344 ;; To handle local bindings with meta char prefix keys, define
345 ;; another full keymap. This must be done for any other prefix
346 ;; keys as well, one full keymap per char of the prefix key. It
347 ;; would be simpler to disable the global keymap, and/or have a
348 ;; default local key binding for any key not otherwise bound.
349 (let ((meta-map (make-sparse-keymap)))
350 (define-key map (char-to-string meta-prefix-char) meta-map)
351 (define-key map [escape] meta-map))
352 (define-key map (vector meta-prefix-char t) 'isearch-other-meta-char)
354 (define-key map "\M-n" 'isearch-ring-advance)
355 (define-key map "\M-p" 'isearch-ring-retreat)
357 (define-key map "\M-\t" 'isearch-complete)
359 ;; For emacs 19, switching frames should terminate isearch-mode
360 (if isearch-gnu-emacs-events
361 (define-key map [switch-frame] 'isearch-switch-frame-handler))
363 (setq isearch-mode-map map)
366 ;; Some bindings you may want to put in your isearch-mode-hook.
367 ;; Suggest some alternates...
368 ;; (define-key isearch-mode-map "\C-t" 'isearch-toggle-regexp)
369 ;; (define-key isearch-mode-map "\C-^" 'isearch-edit-string)
372 (defvar minibuffer-local-isearch-map nil
373 "Keymap for editing isearch strings in the minibuffer.")
375 (or minibuffer-local-isearch-map
376 (let ((map (copy-keymap minibuffer-local-map)))
377 (define-key map "\r" 'isearch-nonincremental-exit-minibuffer)
378 (define-key map "\M-n" 'isearch-ring-advance-edit)
379 (define-key map "\M-p" 'isearch-ring-retreat-edit)
380 (define-key map "\M-\t" 'isearch-complete-edit)
381 (define-key map "\C-s" 'isearch-forward-exit-minibuffer)
382 (define-key map "\C-r" 'isearch-reverse-exit-minibuffer)
383 (setq minibuffer-local-isearch-map map)
386 ;;;========================================================
387 ;; Internal variables declared globally for byte-compiler.
388 ;; These are all set with setq while isearching
389 ;; and bound locally while editing the search string.
391 (defvar isearch-forward nil) ; Searching in the forward direction.
392 (defvar isearch-regexp nil) ; Searching for a regexp.
393 (defvar isearch-word nil) ; Searching for words.
395 (defvar isearch-cmds nil) ; Stack of search status sets.
396 (defvar isearch-string "") ; The current search string.
397 (defvar isearch-message "") ; text-char-description version of isearch-string
399 (defvar isearch-success t) ; Searching is currently successful.
400 (defvar isearch-invalid-regexp nil) ; Regexp not well formed.
401 (defvar isearch-other-end nil) ; Start (end) of match if forward (backward).
402 (defvar isearch-wrapped nil) ; Searching restarted from the top (bottom).
403 (defvar isearch-barrier 0)
405 (defvar isearch-case-fold-search nil) ; case-fold-search while searching.
407 (defvar isearch-adjusted nil)
408 (defvar isearch-slow-terminal-mode nil)
409 ;;; If t, using a small window.
410 (defvar isearch-small-window nil)
411 (defvar isearch-opoint 0)
412 ;;; The window configuration active at the beginning of the search.
413 (defvar isearch-window-configuration nil)
414 (defvar isearch-old-local-map nil)
416 ;; Flag to indicate a yank occurred, so don't move the cursor.
417 (defvar isearch-yank-flag nil)
419 ;;; A function to be called after each input character is processed.
420 ;;; (It is not called after characters that exit the search.)
421 ;;; It is only set from an optional argument to `isearch-mode'.
422 (defvar isearch-op-fun nil)
424 ;;; Is isearch-mode in a recursive edit for modal searching.
425 (defvar isearch-recursive-edit nil)
427 ;;; Should isearch be terminated after doing one search?
428 (defvar isearch-nonincremental nil)
430 ;; New value of isearch-forward after isearch-edit-string.
431 (defvar isearch-new-forward nil)
434 ;;;==============================================================
435 ;; Minor-mode-alist changes - kind of redundant with the
436 ;; echo area, but if isearching in multiple windows, it can be useful.
438 (or (assq 'isearch-mode minor-mode-alist)
439 (nconc minor-mode-alist
440 (list '(isearch-mode isearch-mode))))
442 (defvar isearch-mode nil) ;; Name of the minor mode, if non-nil.
443 (make-variable-buffer-local 'isearch-mode)
445 (define-key global-map "\C-s" 'isearch-forward)
446 (define-key esc-map "\C-s" 'isearch-forward-regexp)
447 (define-key global-map "\C-r" 'isearch-backward)
448 (define-key esc-map "\C-r" 'isearch-backward-regexp)
450 ;;;===============================================================
451 ;;; Entry points to isearch-mode.
452 ;;; These four functions should replace those in loaddefs.el
453 ;;; An alternative is to fset isearch-forward etc to isearch-mode,
454 ;;; and look at this-command to set the options accordingly.
456 (defun isearch-forward (&optional regexp-p no-recursive-edit)
458 Do incremental search forward.
459 With a prefix argument, do an incremental regular expression search instead.
460 \\<isearch-mode-map>
461 As you type characters, they add to the search string and are found.
462 The following non-printing keys are bound in `isearch-mode-map'.
464 Type \\[isearch-delete-char] to cancel characters from end of search string.
465 Type \\[isearch-exit] to exit, leaving point at location found.
466 Type LFD (C-j) to match end of line.
467 Type \\[isearch-repeat-forward] to search again forward,\
468 \\[isearch-repeat-backward] to search again backward.
469 Type \\[isearch-yank-word] to yank word from buffer onto end of search\
470 string and search for it.
471 Type \\[isearch-yank-line] to yank rest of line onto end of search string\
472 and search for it.
473 Type \\[isearch-quote-char] to quote control character to search for it.
474 Type \\[isearch-whitespace-chars] to match all whitespace chars in regexp.
475 \\[isearch-abort] while searching or when search has failed cancels input\
476 back to what has
477 been found successfully.
478 \\[isearch-abort] when search is successful aborts and moves point to\
479 starting point.
481 Also supported is a search ring of the previous 16 search strings.
482 Type \\[isearch-ring-advance] to search for the next item in the search ring.
483 Type \\[isearch-ring-retreat] to search for the previous item in the search\
484 ring.
485 Type \\[isearch-complete] to complete the search string using the search ring.
487 The above keys, bound in `isearch-mode-map', are often controlled by
488 options; do M-x apropos on search-.* to find them.
489 Other control and meta characters terminate the search
490 and are then executed normally (depending on `search-exit-option').
492 If this function is called non-interactively, it does not return to
493 the calling function until the search is done."
495 (interactive "P\np")
496 (isearch-mode t (not (null regexp-p)) nil (not no-recursive-edit)))
498 (defun isearch-forward-regexp (&optional not-regexp no-recursive-edit)
500 Do incremental search forward for regular expression.
501 With a prefix argument, do a regular string search instead.
502 Like ordinary incremental search except that your input
503 is treated as a regexp. See \\[isearch-forward] for more info."
504 (interactive "P\np")
505 (isearch-mode t (null not-regexp) nil (not no-recursive-edit)))
507 (defun isearch-backward (&optional regexp-p no-recursive-edit)
509 Do incremental search backward.
510 With a prefix argument, do a regular expression search instead.
511 See \\[isearch-forward] for more information."
512 (interactive "P\np")
513 (isearch-mode nil (not (null regexp-p)) nil (not no-recursive-edit)))
515 (defun isearch-backward-regexp (&optional not-regexp no-recursive-edit)
517 Do incremental search backward for regular expression.
518 With a prefix argument, do a regular string search instead.
519 Like ordinary incremental search except that your input
520 is treated as a regexp. See \\[isearch-forward] for more info."
521 (interactive "P\np")
522 (isearch-mode nil (null not-regexp) nil (not no-recursive-edit)))
525 (defun isearch-mode-help ()
526 (interactive)
527 (describe-function 'isearch-forward)
528 (isearch-update))
531 ;;;==================================================================
532 ;; isearch-mode only sets up incremental search for the minor mode.
533 ;; All the work is done by the isearch-mode commands.
535 ;; Not used yet:
536 ;;(defconst isearch-commands '(isearch-forward isearch-backward
537 ;; isearch-forward-regexp isearch-backward-regexp)
538 ;; "List of commands for which isearch-mode does not recursive-edit.")
541 (defun isearch-mode (forward &optional regexp op-fun recursive-edit word-p)
542 "Start isearch minor mode. Called by isearch-forward, etc."
544 ;; Initialize global vars.
545 (setq isearch-forward forward
546 isearch-regexp regexp
547 isearch-word word-p
548 isearch-op-fun op-fun
549 isearch-case-fold-search case-fold-search
550 isearch-string ""
551 isearch-message ""
552 isearch-cmds nil
553 isearch-success t
554 isearch-wrapped nil
555 isearch-barrier (point)
556 isearch-adjusted nil
557 isearch-yank-flag nil
558 isearch-invalid-regexp nil
559 ;; Use (baud-rate) for now, for sake of other versions.
560 isearch-slow-terminal-mode (and (<= (baud-rate) search-slow-speed)
561 (> (window-height)
562 (* 4 search-slow-window-lines)))
563 isearch-other-end nil
564 isearch-small-window nil
566 isearch-opoint (point)
567 isearch-window-configuration (current-window-configuration)
568 isearch-old-local-map (current-local-map)
569 search-ring-yank-pointer nil
570 regexp-search-ring-yank-pointer nil)
571 ;; This was for Lucid Emacs. But now that we have pre-command-hook,
572 ;; it causes trouble.
573 ;; (if isearch-pre-command-hook-exists
574 ;; (add-hook 'pre-command-hook 'isearch-pre-command-hook))
575 (setq isearch-mode " Isearch") ;; forward? regexp?
576 (set-buffer-modified-p (buffer-modified-p)) ; update modeline
578 (isearch-push-state)
580 (use-local-map isearch-mode-map)
581 (isearch-update)
582 (run-hooks 'isearch-mode-hook)
584 ;; isearch-mode can be made modal (in the sense of not returning to
585 ;; the calling function until searching is completed) by entering
586 ;; a recursive-edit and exiting it when done isearching.
587 (if recursive-edit (recursive-edit))
591 ;;;====================================================
592 ;; Some high level utilities. Others below.
594 (defun isearch-update ()
595 ;; Called after each command to update the display.
596 (if (if isearch-event-data-type
597 (null unread-command-event)
598 (if isearch-gnu-emacs-events
599 (null unread-command-events)
600 (< unread-command-char 0)))
601 (progn
602 (if (not (input-pending-p))
603 (isearch-message))
604 (if (and isearch-slow-terminal-mode
605 (not (or isearch-small-window
606 (pos-visible-in-window-p))))
607 (let ((found-point (point)))
608 (setq isearch-small-window t)
609 (move-to-window-line 0)
610 (let ((window-min-height 1))
611 (split-window nil (if (< search-slow-window-lines 0)
612 (1+ (- search-slow-window-lines))
613 (- (window-height)
614 (1+ search-slow-window-lines)))))
615 (if (< search-slow-window-lines 0)
616 (progn (vertical-motion (- 1 search-slow-window-lines))
617 (set-window-start (next-window) (point))
618 (set-window-hscroll (next-window)
619 (window-hscroll))
620 (set-window-hscroll (selected-window) 0))
621 (other-window 1))
622 (goto-char found-point)))
623 (if isearch-other-end
624 (if (< isearch-other-end (point)) ; isearch-forward?
625 (isearch-highlight isearch-other-end (point))
626 (isearch-highlight (point) isearch-other-end)))
628 (setq ;; quit-flag nil not for isearch-mode
629 isearch-adjusted nil
630 isearch-yank-flag nil)
634 (defun isearch-done (&optional nopush)
635 ;; Called by all commands that terminate isearch-mode.
636 ;; If NOPUSH is non-nil, we don't push the string on the search ring.
637 (use-local-map isearch-old-local-map)
638 ;; (setq pre-command-hook isearch-old-pre-command-hook) ; for lemacs
639 (isearch-dehighlight t)
640 (let ((found-start (window-start (selected-window)))
641 (found-point (point)))
642 (set-window-configuration isearch-window-configuration)
644 ;; If there was movement, mark the starting position.
645 ;; Maybe should test difference between and set mark iff > threshold.
646 (if (/= (point) isearch-opoint)
647 (push-mark isearch-opoint)
648 ;; (message "") why is this needed?
650 (if isearch-small-window
651 (goto-char found-point)
652 ;; Exiting the save-window-excursion clobbers window-start; restore it.
653 (set-window-start (selected-window) found-start t)))
655 (setq isearch-mode nil)
656 (set-buffer-modified-p (buffer-modified-p)) ;; update modeline
658 (if (and (> (length isearch-string) 0) (not nopush))
659 ;; Update the ring data.
660 (if isearch-regexp
661 (if (or (null regexp-search-ring)
662 (not (string= isearch-string (car regexp-search-ring))))
663 (progn
664 (setq regexp-search-ring
665 (cons isearch-string regexp-search-ring))
666 (if (> (length regexp-search-ring) regexp-search-ring-max)
667 (setcdr (nthcdr (1- search-ring-max) regexp-search-ring)
668 nil))))
669 (if (or (null search-ring)
670 (not (string= isearch-string (car search-ring))))
671 (progn
672 (setq search-ring (cons isearch-string search-ring))
673 (if (> (length search-ring) search-ring-max)
674 (setcdr (nthcdr (1- search-ring-max) search-ring) nil))))))
676 (run-hooks 'isearch-mode-end-hook)
677 (if isearch-recursive-edit (exit-recursive-edit)))
679 ;;;=======================================================
680 ;;; Switching buffers should first terminate isearch-mode.
681 ;;; This is done quite differently for each varient of emacs.
682 ;;; For lemacs, see Exiting in lemacs below
684 ;; For Emacs 19, the frame switch event is handled.
685 (defun isearch-switch-frame-handler ()
686 (interactive) ;; Is this necessary?
687 ;; First terminate isearch-mode.
688 (isearch-done)
689 (select-frame (car (cdr (isearch-last-command-char)))))
691 ;;;========================================================
694 ;;;====================================================
695 ;; Commands active while inside of the isearch minor mode.
697 (defun isearch-exit ()
698 "Exit search normally.
699 However, if this is the first command after starting incremental
700 search and `search-nonincremental-instead' is non-nil, do a
701 nonincremental search instead via `isearch-edit-string'."
702 (interactive)
703 (if (and search-nonincremental-instead
704 (= 0 (length isearch-string)))
705 (let ((isearch-nonincremental t))
706 (isearch-edit-string)))
707 (isearch-done))
710 (defun isearch-edit-string ()
711 "Edit the search string in the minibuffer.
712 The following additional command keys are active while editing.
713 \\<minibuffer-local-isearch-map>
714 \\[exit-minibuffer] to resume incremental searching with the edited string.
715 \\[isearch-nonincremental-exit-minibuffer] to do one nonincremental search.
716 \\[isearch-forward-exit-minibuffer] to resume isearching forward.
717 \\[isearch-backward-exit-minibuffer] to resume isearching backward.
718 \\[isearch-ring-advance-edit] to replace the search string with the next item in the search ring.
719 \\[isearch-ring-retreat-edit] to replace the search string with the previou item in the search ring.
720 \\[isearch-complete-edit] to complete the search string using the search ring.
722 If first char entered is \\[isearch-yank-word], then do word search instead."
724 ;; This code is very hairy for several reasons, explained in the code.
725 ;; Mainly, isearch-mode must be terminated while editing and then restarted.
726 ;; If there were a way to catch any change of buffer from the minibuffer,
727 ;; this could be simplified greatly.
728 ;; Editing doesnt back up the search point. Should it?
729 (interactive)
730 (condition-case err
731 (let (isearch-nonincremental ; should search nonincrementally?
733 ;; Locally bind all isearch global variables to protect them
734 ;; from recursive isearching.
735 ;; isearch-string -message and -forward are not bound
736 ;; so they may be changed. Instead, save the values.
737 (isearch-new-string isearch-string)
738 (isearch-new-message isearch-message)
739 (isearch-new-forward isearch-forward)
740 (isearch-new-word isearch-word)
742 (isearch-regexp isearch-regexp)
743 (isearch-op-fun isearch-op-fun)
744 (isearch-cmds isearch-cmds)
745 (isearch-success isearch-success)
746 (isearch-wrapped isearch-wrapped)
747 (isearch-barrier isearch-barrier)
748 (isearch-adjusted isearch-adjusted)
749 (isearch-yank-flag isearch-yank-flag)
750 (isearch-invalid-regexp isearch-invalid-regexp)
751 (isearch-other-end isearch-other-end)
752 (isearch-opoint isearch-opoint)
753 (isearch-slow-terminal-mode isearch-slow-terminal-mode)
754 (isearch-small-window isearch-small-window)
755 (isearch-recursive-edit isearch-recursive-edit)
756 ;; Save current configuration so we can restore it here.
757 (isearch-window-configuration (current-window-configuration))
760 ;; Actually terminate isearching until editing is done.
761 ;; This is so that the user can do anything without failure,
762 ;; like switch buffers and start another isearch, and return.
763 (condition-case err
764 (isearch-done t)
765 (exit nil)) ; was recursive editing
767 (isearch-message) ;; for read-char
768 (unwind-protect
769 (let* (;; Why does following read-char echo?
770 ;;(echo-keystrokes 0) ;; not needed with above message
771 (e (let ((cursor-in-echo-area t))
772 (if isearch-event-data-type
773 (allocate-event) (read-char))))
774 ;; Binding minibuffer-history-symbol to nil is a work-around
775 ;; for some incompatibility with gmhist.
776 (minibuffer-history-symbol))
777 ;; If the first character the user types when we prompt them
778 ;; for a string is the yank-word character, then go into
779 ;; word-search mode. Otherwise unread that character and
780 ;; read a key the normal way.
781 ;; Word search does not apply (yet) to regexp searches,
782 ;; no check is made here.
783 (message (isearch-message-prefix nil nil t))
784 (if (eq 'isearch-yank-word
785 (lookup-key
786 isearch-mode-map
787 (char-to-string
788 (if isearch-event-data-type
789 (or (event-to-character (next-command-event e)) 0)
790 e))))
791 (setq isearch-word t ;; so message-prefix is right
792 isearch-new-word t)
793 (isearch-unread e))
794 (setq cursor-in-echo-area nil)
795 (setq isearch-new-string
796 (let (junk-ring)
797 (read-from-minibuffer (isearch-message-prefix)
798 isearch-string
799 minibuffer-local-isearch-map nil
800 'junk-ring))
801 isearch-new-message (mapconcat 'text-char-description
802 isearch-new-string "")))
803 ;; Always resume isearching by restarting it.
804 (isearch-mode isearch-forward
805 isearch-regexp
806 isearch-op-fun
807 isearch-recursive-edit
808 isearch-word)
810 ;; Copy new local values to isearch globals
811 (setq isearch-string isearch-new-string
812 isearch-message isearch-new-message
813 isearch-forward isearch-new-forward
814 isearch-word isearch-new-word))
816 ;; Empty isearch-string means use default.
817 (if (= 0 (length isearch-string))
818 (setq isearch-string (car (if isearch-regexp regexp-search-ring
819 search-ring)))
820 ;; This used to set the last search string,
821 ;; but I think it is not right to do that here.
822 ;; Only the string actually used should be saved.
825 ;; Reinvoke the pending search.
826 (isearch-push-state)
827 (isearch-search)
828 (isearch-update)
829 (if isearch-nonincremental
830 (progn
831 ;; (sit-for 1) ;; needed if isearch-done does: (message "")
832 (isearch-done))))
834 (quit ; handle abort-recursive-edit
835 (isearch-abort) ;; outside of let to restore outside global values
838 (defun isearch-nonincremental-exit-minibuffer ()
839 (interactive)
840 (setq isearch-nonincremental t)
841 (exit-minibuffer))
843 (defun isearch-forward-exit-minibuffer ()
844 (interactive)
845 (setq isearch-new-forward t)
846 (exit-minibuffer))
848 (defun isearch-reverse-exit-minibuffer ()
849 (interactive)
850 (setq isearch-new-forward nil)
851 (exit-minibuffer))
854 (defun isearch-abort ()
855 "Abort incremental search mode if searching is successful, signalling quit.
856 Otherwise, revert to previous successful search and continue searching.
857 Use `isearch-exit' to quit without signalling."
858 (interactive)
859 ;; (ding) signal instead below, if quiting
860 (discard-input)
861 (if isearch-success
862 ;; If search is successful, move back to starting point
863 ;; and really do quit.
864 (progn (goto-char isearch-opoint)
865 (isearch-done t) ; exit isearch
866 (signal 'quit nil)) ; and pass on quit signal
867 ;; If search is failing, rub out until it is once more successful.
868 (while (not isearch-success) (isearch-pop-state))
869 (isearch-update)))
872 (defun isearch-repeat (direction)
873 ;; Utility for isearch-repeat-forward and -backward.
874 (if (eq isearch-forward (eq direction 'forward))
875 ;; C-s in forward or C-r in reverse.
876 (if (equal isearch-string "")
877 ;; If search string is empty, use last one.
878 (setq isearch-string
879 (or (if isearch-regexp
880 (car regexp-search-ring)
881 (car search-ring))
883 isearch-message
884 (mapconcat 'isearch-text-char-description
885 isearch-string ""))
886 ;; If already have what to search for, repeat it.
887 (or isearch-success
888 (progn
890 (goto-char (if isearch-forward (point-min) (point-max)))
891 (setq isearch-wrapped t))))
892 ;; C-s in reverse or C-r in forward, change direction.
893 (setq isearch-forward (not isearch-forward)))
895 (setq isearch-barrier (point)) ; For subsequent \| if regexp.
896 (setq isearch-success t)
897 (or (equal isearch-string "")
898 (progn
899 ;; If repeating a search that found
900 ;; an empty string, ensure we advance.
901 (if (equal (match-end 0) (match-beginning 0))
902 (forward-char (if isearch-forward 1 -1)))
903 (isearch-search)))
904 (isearch-push-state)
905 (isearch-update))
907 (defun isearch-repeat-forward ()
908 "Repeat incremental search forwards."
909 (interactive)
910 (isearch-repeat 'forward))
912 (defun isearch-repeat-backward ()
913 "Repeat incremental search backwards."
914 (interactive)
915 (isearch-repeat 'backward))
917 (defun isearch-toggle-regexp ()
918 "Toggle regexp searching on or off."
919 ;; The status stack is left unchanged.
920 (interactive)
921 (setq isearch-regexp (not isearch-regexp))
922 (if isearch-regexp (setq isearch-word nil))
923 (isearch-update))
925 (defun isearch-delete-char ()
926 "Discard last input item and move point back.
927 If no previous match was done, just beep."
928 (interactive)
929 (if (null (cdr isearch-cmds))
930 (ding)
931 (isearch-pop-state))
932 (isearch-update))
935 (defun isearch-yank (chunk)
936 ;; Helper for isearch-yank-word and isearch-yank-line
937 (let ((string (save-excursion
938 (and (not isearch-forward) isearch-other-end
939 (goto-char isearch-other-end))
940 (buffer-substring
941 (point)
942 (save-excursion
943 (cond
944 ((eq chunk 'word)
945 (forward-word 1))
946 ((eq chunk 'line)
947 (end-of-line)))
948 (point))))))
949 ;; Downcase the string if not supposed to case-fold yanked strings.
950 (if (and isearch-case-fold-search
951 (eq 'not-yanks search-upper-case))
952 (setq string (downcase string)))
953 (if isearch-regexp (setq string (regexp-quote string)))
954 (setq isearch-string (concat isearch-string string)
955 isearch-message
956 (concat isearch-message
957 (mapconcat 'isearch-text-char-description
958 string ""))
959 ;; Don't move cursor in reverse search.
960 isearch-yank-flag t))
961 (isearch-search-and-update))
964 (defun isearch-yank-word ()
965 "Pull next word from buffer into search string."
966 (interactive)
967 (isearch-yank 'word))
969 (defun isearch-yank-line ()
970 "Pull rest of line from buffer into search string."
971 (interactive)
972 (isearch-yank 'line))
975 (defun isearch-search-and-update ()
976 ;; Do the search and update the display.
977 (if (and (not isearch-success)
978 ;; unsuccessful regexp search may become
979 ;; successful by addition of characters which
980 ;; make isearch-string valid
981 (not isearch-regexp))
983 ;; In reverse search, adding stuff at
984 ;; the end may cause zero or many more chars to be
985 ;; matched, in the string following point.
986 ;; Allow all those possibilities without moving point as
987 ;; long as the match does not extend past search origin.
988 (if (and (not isearch-forward) (not isearch-adjusted)
989 (condition-case ()
990 (looking-at (if isearch-regexp isearch-string
991 (regexp-quote isearch-string)))
992 (error nil))
993 (or isearch-yank-flag
994 (<= (match-end 0)
995 (min isearch-opoint isearch-barrier))))
996 (setq isearch-success t
997 isearch-invalid-regexp nil
998 isearch-other-end (match-end 0))
999 ;; Not regexp, not reverse, or no match at point.
1000 (if (and isearch-other-end (not isearch-adjusted))
1001 (goto-char (if isearch-forward isearch-other-end
1002 (min isearch-opoint
1003 isearch-barrier
1004 (1+ isearch-other-end)))))
1005 (isearch-search)
1007 (isearch-push-state)
1008 (if isearch-op-fun (funcall isearch-op-fun))
1009 (isearch-update))
1012 ;; *, ?, and | chars can make a regexp more liberal.
1013 ;; They can make a regexp match sooner or make it succeed instead of failing.
1014 ;; So go back to place last successful search started
1015 ;; or to the last ^S/^R (barrier), whichever is nearer.
1016 ;; + needs no special handling because the string must match at least once.
1018 (defun isearch-*-char ()
1019 "Handle * and ? specially in regexps."
1020 (interactive)
1021 (if isearch-regexp
1023 (progn
1024 (setq isearch-adjusted t)
1025 (let ((cs (nth (if isearch-forward
1026 5 ; isearch-other-end
1027 2) ; saved (point)
1028 (car (cdr isearch-cmds)))))
1029 ;; (car isearch-cmds) is after last search;
1030 ;; (car (cdr isearch-cmds)) is from before it.
1031 (setq cs (or cs isearch-barrier))
1032 (goto-char
1033 (if isearch-forward
1034 (max cs isearch-barrier)
1035 (min cs isearch-barrier))))))
1036 (isearch-process-search-char (isearch-last-command-char)))
1039 (defun isearch-|-char ()
1040 "If in regexp search, jump to the barrier."
1041 (interactive)
1042 (if isearch-regexp
1043 (progn
1044 (setq isearch-adjusted t)
1045 (goto-char isearch-barrier)))
1046 (isearch-process-search-char (isearch-last-command-char)))
1049 (fset 'isearch-other-control-char 'isearch-other-meta-char)
1051 (defun isearch-other-meta-char ()
1052 "Exit the search normally and reread this key sequence.
1053 But only if `search-exit-option' is non-nil, the default.
1054 If it is the symbol `edit', the search string is edited in the minibuffer
1055 and the meta character is unread so that it applies to editing the string."
1056 (interactive)
1057 (cond ((eq search-exit-option 'edit)
1058 (let ((key (this-command-keys)))
1059 (apply 'isearch-unread (listify-key-sequence key)))
1060 (isearch-edit-string))
1061 (search-exit-option
1062 (let ((key (this-command-keys)))
1063 (apply 'isearch-unread (listify-key-sequence key)))
1064 (isearch-done))
1065 (t;; otherwise nil
1066 (isearch-process-search-string (this-command-keys)
1067 (this-command-keys)))))
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))))
1075 (defun isearch-return-char ()
1076 "Convert return into newline for incremental search.
1077 Obsolete."
1078 (interactive)
1079 (isearch-process-search-char ?\n))
1081 (defun isearch-printing-char ()
1082 "Any other printing character => add it to the search string and search."
1083 (interactive)
1084 (isearch-process-search-char (isearch-last-command-char)))
1086 (defun isearch-whitespace-chars ()
1087 "Match all whitespace chars, if in regexp mode.
1088 If not in regexp mode, activate word search."
1089 (interactive)
1090 (if isearch-regexp
1091 (if search-whitespace-regexp
1092 (isearch-process-search-string search-whitespace-regexp " ")
1093 (isearch-printing-char))
1094 (progn
1095 ;; This way of doing word search doesnt correctly extend current search.
1096 ;; (setq isearch-word t)
1097 ;; (setq isearch-adjusted t)
1098 ;; (goto-char isearch-barrier)
1099 (isearch-printing-char))))
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)))
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))
1113 ;;===========================================================
1114 ;; Search Ring
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)
1126 (set yank-pointer-name
1127 (setq yank-pointer
1128 (% (+ (or yank-pointer 0)
1129 (if advance (1- length) 1))
1130 length)))
1131 (setq isearch-string (nth yank-pointer ring)
1132 isearch-message (mapconcat 'isearch-text-char-description
1133 isearch-string "")))))
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)
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))
1154 (defun isearch-ring-retreat ()
1155 "Retreat to the previous search string in the ring."
1156 (interactive)
1157 (isearch-ring-adjust nil))
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)
1170 (set yank-pointer-name
1171 (setq yank-pointer
1172 (% (+ (or yank-pointer 0)
1173 ;; Add LENGTH here to ensure a positive result.
1174 length
1175 (% (- n) length))
1176 length)))
1178 (erase-buffer)
1179 (insert (nth yank-pointer ring))
1180 (goto-char (point-max)))))
1182 (defun isearch-ring-retreat-edit (n)
1183 "Inserts the previous element of the search history into the minibuffer."
1184 (interactive "p")
1185 (isearch-ring-advance-edit (- n)))
1187 ;;(defun isearch-ring-adjust-edit (advance)
1188 ;; "Use the next or previous search string in the ring while in minibuffer."
1189 ;; (isearch-ring-adjust1 advance)
1190 ;; (erase-buffer)
1191 ;; (insert isearch-string))
1193 ;;(defun isearch-ring-advance-edit ()
1194 ;; (interactive)
1195 ;; (isearch-ring-adjust-edit 'advance))
1197 ;;(defun isearch-ring-retreat-edit ()
1198 ;; "Retreat to the previous search string in the ring while in the minibuffer."
1199 ;; (interactive)
1200 ;; (isearch-ring-adjust-edit nil))
1203 (defun isearch-complete1 ()
1204 ;; Helper for isearch-complete and isearch-complete-edit
1205 ;; Return t if completion OK, nil if no completion exists.
1206 (let* ((ring (if isearch-regexp regexp-search-ring search-ring))
1207 (alist (mapcar (function (lambda (string) (list string))) ring))
1208 (completion-ignore-case case-fold-search)
1209 (completion (try-completion isearch-string alist)))
1210 (cond
1211 ((eq completion t)
1212 ;; isearch-string stays the same
1214 ((or completion ; not nil, must be a string
1215 (= 0 (length isearch-string))) ; shouldnt have to say this
1216 (if (equal completion isearch-string) ;; no extension?
1217 (if completion-auto-help
1218 (with-output-to-temp-buffer "*Isearch completions*"
1219 (display-completion-list
1220 (all-completions isearch-string alist))))
1221 (setq isearch-string completion))
1224 (message "No completion") ; waits a second if in minibuffer
1225 nil))))
1227 (defun isearch-complete ()
1228 "Complete the search string from the strings on the search ring.
1229 The completed string is then editable in the minibuffer.
1230 If there is no completion possible, say so and continue searching."
1231 (interactive)
1232 (if (isearch-complete1)
1233 (isearch-edit-string)
1234 ;; else
1235 (sit-for 1)
1236 (isearch-update)))
1238 (defun isearch-complete-edit ()
1239 "Same as `isearch-complete' except in the minibuffer."
1240 (interactive)
1241 (setq isearch-string (buffer-string))
1242 (if (isearch-complete1)
1243 (progn
1244 (erase-buffer)
1245 (insert isearch-string))))
1248 ;;;==============================================================
1249 ;; The search status stack (and isearch window-local variables, not used).
1250 ;; Need a structure for this.
1252 (defun isearch-top-state ()
1253 (let ((cmd (car isearch-cmds)))
1254 (setq isearch-string (car cmd)
1255 isearch-message (car (cdr cmd))
1256 isearch-success (nth 3 cmd)
1257 isearch-forward (nth 4 cmd)
1258 isearch-other-end (nth 5 cmd)
1259 isearch-word (nth 6 cmd)
1260 isearch-invalid-regexp (nth 7 cmd)
1261 isearch-wrapped (nth 8 cmd)
1262 isearch-barrier (nth 9 cmd))
1263 (goto-char (car (cdr (cdr cmd))))))
1265 (defun isearch-pop-state ()
1266 (setq isearch-cmds (cdr isearch-cmds))
1267 (isearch-top-state)
1270 (defun isearch-push-state ()
1271 (setq isearch-cmds
1272 (cons (list isearch-string isearch-message (point)
1273 isearch-success isearch-forward isearch-other-end
1274 isearch-word
1275 isearch-invalid-regexp isearch-wrapped isearch-barrier)
1276 isearch-cmds)))
1279 ;;;==================================================================
1280 ;; Message string
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)
1290 (if c-q-hack m (message "%s" m))))
1292 (defun isearch-message-prefix (&optional c-q-hack ellipsis nonincremental)
1293 ;; If about to search, and previous search regexp was invalid,
1294 ;; check that it still is. If it is valid now,
1295 ;; let the message we display while searching say that it is valid.
1296 (and isearch-invalid-regexp ellipsis
1297 (condition-case ()
1298 (progn (re-search-forward isearch-string (point) t)
1299 (setq isearch-invalid-regexp nil))
1300 (error nil)))
1301 ;; If currently failing, display no ellipsis.
1302 (or isearch-success (setq ellipsis nil))
1303 (let ((m (concat (if isearch-success "" "failing ")
1304 (if isearch-wrapped "wrapped ")
1305 (if isearch-word "word " "")
1306 (if isearch-regexp "regexp " "")
1307 (if nonincremental "search" "I-search")
1308 (if isearch-forward ": " " backward: ")
1310 (aset m 0 (upcase (aref m 0)))
1314 (defun isearch-message-suffix (&optional c-q-hack ellipsis)
1315 (concat (if c-q-hack "^Q" "")
1316 (if isearch-invalid-regexp
1317 (concat " [" isearch-invalid-regexp "]")
1318 "")))
1321 ;;;========================================================
1322 ;;; Searching
1324 (defun isearch-search ()
1325 ;; Do the search with the current search string.
1326 (isearch-message nil t)
1327 (if search-upper-case
1328 (setq isearch-case-fold-search (isearch-no-upper-case-p isearch-string)))
1329 (condition-case lossage
1330 (let ((inhibit-quit nil)
1331 (case-fold-search isearch-case-fold-search))
1332 (if isearch-regexp (setq isearch-invalid-regexp nil))
1333 (setq isearch-success
1334 (funcall
1335 (cond (isearch-word
1336 (if isearch-forward
1337 'word-search-forward 'word-search-backward))
1338 (isearch-regexp
1339 (if isearch-forward
1340 're-search-forward 're-search-backward))
1342 (if isearch-forward 'search-forward 'search-backward)))
1343 isearch-string nil t))
1344 (if isearch-success
1345 (setq isearch-other-end
1346 (if isearch-forward (match-beginning 0) (match-end 0)))))
1348 (quit (isearch-unread ?\C-g)
1349 (setq isearch-success nil))
1351 (invalid-regexp
1352 (setq isearch-invalid-regexp (car (cdr lossage)))
1353 (if (string-match
1354 "\\`Premature \\|\\`Unmatched \\|\\`Invalid "
1355 isearch-invalid-regexp)
1356 (setq isearch-invalid-regexp "incomplete input")))
1357 (error
1358 ;; stack overflow in regexp search.
1359 (setq isearch-invalid-regexp (car (cdr lossage)))))
1361 (if isearch-success
1363 ;; Ding if failed this time after succeeding last time.
1364 (and (nth 3 (car isearch-cmds))
1365 (ding))
1366 (goto-char (nth 2 (car isearch-cmds)))))
1370 ;;;========================================================
1371 ;;; Highlighting
1373 (defun isearch-highlight (begin end))
1374 (defun isearch-dehighlight (totally))
1376 ;; lemacs uses faces
1377 '(progn
1378 (defvar isearch-extent nil)
1380 (or (find-face 'isearch) ;; this face is initialized by x-faces.el
1381 (make-face 'isearch)) ;; since isearch is preloaded
1383 (defun isearch-lemacs-highlight (begin end)
1384 (if (null isearch-highlight)
1386 (if (and (extentp isearch-extent)
1387 (eq (extent-buffer isearch-extent) (current-buffer)))
1388 (set-extent-endpoints isearch-extent begin end)
1389 (if (and (extentp isearch-extent)
1390 (bufferp (extent-buffer isearch-extent))
1391 (buffer-name (extent-buffer isearch-extent)))
1392 (delete-extent isearch-extent))
1393 (setq isearch-extent (make-extent begin end (current-buffer))))
1394 (set-extent-face isearch-extent 'isearch)))
1396 (defun isearch-lemacs-dehighlight (totally)
1397 (if (and isearch-highlight isearch-extent)
1398 (if totally
1399 (let ((inhibit-quit t))
1400 (if (and (extentp isearch-extent)
1401 (bufferp (extent-buffer isearch-extent))
1402 (buffer-name (extent-buffer isearch-extent)))
1403 (delete-extent isearch-extent))
1404 (setq isearch-extent nil))
1405 (if (and (extentp isearch-extent)
1406 (bufferp (extent-buffer isearch-extent))
1407 (buffer-name (extent-buffer isearch-extent)))
1408 (set-extent-face isearch-extent 'default)
1409 (isearch-dehighlight t)))))
1411 (fset 'isearch-highlight (symbol-function 'isearch-lemacs-highlight))
1412 (fset 'isearch-dehighlight (symbol-function 'isearch-lemacs-dehighlight))
1415 ;;;===========================================================
1416 ;;; General utilities
1418 ;; (fset 'isearch-member-equal (symbol-function 'member)) ; for emacs 19
1420 (defun isearch-member-equal (item list)
1421 "Return non-nil if ITEM is `equal' to some item in LIST.
1422 Actually return the list whose car is that item."
1423 (while (and list (not (equal item (car list))))
1424 (setq list (cdr list)))
1425 list)
1428 (defun isearch-no-upper-case-p (string)
1429 "Return t if there are no upper case chars in string.
1430 But upper case chars preceeded by \\ (but not \\\\) do not count since they
1431 have special meaning in a regexp."
1432 (let ((case-fold-search nil))
1433 (not (string-match "\\(^\\|\\\\\\\\\\|[^\\]\\)[A-Z]" string))))
1436 ;;;=================================================
1437 ;;; Special functions for lemacs events.
1439 ;; To quiet the byte-compiler.
1440 (defvar unread-command-event)
1441 (defvar unread-command-events)
1442 (defvar last-command-event)
1444 (defun isearch-char-to-string (c)
1445 (if (integerp c)
1446 (make-string 1 c)
1447 (make-string 1 (event-to-character c))))
1449 (defun isearch-text-char-description (c)
1450 (isearch-char-to-string c))
1452 (defun isearch-unread (&rest char-or-events)
1453 ;; General function to unread characters or events.
1454 (if isearch-gnu-emacs-events
1455 (setq unread-command-events
1456 (append char-or-events unread-command-events))
1457 (let ((char (if (cdr char-or-events)
1458 (progn
1459 (while (cdr char-or-events)
1460 (setq char-or-events (cdr char-or-events)))
1461 (+ 128 (car char-or-events)))
1462 (car char-or-events))))
1463 (if isearch-event-data-type
1464 (setq unread-command-event char)
1465 (setq unread-command-char char)))))
1467 (defun isearch-last-command-char ()
1468 ;; General function to return the last command character.
1469 (if isearch-event-data-type
1470 last-command-event
1471 last-command-char))
1476 ;;;========================================================
1477 ;;; Exiting in lemacs
1479 ;; This is a large amount of code to support automatic termination of
1480 ;; isearch-mode when a command (however it is invoked) is not an
1481 ;; isearch command, or the buffer is switched out from under
1482 ;; isearch-mode. Only later versions of lemacs have the pre-command-hook.
1484 ;;(if isearch-pre-command-hook-exists
1485 ;;(progn
1487 ;;;; This list must be modified whenever the available commands are modified.
1488 ;;(mapcar (function (lambda (command)
1489 ;; (put command 'isearch-command t)))
1490 ;; '(isearch-printing-char
1491 ;; isearch-return-char
1492 ;; isearch-repeat-forward
1493 ;; isearch-repeat-backward
1494 ;; isearch-delete-char
1495 ;; isearch-abort
1496 ;; isearch-quote-char
1497 ;; isearch-exit
1498 ;; isearch-printing-char
1499 ;; isearch-printing-char
1500 ;; isearch-yank-word
1501 ;; isearch-yank-line
1502 ;; isearch-*-char
1503 ;; isearch-*-char
1504 ;; isearch-|-char
1505 ;; isearch-toggle-regexp
1506 ;; isearch-edit-string
1507 ;; isearch-mode-help
1508 ;; isearch-ring-advance
1509 ;; isearch-ring-retreat
1510 ;; isearch-ring-advance-edit
1511 ;; isearch-ring-retreat-edit
1512 ;; isearch-whitespace-chars
1513 ;; isearch-complete
1514 ;; isearch-complete-edit
1515 ;; isearch-edit-string
1516 ;; isearch-toggle-regexp
1517 ;; ;; The following may not be needed since isearch-mode is off already.
1518 ;; isearch-forward-exit-minibuffer
1519 ;; isearch-reverse-exit-minibuffer
1520 ;; isearch-nonincremental-exit-minibuffer))
1522 ;;(defun isearch-pre-command-hook ()
1523 ;; ;;
1524 ;; ;; For use as the value of `pre-command-hook' when isearch-mode is active.
1525 ;; ;; If the command about to be executed is not one of the isearch commands,
1526 ;; ;; then isearch-mode is turned off before that command is executed.
1527 ;; ;;
1528 ;; ;; If the command about to be executed is self-insert-command, or is a
1529 ;; ;; keyboard macro of a single key sequence which is bound to self-insert-
1530 ;; ;; command, then we add those chars to the search ring instead of inserting
1531 ;; ;; them in the buffer. In this way, the set of self-searching characters
1532 ;; ;; need not be exhaustively enumerated, but is derived from other maps.
1533 ;; ;;
1534 ;; (isearch-maybe-frob-keyboard-macros)
1535 ;; (if (and (symbolp this-command)
1536 ;; (get this-command 'isearch-command))
1537 ;; nil
1538 ;; (isearch-done)))
1540 ;;(defun isearch-maybe-frob-keyboard-macros ()
1541 ;; ;;
1542 ;; ;; If the command about to be executed is `self-insert-command' then change
1543 ;; ;; the command to `isearch-printing-char' instead, meaning add the last-
1544 ;; ;; typed character to the search string.
1545 ;; ;;
1546 ;; ;; If `this-command' is a string or a vector (that is, a keyboard macro)
1547 ;; ;; and it contains only one command, which is bound to self-insert-command,
1548 ;; ;; then do the same thing as for self-inserting commands: arrange for that
1549 ;; ;; character to be added to the search string. If we didn't do this, then
1550 ;; ;; typing a compose sequence (a la x-compose.el) would terminate the search
1551 ;; ;; and insert the character, instead of searching for that character.
1552 ;; ;;
1553 ;; (cond ((eq this-command 'self-insert-command)
1554 ;; (setq this-command 'isearch-printing-char))
1555 ;; ((and (stringp this-command)
1556 ;; (eq (key-binding this-command) 'self-insert-command))
1557 ;; (setq last-command-char (aref this-command 0)
1558 ;; last-command-event (character-to-event last-command-char)
1559 ;; this-command 'isearch-printing-char))
1560 ;; ((and (vectorp this-command)
1561 ;; (eq (key-binding this-command) 'self-insert-command))
1562 ;; (let* ((desc (aref this-command 0))
1563 ;; (code (cond ((integerp desc) desc)
1564 ;; ((symbolp desc) (get desc character-set-property))
1565 ;; ((consp desc)
1566 ;; (and (null (cdr desc))
1567 ;; (get (car desc) character-set-property)))
1568 ;; (t nil))))
1569 ;; (if code
1570 ;; (setq last-command-char code
1571 ;; last-command-event (character-to-event last-command-char)
1572 ;; this-command 'isearch-printing-char))))
1573 ;; ))
1575 ;;))