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