Fix headers.
[bpt/emacs.git] / lisp / replace.el
CommitLineData
60370d40 1;;; replace.el --- replace commands for Emacs
c88ab9ce 2
470bbe9b 3;; Copyright (C) 1985, 86, 87, 92, 94, 96, 1997, 2000, 2001
8f3ff96b 4;; Free Software Foundation, Inc.
3a801d0c 5
698e1804
RS
6;; This file is part of GNU Emacs.
7
8;; GNU Emacs is free software; you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by
e5d77022 10;; the Free Software Foundation; either version 2, or (at your option)
698e1804
RS
11;; any later version.
12
13;; GNU Emacs is distributed in the hope that it will be useful,
14;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;; GNU General Public License for more details.
17
18;; You should have received a copy of the GNU General Public License
b578f267
EN
19;; along with GNU Emacs; see the file COPYING. If not, write to the
20;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21;; Boston, MA 02111-1307, USA.
698e1804 22
d9ecc911
ER
23;;; Commentary:
24
25;; This package supplies the string and regular-expression replace functions
26;; documented in the Emacs user's manual.
27
4f4b8eff 28;;; Code:
698e1804 29
9d325ebf 30(defcustom case-replace t
f54701d1 31 "*Non-nil means `query-replace' should preserve case in replacements."
9d325ebf
RS
32 :type 'boolean
33 :group 'matching)
77176e73 34
770970cb
RS
35(defvar query-replace-history nil)
36
151270f3
RS
37(defvar query-replace-interactive nil
38 "Non-nil means `query-replace' uses the last search string.
39That becomes the \"string to replace\".")
40
bdb1c08f 41(defcustom query-replace-from-history-variable 'query-replace-history
f54701d1 42 "History list to use for the FROM argument of `query-replace' commands.
bdb1c08f
RS
43The value of this variable should be a symbol; that symbol
44is used as a variable to hold a history list for the strings
45or patterns to be replaced."
46 :group 'matching
cd32a7ba
DN
47 :type 'symbol
48 :version "20.3")
bdb1c08f
RS
49
50(defcustom query-replace-to-history-variable 'query-replace-history
f54701d1 51 "History list to use for the TO argument of `query-replace' commands.
bdb1c08f
RS
52The value of this variable should be a symbol; that symbol
53is used as a variable to hold a history list for replacement
54strings or patterns."
55 :group 'matching
cd32a7ba
DN
56 :type 'symbol
57 :version "20.3")
bdb1c08f 58
1c4fe319
RS
59(defcustom query-replace-skip-read-only nil
60 "*Non-nil means `query-replace' and friends ignore read-only matches."
61 :type 'boolean
62 :group 'matching
63 :version "21.3")
64
151270f3 65(defun query-replace-read-args (string regexp-flag)
770970cb 66 (let (from to)
151270f3
RS
67 (if query-replace-interactive
68 (setq from (car (if regexp-flag regexp-search-ring search-ring)))
69 (setq from (read-from-minibuffer (format "%s: " string)
70 nil nil nil
bdb1c08f 71 query-replace-from-history-variable
d9291fa3
RS
72 nil t))
73 ;; Warn if user types \n or \t, but don't reject the input.
74 (if (string-match "\\\\[nt]" from)
75 (let ((match (match-string 0 from)))
76 (cond
77 ((string= match "\\n")
78 (message "Note: `\\n' here doesn't match a newline; to do that, type C-q C-j instead"))
79 ((string= match "\\t")
80 (message "Note: `\\t' here doesn't match a tab; to do that, just type TAB")))
81 (sit-for 2))))
82
770970cb
RS
83 (setq to (read-from-minibuffer (format "%s %s with: " string from)
84 nil nil nil
4a8f3b3d 85 query-replace-to-history-variable from t))
47d72254
GM
86 (if (and transient-mark-mode mark-active)
87 (list from to current-prefix-arg (region-beginning) (region-end))
88 (list from to current-prefix-arg nil nil))))
770970cb 89
47d72254 90(defun query-replace (from-string to-string &optional delimited start end)
da44e784
RM
91 "Replace some occurrences of FROM-STRING with TO-STRING.
92As each match is found, the user must type a character saying
93what to do with it. For directions, type \\[help-command] at that time.
94
7ef5c431
KH
95In Transient Mark mode, if the mark is active, operate on the contents
96of the region. Otherwise, operate from point to the end of the buffer.
97
151270f3
RS
98If `query-replace-interactive' is non-nil, the last incremental search
99string is used as FROM-STRING--you don't have to specify it with the
100minibuffer.
101
d2a0ee8b
RS
102Replacement transfers the case of the old text to the new text,
103if `case-replace' and `case-fold-search'
da44e784 104are non-nil and FROM-STRING has no uppercase letters.
9b0bf2b6
RS
105\(Preserving case means that if the string matched is all caps, or capitalized,
106then its replacement is upcased or capitalized.)
107
118a01c9 108Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
81bdc14d 109only matches surrounded by word boundaries.
47d72254 110Fourth and fifth arg START and END specify the region to operate on.
81bdc14d
RS
111
112To customize possible responses, change the \"bindings\" in `query-replace-map'."
151270f3 113 (interactive (query-replace-read-args "Query replace" nil))
99a7559f 114 (perform-replace from-string to-string t nil delimited nil nil start end))
7ef5c431 115
73fa8346 116(define-key esc-map "%" 'query-replace)
da44e784 117
47d72254 118(defun query-replace-regexp (regexp to-string &optional delimited start end)
da44e784
RM
119 "Replace some things after point matching REGEXP with TO-STRING.
120As each match is found, the user must type a character saying
121what to do with it. For directions, type \\[help-command] at that time.
122
7ef5c431
KH
123In Transient Mark mode, if the mark is active, operate on the contents
124of the region. Otherwise, operate from point to the end of the buffer.
125
151270f3
RS
126If `query-replace-interactive' is non-nil, the last incremental search
127regexp is used as REGEXP--you don't have to specify it with the
128minibuffer.
129
118a01c9 130Preserves case in each replacement if `case-replace' and `case-fold-search'
da44e784 131are non-nil and REGEXP has no uppercase letters.
47d72254 132
118a01c9 133Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
da44e784 134only matches surrounded by word boundaries.
47d72254
GM
135Fourth and fifth arg START and END specify the region to operate on.
136
118a01c9
RS
137In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
138and `\\=\\N' (where N is a digit) stands for
139 whatever what matched the Nth `\\(...\\)' in REGEXP."
151270f3 140 (interactive (query-replace-read-args "Query replace regexp" t))
99a7559f 141 (perform-replace regexp to-string t t delimited nil nil start end))
cbc127de 142(define-key esc-map [?\C-%] 'query-replace-regexp)
da44e784 143
47d72254 144(defun query-replace-regexp-eval (regexp to-expr &optional delimited start end)
84482eb3
RS
145 "Replace some things after point matching REGEXP with the result of TO-EXPR.
146As each match is found, the user must type a character saying
147what to do with it. For directions, type \\[help-command] at that time.
148
149TO-EXPR is a Lisp expression evaluated to compute each replacement. It may
150reference `replace-count' to get the number of replacements already made.
151If the result of TO-EXPR is not a string, it is converted to one using
152`prin1-to-string' with the NOESCAPE argument (which see).
153
154For convenience, when entering TO-EXPR interactively, you can use `\\&' or
470bbe9b
GM
155`\0' to stand for whatever matched the whole of REGEXP, and `\N' (where
156N is a digit) to stand for whatever matched the Nth `\(...\)' in REGEXP.
84482eb3
RS
157Use `\\#&' or `\\#N' if you want a number instead of a string.
158
159In Transient Mark mode, if the mark is active, operate on the contents
160of the region. Otherwise, operate from point to the end of the buffer.
161
162If `query-replace-interactive' is non-nil, the last incremental search
163regexp is used as REGEXP--you don't have to specify it with the
164minibuffer.
165
166Preserves case in each replacement if `case-replace' and `case-fold-search'
167are non-nil and REGEXP has no uppercase letters.
47d72254 168
84482eb3 169Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
470bbe9b 170only matches that are surrounded by word boundaries.
47d72254 171Fourth and fifth arg START and END specify the region to operate on."
84482eb3 172 (interactive
47d72254
GM
173 (let (from to start end)
174 (when (and transient-mark-mode mark-active)
175 (setq start (region-beginning)
176 end (region-end)))
84482eb3
RS
177 (if query-replace-interactive
178 (setq from (car regexp-search-ring))
179 (setq from (read-from-minibuffer "Query replace regexp: "
180 nil nil nil
181 query-replace-from-history-variable
182 nil t)))
183 (setq to (list (read-from-minibuffer
184 (format "Query replace regexp %s with eval: " from)
185 nil nil t query-replace-to-history-variable from t)))
186 ;; We make TO a list because replace-match-string-symbols requires one,
187 ;; and the user might enter a single token.
188 (replace-match-string-symbols to)
43744cb9 189 (list from (car to) current-prefix-arg start end)))
d2ce3151 190 (perform-replace regexp (cons 'replace-eval-replacement to-expr)
99a7559f 191 t t delimited nil nil start end))
84482eb3 192
47d72254 193(defun map-query-replace-regexp (regexp to-strings &optional n start end)
da44e784 194 "Replace some matches for REGEXP with various strings, in rotation.
e730be7f
DL
195The second argument TO-STRINGS contains the replacement strings,
196separated by spaces. Third arg DELIMITED (prefix arg if interactive),
197if non-nil, means replace only matches surrounded by word boundaries.
198This command works like `query-replace-regexp' except that each
199successive replacement uses the next successive replacement string,
da44e784
RM
200wrapping around from the last such string to the first.
201
7ef5c431
KH
202In Transient Mark mode, if the mark is active, operate on the contents
203of the region. Otherwise, operate from point to the end of the buffer.
204
da44e784
RM
205Non-interactively, TO-STRINGS may be a list of replacement strings.
206
151270f3
RS
207If `query-replace-interactive' is non-nil, the last incremental search
208regexp is used as REGEXP--you don't have to specify it with the minibuffer.
209
da44e784 210A prefix argument N says to use each replacement string N times
47d72254
GM
211before rotating to the next.
212Fourth and fifth arg START and END specify the region to operate on."
770970cb 213 (interactive
47d72254
GM
214 (let (from to start end)
215 (when (and transient-mark-mode mark-active)
216 (setq start (region-beginning)
217 end (region-end)))
151270f3
RS
218 (setq from (if query-replace-interactive
219 (car regexp-search-ring)
220 (read-from-minibuffer "Map query replace (regexp): "
221 nil nil nil
fce31d51 222 'query-replace-history nil t)))
770970cb
RS
223 (setq to (read-from-minibuffer
224 (format "Query replace %s with (space-separated strings): "
225 from)
226 nil nil nil
4a8f3b3d 227 'query-replace-history from t))
47d72254 228 (list from to start end current-prefix-arg)))
da44e784
RM
229 (let (replacements)
230 (if (listp to-strings)
231 (setq replacements to-strings)
232 (while (/= (length to-strings) 0)
233 (if (string-match " " to-strings)
234 (setq replacements
235 (append replacements
236 (list (substring to-strings 0
237 (string-match " " to-strings))))
238 to-strings (substring to-strings
239 (1+ (string-match " " to-strings))))
240 (setq replacements (append replacements (list to-strings))
241 to-strings ""))))
99a7559f 242 (perform-replace regexp replacements t t nil n nil start end)))
da44e784 243
47d72254 244(defun replace-string (from-string to-string &optional delimited start end)
da44e784
RM
245 "Replace occurrences of FROM-STRING with TO-STRING.
246Preserve case in each match if `case-replace' and `case-fold-search'
247are non-nil and FROM-STRING has no uppercase letters.
9b0bf2b6
RS
248\(Preserving case means that if the string matched is all caps, or capitalized,
249then its replacement is upcased or capitalized.)
250
7ef5c431
KH
251In Transient Mark mode, if the mark is active, operate on the contents
252of the region. Otherwise, operate from point to the end of the buffer.
253
118a01c9 254Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
da44e784 255only matches surrounded by word boundaries.
47d72254 256Fourth and fifth arg START and END specify the region to operate on.
da44e784 257
151270f3
RS
258If `query-replace-interactive' is non-nil, the last incremental search
259string is used as FROM-STRING--you don't have to specify it with the
260minibuffer.
261
da44e784
RM
262This function is usually the wrong thing to use in a Lisp program.
263What you probably want is a loop like this:
118a01c9
RS
264 (while (search-forward FROM-STRING nil t)
265 (replace-match TO-STRING nil t))
87532fbe
RS
266which will run faster and will not set the mark or print anything.
267\(You may need a more complex loop if FROM-STRING can match the null string
268and TO-STRING is also null.)"
151270f3 269 (interactive (query-replace-read-args "Replace string" nil))
99a7559f 270 (perform-replace from-string to-string nil nil delimited nil nil start end))
da44e784 271
47d72254 272(defun replace-regexp (regexp to-string &optional delimited start end)
da44e784 273 "Replace things after point matching REGEXP with TO-STRING.
118a01c9 274Preserve case in each match if `case-replace' and `case-fold-search'
da44e784 275are non-nil and REGEXP has no uppercase letters.
47d72254
GM
276
277In Transient Mark mode, if the mark is active, operate on the contents
278of the region. Otherwise, operate from point to the end of the buffer.
279
118a01c9 280Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
da44e784 281only matches surrounded by word boundaries.
47d72254
GM
282Fourth and fifth arg START and END specify the region to operate on.
283
118a01c9
RS
284In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
285and `\\=\\N' (where N is a digit) stands for
880f22a1 286 whatever what matched the Nth `\\(...\\)' in REGEXP.
da44e784 287
151270f3
RS
288If `query-replace-interactive' is non-nil, the last incremental search
289regexp is used as REGEXP--you don't have to specify it with the minibuffer.
290
da44e784
RM
291This function is usually the wrong thing to use in a Lisp program.
292What you probably want is a loop like this:
293 (while (re-search-forward REGEXP nil t)
118a01c9 294 (replace-match TO-STRING nil nil))
da44e784 295which will run faster and will not set the mark or print anything."
151270f3 296 (interactive (query-replace-read-args "Replace regexp" t))
99a7559f 297 (perform-replace regexp to-string nil t delimited nil nil start end))
e32eb3e6 298
4c53bd2b
RS
299\f
300(defvar regexp-history nil
301 "History list for some commands that read regular expressions.")
da44e784 302
e32eb3e6 303
31e1d920 304(defalias 'delete-non-matching-lines 'keep-lines)
e32eb3e6
GM
305(defalias 'delete-matching-lines 'flush-lines)
306(defalias 'count-matches 'how-many)
307
308
309(defun keep-lines-read-args (prompt)
310 "Read arguments for `keep-lines' and friends.
311Prompt for a regexp with PROMPT.
2ced751f
RS
312Value is a list, (REGEXP)."
313 (list (read-from-minibuffer prompt nil nil nil
314 'regexp-history nil t)))
e32eb3e6
GM
315
316(defun keep-lines (regexp &optional rstart rend)
698e1804
RS
317 "Delete all lines except those containing matches for REGEXP.
318A match split across lines preserves all the lines it lies in.
d2a0ee8b
RS
319Applies to all lines after point.
320
321If REGEXP contains upper case characters (excluding those preceded by `\\'),
e32eb3e6
GM
322the matching is case-sensitive.
323
324Second and third arg RSTART and REND specify the region to operate on.
325
2ced751f
RS
326Interactively, in Transient Mark mode when the mark is active, operate
327on the contents of the region. Otherwise, operate from point to the
328end of the buffer."
329
e32eb3e6
GM
330 (interactive
331 (keep-lines-read-args "Keep lines (containing match for regexp): "))
332 (if rstart
333 (goto-char (min rstart rend))
2ced751f
RS
334 (if (and transient-mark-mode mark-active)
335 (setq rstart (region-beginning)
336 rend (copy-marker (region-end)))
337 (setq rstart (point)
338 rend (point-max-marker)))
339 (goto-char rstart))
698e1804
RS
340 (save-excursion
341 (or (bolp) (forward-line 1))
d2a0ee8b
RS
342 (let ((start (point))
343 (case-fold-search (and case-fold-search
344 (isearch-no-upper-case-p regexp t))))
e32eb3e6 345 (while (< (point) rend)
698e1804 346 ;; Start is first char not preserved by previous match.
e32eb3e6
GM
347 (if (not (re-search-forward regexp rend 'move))
348 (delete-region start rend)
698e1804
RS
349 (let ((end (save-excursion (goto-char (match-beginning 0))
350 (beginning-of-line)
351 (point))))
352 ;; Now end is first char preserved by the new match.
353 (if (< start end)
354 (delete-region start end))))
e32eb3e6
GM
355
356 (setq start (save-excursion (forward-line 1) (point)))
698e1804 357 ;; If the match was empty, avoid matching again at same place.
e32eb3e6
GM
358 (and (< (point) rend)
359 (= (match-beginning 0) (match-end 0))
698e1804
RS
360 (forward-char 1))))))
361
e32eb3e6
GM
362
363(defun flush-lines (regexp &optional rstart rend)
698e1804
RS
364 "Delete lines containing matches for REGEXP.
365If a match is split across lines, all the lines it lies in are deleted.
d2a0ee8b
RS
366Applies to lines after point.
367
368If REGEXP contains upper case characters (excluding those preceded by `\\'),
e32eb3e6
GM
369the matching is case-sensitive.
370
371Second and third arg RSTART and REND specify the region to operate on.
372
2ced751f
RS
373Interactively, in Transient Mark mode when the mark is active, operate
374on the contents of the region. Otherwise, operate from point to the
375end of the buffer."
376
e32eb3e6
GM
377 (interactive
378 (keep-lines-read-args "Flush lines (containing match for regexp): "))
379 (if rstart
380 (goto-char (min rstart rend))
2ced751f
RS
381 (if (and transient-mark-mode mark-active)
382 (setq rstart (region-beginning)
383 rend (copy-marker (region-end)))
384 (setq rstart (point)
385 rend (point-max-marker)))
386 (goto-char rstart))
d2a0ee8b
RS
387 (let ((case-fold-search (and case-fold-search
388 (isearch-no-upper-case-p regexp t))))
389 (save-excursion
e32eb3e6
GM
390 (while (and (< (point) rend)
391 (re-search-forward regexp rend t))
d2a0ee8b
RS
392 (delete-region (save-excursion (goto-char (match-beginning 0))
393 (beginning-of-line)
394 (point))
395 (progn (forward-line 1) (point)))))))
698e1804 396
e32eb3e6
GM
397
398(defun how-many (regexp &optional rstart rend)
d2a0ee8b
RS
399 "Print number of matches for REGEXP following point.
400
401If REGEXP contains upper case characters (excluding those preceded by `\\'),
e32eb3e6
GM
402the matching is case-sensitive.
403
404Second and third arg RSTART and REND specify the region to operate on.
405
2ced751f
RS
406Interactively, in Transient Mark mode when the mark is active, operate
407on the contents of the region. Otherwise, operate from point to the
408end of the buffer."
409
e32eb3e6
GM
410 (interactive
411 (keep-lines-read-args "How many matches for (regexp): "))
f601efb0
SM
412 (save-excursion
413 (if rstart
414 (goto-char (min rstart rend))
2ced751f
RS
415 (if (and transient-mark-mode mark-active)
416 (setq rstart (region-beginning)
417 rend (copy-marker (region-end)))
418 (setq rstart (point)
419 rend (point-max-marker)))
420 (goto-char rstart))
f601efb0
SM
421 (let ((count 0)
422 opoint
423 (case-fold-search (and case-fold-search
424 (isearch-no-upper-case-p regexp t))))
425 (while (and (< (point) rend)
426 (progn (setq opoint (point))
427 (re-search-forward regexp rend t)))
428 (if (= opoint (point))
429 (forward-char 1)
430 (setq count (1+ count))))
431 (message "%d occurrences" count))))
e32eb3e6 432
4c53bd2b 433\f
f601efb0
SM
434(defvar occur-mode-map
435 (let ((map (make-sparse-keymap)))
436 (define-key map [mouse-2] 'occur-mode-mouse-goto)
437 (define-key map "\C-c\C-c" 'occur-mode-goto-occurrence)
438 (define-key map "\C-m" 'occur-mode-goto-occurrence)
439 (define-key map "\M-n" 'occur-next)
440 (define-key map "\M-p" 'occur-prev)
441 (define-key map "g" 'revert-buffer)
442 map)
443 "Keymap for `occur-mode'.")
698e1804 444
e09d4033
RS
445
446(defvar occur-buffer nil
447 "Name of buffer for last occur.")
448
449
450(defvar occur-nlines nil
451 "Number of lines of context to show around matching line.")
452
a41284da
RS
453(defvar occur-command-arguments nil
454 "Arguments that were given to `occur' when it made this buffer.")
698e1804 455
de3c9b09
RS
456(put 'occur-mode 'mode-class 'special)
457
505847d4 458(defun occur-mode ()
698e1804 459 "Major mode for output from \\[occur].
0081c8a1
RS
460\\<occur-mode-map>Move point to one of the items in this buffer, then use
461\\[occur-mode-goto-occurrence] to go to the occurrence that the item refers to.
462Alternatively, click \\[occur-mode-mouse-goto] on an item to go to it.
463
698e1804 464\\{occur-mode-map}"
505847d4
RS
465 (kill-all-local-variables)
466 (use-local-map occur-mode-map)
467 (setq major-mode 'occur-mode)
468 (setq mode-name "Occur")
469 (make-local-variable 'revert-buffer-function)
470 (setq revert-buffer-function 'occur-revert-function)
f601efb0 471 (set (make-local-variable 'revert-buffer-function) 'occur-revert-function)
698e1804
RS
472 (make-local-variable 'occur-buffer)
473 (make-local-variable 'occur-nlines)
505847d4
RS
474 (make-local-variable 'occur-command-arguments)
475 (run-hooks 'occur-mode-hook))
698e1804 476
a41284da 477(defun occur-revert-function (ignore1 ignore2)
f54701d1 478 "Handle `revert-buffer' for *Occur* buffers."
a41284da
RS
479 (let ((args occur-command-arguments ))
480 (save-excursion
481 (set-buffer occur-buffer)
482 (apply 'occur args))))
483
78bead73
RS
484(defun occur-mode-mouse-goto (event)
485 "In Occur mode, go to the occurrence whose line you click on."
486 (interactive "e")
487 (let (buffer pos)
488 (save-excursion
489 (set-buffer (window-buffer (posn-window (event-end event))))
490 (save-excursion
491 (goto-char (posn-point (event-end event)))
492 (setq pos (occur-mode-find-occurrence))
493 (setq buffer occur-buffer)))
494 (pop-to-buffer buffer)
495 (goto-char (marker-position pos))))
496
497(defun occur-mode-find-occurrence ()
698e1804
RS
498 (if (or (null occur-buffer)
499 (null (buffer-name occur-buffer)))
500 (progn
8d15583f 501 (setq occur-buffer nil)
698e1804 502 (error "Buffer in which occurrences were found is deleted")))
8d15583f
RS
503 (let ((pos (get-text-property (point) 'occur)))
504 (if (null pos)
505 (error "No occurrence on this line")
506 pos)))
78bead73
RS
507
508(defun occur-mode-goto-occurrence ()
509 "Go to the occurrence the current line describes."
510 (interactive)
511 (let ((pos (occur-mode-find-occurrence)))
698e1804 512 (pop-to-buffer occur-buffer)
121e2227 513 (goto-char (marker-position pos))))
8d15583f
RS
514
515(defun occur-next (&optional n)
516 "Move to the Nth (default 1) next match in the *Occur* buffer."
517 (interactive "p")
518 (if (not n) (setq n 1))
519 (let ((r))
520 (while (> n 0)
521 (if (get-text-property (point) 'occur-point)
522 (forward-char 1))
523 (setq r (next-single-property-change (point) 'occur-point))
524 (if r
525 (goto-char r)
e730be7f 526 (error "No more matches"))
8d15583f
RS
527 (setq n (1- n)))))
528
529
530
531(defun occur-prev (&optional n)
532 "Move to the Nth (default 1) previous match in the *Occur* buffer."
533 (interactive "p")
534 (if (not n) (setq n 1))
535 (let ((r))
536 (while (> n 0)
537
538 (setq r (get-text-property (point) 'occur-point))
539 (if r (forward-char -1))
540
541 (setq r (previous-single-property-change (point) 'occur-point))
542 (if r
543 (goto-char (- r 1))
e730be7f 544 (error "No earlier matches"))
8d15583f
RS
545
546 (setq n (1- n)))))
4c53bd2b 547\f
9d325ebf 548(defcustom list-matching-lines-default-context-lines 0
e730be7f
DL
549 "*Default number of context lines included around `list-matching-lines' matches.
550A negative number means to include that many lines before the match.
9d325ebf
RS
551A positive number means to include that many lines both before and after."
552 :type 'integer
553 :group 'matching)
698e1804 554
31e1d920 555(defalias 'list-matching-lines 'occur)
698e1804 556
c9daced0 557(defvar list-matching-lines-face 'bold
e730be7f 558 "*Face used by \\[list-matching-lines] to show the text that matches.
c9daced0
RS
559If the value is nil, don't highlight the matching portions specially.")
560
698e1804 561(defun occur (regexp &optional nlines)
99976f85 562 "Show all lines in the current buffer containing a match for REGEXP.
da44e784
RM
563
564If a match spreads across multiple lines, all those lines are shown.
698e1804 565
da44e784
RM
566Each line is displayed with NLINES lines before and after, or -NLINES
567before if NLINES is negative.
568NLINES defaults to `list-matching-lines-default-context-lines'.
698e1804
RS
569Interactively it is the prefix arg.
570
4c53bd2b 571The lines are shown in a buffer named `*Occur*'.
698e1804 572It serves as a menu to find any of the occurrences in this buffer.
de3c9b09 573\\<occur-mode-map>\\[describe-mode] in that buffer will explain how.
9483d601 574
de3c9b09
RS
575If REGEXP contains upper case characters (excluding those preceded by `\\'),
576the matching is case-sensitive."
a5dfed3e
RS
577 (interactive
578 (list (let* ((default (car regexp-history))
579 (input
580 (read-from-minibuffer
581 (if default
582 (format "List lines matching regexp (default `%s'): "
583 default)
584 "List lines matching regexp: ")
aeab5be0 585 nil nil nil 'regexp-history default t)))
4a8f3b3d
RS
586 (and (equal input "") default
587 (setq input default))
aeab5be0 588 input)
a5dfed3e 589 current-prefix-arg))
d79dfd47
GM
590 (let* ((nlines (if nlines
591 (prefix-numeric-value nlines)
592 list-matching-lines-default-context-lines))
593 (current-tab-width tab-width)
ae13fc3c 594 (inhibit-read-only t)
d79dfd47
GM
595 ;; Minimum width of line number plus trailing colon.
596 (min-line-number-width 6)
9043c1c3
GM
597 ;; Width of line number prefix without the colon. Choose a
598 ;; width that's a multiple of `tab-width' in the original
599 ;; buffer so that lines in *Occur* appear right.
600 (line-number-width (1- (* (/ (- (+ min-line-number-width
601 tab-width)
602 1)
603 tab-width)
604 tab-width)))
d79dfd47
GM
605 ;; Format string for line numbers.
606 (line-number-format (format "%%%dd" line-number-width))
607 (empty (make-string line-number-width ?\ ))
608 (first t)
609 ;;flag to prevent printing separator for first match
610 (occur-num-matches 0)
611 (buffer (current-buffer))
612 (dir default-directory)
613 (linenum 1)
614 (prevpos
615 ;;position of most recent match
616 (point-min))
617 (case-fold-search (and case-fold-search
618 (isearch-no-upper-case-p regexp t)))
619 (final-context-start
620 ;; Marker to the start of context immediately following
621 ;; the matched text in *Occur*.
622 (make-marker)))
99976f85
RS
623;;; (save-excursion
624;;; (beginning-of-line)
625;;; (setq linenum (1+ (count-lines (point-min) (point))))
626;;; (setq prevpos (point)))
016c214f
RS
627 (save-excursion
628 (goto-char (point-min))
629 ;; Check first whether there are any matches at all.
630 (if (not (re-search-forward regexp nil t))
631 (message "No matches for `%s'" regexp)
632 ;; Back up, so the search loop below will find the first match.
633 (goto-char (match-beginning 0))
634 (with-output-to-temp-buffer "*Occur*"
635 (save-excursion
636 (set-buffer standard-output)
637 (setq default-directory dir)
638 ;; We will insert the number of lines, and "lines", later.
639 (insert " matching ")
640 (let ((print-escape-newlines t))
641 (prin1 regexp))
642 (insert " in buffer " (buffer-name buffer) ?. ?\n)
643 (occur-mode)
644 (setq occur-buffer buffer)
645 (setq occur-nlines nlines)
a41284da
RS
646 (setq occur-command-arguments
647 (list regexp nlines)))
016c214f 648 (if (eq buffer standard-output)
91c6bdc0 649 (goto-char (point-max)))
016c214f
RS
650 (save-excursion
651 ;; Find next match, but give up if prev match was at end of buffer.
dd4e0e55 652 (while (and (not (eobp))
016c214f
RS
653 (re-search-forward regexp nil t))
654 (goto-char (match-beginning 0))
655 (beginning-of-line)
656 (save-match-data
657 (setq linenum (+ linenum (count-lines prevpos (point)))))
658 (setq prevpos (point))
659 (goto-char (match-end 0))
d79dfd47
GM
660 (let* (;;start point of text in source buffer to be put
661 ;;into *Occur*
662 (start (save-excursion
016c214f 663 (goto-char (match-beginning 0))
e09d4033
RS
664 (forward-line (if (< nlines 0)
665 nlines
666 (- nlines)))
016c214f 667 (point)))
e09d4033
RS
668 ;; end point of text in source buffer to be put
669 ;; into *Occur*
d79dfd47
GM
670 (end (save-excursion
671 (goto-char (match-end 0))
672 (if (> nlines 0)
673 (forward-line (1+ nlines))
674 (forward-line 1))
675 (point)))
e09d4033 676 ;; Amount of context before matching text
d79dfd47 677 (match-beg (- (match-beginning 0) start))
e09d4033 678 ;; Length of matching text
d79dfd47
GM
679 (match-len (- (match-end 0) (match-beginning 0)))
680 (tag (format line-number-format linenum))
e730be7f 681 tem
0f0a7f7c 682 insertion-start
e09d4033 683 ;; Number of lines of context to show for current match.
e730be7f 684 occur-marker
e09d4033
RS
685 ;; Marker pointing to end of match in source buffer.
686 (text-beg
687 ;; Marker pointing to start of text for one
688 ;; match in *Occur*.
689 (make-marker))
e730be7f 690 (text-end
e09d4033
RS
691 ;; Marker pointing to end of text for one match
692 ;; in *Occur*.
d79dfd47 693 (make-marker)))
016c214f 694 (save-excursion
8d15583f
RS
695 (setq occur-marker (make-marker))
696 (set-marker occur-marker (point))
016c214f 697 (set-buffer standard-output)
8d15583f 698 (setq occur-num-matches (1+ occur-num-matches))
016c214f
RS
699 (or first (zerop nlines)
700 (insert "--------\n"))
701 (setq first nil)
d79dfd47
GM
702 (save-excursion
703 (set-buffer "*Occur*")
704 (setq tab-width current-tab-width))
e09d4033
RS
705
706 ;; Insert matching text including context lines from
707 ;; source buffer into *Occur*
8d15583f 708 (set-marker text-beg (point))
0f0a7f7c 709 (setq insertion-start (point))
016c214f 710 (insert-buffer-substring buffer start end)
0f0a7f7c
KH
711 (or (and (/= (+ start match-beg) end)
712 (with-current-buffer buffer
713 (eq (char-before end) ?\n)))
714 (insert "\n"))
e730be7f 715 (set-marker final-context-start
0f0a7f7c
KH
716 (+ (- (point) (- end (match-end 0)))
717 (if (save-excursion
718 (set-buffer buffer)
719 (save-excursion
720 (goto-char (match-end 0))
721 (end-of-line)
722 (bolp)))
723 1 0)))
8d15583f 724 (set-marker text-end (point))
e09d4033
RS
725
726 ;; Highlight text that was matched.
8d15583f
RS
727 (if list-matching-lines-face
728 (put-text-property
729 (+ (marker-position text-beg) match-beg)
730 (+ (marker-position text-beg) match-beg match-len)
731 'face list-matching-lines-face))
732
e09d4033
RS
733 ;; `occur-point' property is used by occur-next and
734 ;; occur-prev to move between matching lines.
8d15583f
RS
735 (put-text-property
736 (+ (marker-position text-beg) match-beg match-len)
737 (+ (marker-position text-beg) match-beg match-len 1)
738 'occur-point t)
e09d4033
RS
739
740 ;; Now go back to the start of the matching text
741 ;; adding the space and colon to the start of each line.
0f0a7f7c 742 (goto-char insertion-start)
e09d4033 743 ;; Insert space and colon for lines of context before match.
8d15583f
RS
744 (setq tem (if (< linenum nlines)
745 (- nlines linenum)
746 nlines))
016c214f
RS
747 (while (> tem 0)
748 (insert empty ?:)
749 (forward-line 1)
750 (setq tem (1- tem)))
e09d4033
RS
751
752 ;; Insert line number and colon for the lines of
753 ;; matching text.
754 (let ((this-linenum linenum))
016c214f
RS
755 (while (< (point) final-context-start)
756 (if (null tag)
d79dfd47 757 (setq tag (format line-number-format this-linenum)))
016c214f 758 (insert tag ?:)
016c214f
RS
759 (forward-line 1)
760 (setq tag nil)
761 (setq this-linenum (1+ this-linenum)))
0f0a7f7c 762 (while (and (not (eobp)) (<= (point) final-context-start))
016c214f
RS
763 (insert empty ?:)
764 (forward-line 1)
765 (setq this-linenum (1+ this-linenum))))
e09d4033
RS
766
767 ;; Insert space and colon for lines of context after match.
8d15583f 768 (while (and (< (point) (point-max)) (< tem nlines))
016c214f
RS
769 (insert empty ?:)
770 (forward-line 1)
771 (setq tem (1+ tem)))
8d15583f
RS
772
773 ;; Add text properties. The `occur' prop is used to
774 ;; store the marker of the matching text in the
775 ;; source buffer.
2ddf19df
EZ
776 (add-text-properties
777 (marker-position text-beg) (- (marker-position text-end) 1)
778 '(mouse-face highlight
779 help-echo "mouse-2: go to this occurence"))
8d15583f 780 (put-text-property (marker-position text-beg)
e09d4033 781 (marker-position text-end)
8d15583f 782 'occur occur-marker)
016c214f
RS
783 (goto-char (point-max)))
784 (forward-line 1)))
785 (set-buffer standard-output)
e09d4033
RS
786 ;; Go back to top of *Occur* and finish off by printing the
787 ;; number of matching lines.
016c214f 788 (goto-char (point-min))
65b4665c 789 (let ((message-string
8d15583f 790 (if (= occur-num-matches 1)
65b4665c 791 "1 line"
8d15583f 792 (format "%d lines" occur-num-matches))))
65b4665c
RS
793 (insert message-string)
794 (if (interactive-p)
5ddf4bda
KH
795 (message "%s matched" message-string)))
796 (setq buffer-read-only t)))))))
698e1804 797\f
81bdc14d
RS
798;; It would be nice to use \\[...], but there is no reasonable way
799;; to make that display both SPC and Y.
698e1804
RS
800(defconst query-replace-help
801 "Type Space or `y' to replace one match, Delete or `n' to skip to next,
be44f62c 802RET or `q' to exit, Period to replace one match and exit,
698e1804
RS
803Comma to replace but not move point immediately,
804C-r to enter recursive edit (\\[exit-recursive-edit] to get out again),
805C-w to delete match and recursive edit,
806C-l to clear the screen, redisplay, and offer same replacement again,
807! to replace all remaining matches with no more questions,
7ce278f3
GM
808^ to move point back to previous match,
809E to edit the replacement string"
f54701d1 810 "Help message while in `query-replace'.")
698e1804 811
81bdc14d
RS
812(defvar query-replace-map (make-sparse-keymap)
813 "Keymap that defines the responses to questions in `query-replace'.
814The \"bindings\" in this map are not commands; they are answers.
815The valid answers include `act', `skip', `act-and-show',
816`exit', `act-and-exit', `edit', `delete-and-edit', `recenter',
d9121bc0 817`automatic', `backup', `exit-prefix', and `help'.")
81bdc14d
RS
818
819(define-key query-replace-map " " 'act)
820(define-key query-replace-map "\d" 'skip)
821(define-key query-replace-map [delete] 'skip)
9275e5e3 822(define-key query-replace-map [backspace] 'skip)
81bdc14d
RS
823(define-key query-replace-map "y" 'act)
824(define-key query-replace-map "n" 'skip)
633a305a
RS
825(define-key query-replace-map "Y" 'act)
826(define-key query-replace-map "N" 'skip)
34724fcb 827(define-key query-replace-map "e" 'edit-replacement)
7ce278f3 828(define-key query-replace-map "E" 'edit-replacement)
81bdc14d 829(define-key query-replace-map "," 'act-and-show)
81bdc14d 830(define-key query-replace-map "q" 'exit)
919592c0 831(define-key query-replace-map "\r" 'exit)
384c7da4 832(define-key query-replace-map [return] 'exit)
81bdc14d
RS
833(define-key query-replace-map "." 'act-and-exit)
834(define-key query-replace-map "\C-r" 'edit)
835(define-key query-replace-map "\C-w" 'delete-and-edit)
836(define-key query-replace-map "\C-l" 'recenter)
837(define-key query-replace-map "!" 'automatic)
838(define-key query-replace-map "^" 'backup)
839(define-key query-replace-map "\C-h" 'help)
e731045a
KH
840(define-key query-replace-map [f1] 'help)
841(define-key query-replace-map [help] 'help)
81bdc14d 842(define-key query-replace-map "?" 'help)
bc6312e1
RS
843(define-key query-replace-map "\C-g" 'quit)
844(define-key query-replace-map "\C-]" 'quit)
d9121bc0
RS
845(define-key query-replace-map "\e" 'exit-prefix)
846(define-key query-replace-map [escape] 'exit-prefix)
81bdc14d 847
84482eb3 848(defun replace-match-string-symbols (n)
e730be7f
DL
849 "Process a list (and any sub-lists), expanding certain symbols.
850Symbol Expands To
851N (match-string N) (where N is a string of digits)
852#N (string-to-number (match-string N))
853& (match-string 0)
854#& (string-to-number (match-string 0))
855
856Note that these symbols must be preceeded by a backslash in order to
857type them."
84482eb3
RS
858 (while n
859 (cond
860 ((consp (car n))
861 (replace-match-string-symbols (car n))) ;Process sub-list
862 ((symbolp (car n))
863 (let ((name (symbol-name (car n))))
864 (cond
865 ((string-match "^[0-9]+$" name)
866 (setcar n (list 'match-string (string-to-number name))))
867 ((string-match "^#[0-9]+$" name)
868 (setcar n (list 'string-to-number
869 (list 'match-string
870 (string-to-number (substring name 1))))))
871 ((string= "&" name)
872 (setcar n '(match-string 0)))
873 ((string= "#&" name)
874 (setcar n '(string-to-number (match-string 0))))))))
875 (setq n (cdr n))))
876
877(defun replace-eval-replacement (expression replace-count)
878 (let ((replacement (eval expression)))
879 (if (stringp replacement)
880 replacement
881 (prin1-to-string replacement t))))
882
883(defun replace-loop-through-replacements (data replace-count)
884 ;; DATA is a vector contaning the following values:
885 ;; 0 next-rotate-count
886 ;; 1 repeat-count
887 ;; 2 next-replacement
888 ;; 3 replacements
889 (if (= (aref data 0) replace-count)
890 (progn
891 (aset data 0 (+ replace-count (aref data 1)))
892 (let ((next (cdr (aref data 2))))
893 (aset data 2 (if (consp next) next (aref data 3))))))
894 (car (aref data 2)))
895
99a7559f 896(defun perform-replace (from-string replacements
698e1804 897 query-flag regexp-flag delimited-flag
99a7559f 898 &optional repeat-count map start end)
698e1804
RS
899 "Subroutine of `query-replace'. Its complexity handles interactive queries.
900Don't use this in your own program unless you want to query and set the mark
901just as `query-replace' does. Instead, write a simple loop like this:
698665d1
GM
902
903 (while (re-search-forward \"foo[ \\t]+bar\" nil t)
698e1804 904 (replace-match \"foobar\" nil nil))
698665d1
GM
905
906which will run faster and probably do exactly what you want. Please
907see the documentation of `replace-match' to find out how to simulate
908`case-replace'."
81bdc14d 909 (or map (setq map query-replace-map))
1c1dadab
RS
910 (and query-flag minibuffer-auto-raise
911 (raise-frame (window-frame (minibuffer-window))))
698e1804
RS
912 (let ((nocasify (not (and case-fold-search case-replace
913 (string-equal from-string
914 (downcase from-string)))))
5a78b471
KH
915 (case-fold-search (and case-fold-search
916 (string-equal from-string
917 (downcase from-string))))
698e1804
RS
918 (literal (not regexp-flag))
919 (search-function (if regexp-flag 're-search-forward 'search-forward))
920 (search-string from-string)
e5d77022 921 (real-match-data nil) ; the match data for the current match
698e1804 922 (next-replacement nil)
698e1804
RS
923 (keep-going t)
924 (stack nil)
698e1804 925 (replace-count 0)
5632eb27
PE
926 (nonempty-match nil)
927
7ef5c431
KH
928 ;; If non-nil, it is marker saying where in the buffer to stop.
929 (limit nil)
930
5632eb27
PE
931 ;; Data for the next match. If a cons, it has the same format as
932 ;; (match-data); otherwise it is t if a match is possible at point.
ae4eb03c 933 (match-again t)
5632eb27 934
02d95a27
RS
935 (message
936 (if query-flag
937 (substitute-command-keys
938 "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) "))))
7ef5c431
KH
939
940 ;; If region is active, in Transient Mark mode, operate on region.
47d72254
GM
941 (when start
942 (setq limit (copy-marker (max start end)))
943 (goto-char (min start end))
944 (deactivate-mark))
84482eb3
RS
945
946 ;; REPLACEMENTS is either a string, a list of strings, or a cons cell
947 ;; containing a function and its first argument. The function is
948 ;; called to generate each replacement like this:
949 ;; (funcall (car replacements) (cdr replacements) replace-count)
950 ;; It must return a string.
951 (cond
952 ((stringp replacements)
953 (setq next-replacement replacements
954 replacements nil))
955 ((stringp (car replacements)) ; If it isn't a string, it must be a cons
956 (or repeat-count (setq repeat-count 1))
957 (setq replacements (cons 'replace-loop-through-replacements
958 (vector repeat-count repeat-count
959 replacements replacements)))))
960
698e1804
RS
961 (if delimited-flag
962 (setq search-function 're-search-forward
963 search-string (concat "\\b"
964 (if regexp-flag from-string
965 (regexp-quote from-string))
966 "\\b")))
967 (push-mark)
968 (undo-boundary)
e782e9f2
RS
969 (unwind-protect
970 ;; Loop finding occurrences that perhaps should be replaced.
971 (while (and keep-going
972 (not (eobp))
5632eb27
PE
973 ;; Use the next match if it is already known;
974 ;; otherwise, search for a match after moving forward
975 ;; one char if progress is required.
976 (setq real-match-data
977 (if (consp match-again)
978 (progn (goto-char (nth 1 match-again))
979 match-again)
980 (and (or match-again
889617de
GM
981 ;; MATCH-AGAIN non-nil means we
982 ;; accept an adjacent match. If
983 ;; we don't, move one char to the
984 ;; right. This takes us a
985 ;; character too far at the end,
986 ;; but this is undone after the
987 ;; while-loop.
8f3ff96b 988 (progn (forward-char 1) (not (eobp))))
7ef5c431 989 (funcall search-function search-string limit t)
5632eb27
PE
990 ;; For speed, use only integers and
991 ;; reuse the list used last time.
992 (match-data t real-match-data)))))
1c4fe319
RS
993 ;; Optionally ignore matches that have a read-only property.
994 (unless (and query-replace-skip-read-only
995 (text-property-not-all
996 (match-beginning 0) (match-end 0)
997 'read-only nil))
998
999 ;; Record whether the match is nonempty, to avoid an infinite loop
1000 ;; repeatedly matching the same empty string.
1001 (setq nonempty-match
1002 (/= (nth 0 real-match-data) (nth 1 real-match-data)))
1003
1004 ;; If the match is empty, record that the next one can't be
1005 ;; adjacent.
1006
1007 ;; Otherwise, if matching a regular expression, do the next
1008 ;; match now, since the replacement for this match may
1009 ;; affect whether the next match is adjacent to this one.
1010 ;; If that match is empty, don't use it.
1011 (setq match-again
1012 (and nonempty-match
1013 (or (not regexp-flag)
1014 (and (looking-at search-string)
1015 (let ((match (match-data)))
1016 (and (/= (nth 0 match) (nth 1 match))
1017 match))))))
1018
1019 ;; Calculate the replacement string, if necessary.
1020 (when replacements
1021 (set-match-data real-match-data)
1022 (setq next-replacement
1023 (funcall (car replacements) (cdr replacements)
1024 replace-count)))
1025 (if (not query-flag)
1026 (let ((inhibit-read-only query-replace-skip-read-only))
1027 (set-match-data real-match-data)
1028 (replace-match next-replacement nocasify literal)
1029 (setq replace-count (1+ replace-count)))
1030 (undo-boundary)
1031 (let (done replaced key def)
1032 ;; Loop reading commands until one of them sets done,
1033 ;; which means it has finished handling this occurrence.
1034 (while (not done)
1035 (set-match-data real-match-data)
1036 (replace-highlight (match-beginning 0) (match-end 0))
1037 ;; Bind message-log-max so we don't fill up the message log
1038 ;; with a bunch of identical messages.
1039 (let ((message-log-max nil))
1040 (message message from-string next-replacement))
1041 (setq key (read-event))
1042 ;; Necessary in case something happens during read-event
1043 ;; that clobbers the match data.
1044 (set-match-data real-match-data)
1045 (setq key (vector key))
1046 (setq def (lookup-key map key))
1047 ;; Restore the match data while we process the command.
1048 (cond ((eq def 'help)
1049 (with-output-to-temp-buffer "*Help*"
1050 (princ
1051 (concat "Query replacing "
1052 (if regexp-flag "regexp " "")
1053 from-string " with "
1054 next-replacement ".\n\n"
1055 (substitute-command-keys
1056 query-replace-help)))
1057 (with-current-buffer standard-output
1058 (help-mode))))
1059 ((eq def 'exit)
1060 (setq keep-going nil)
1061 (setq done t))
1062 ((eq def 'backup)
1063 (if stack
1064 (let ((elt (car stack)))
1065 (goto-char (car elt))
1066 (setq replaced (eq t (cdr elt)))
1067 (or replaced
1068 (set-match-data (cdr elt)))
1069 (setq stack (cdr stack)))
1070 (message "No previous match")
1071 (ding 'no-terminate)
1072 (sit-for 1)))
1073 ((eq def 'act)
1074 (or replaced
1075 (progn
1076 (replace-match next-replacement nocasify literal)
1077 (setq replace-count (1+ replace-count))))
1078 (setq done t replaced t))
1079 ((eq def 'act-and-exit)
1080 (or replaced
1081 (progn
1082 (replace-match next-replacement nocasify literal)
1083 (setq replace-count (1+ replace-count))))
1084 (setq keep-going nil)
1085 (setq done t replaced t))
1086 ((eq def 'act-and-show)
1087 (if (not replaced)
1088 (progn
1089 (replace-match next-replacement nocasify literal)
1090 (setq replace-count (1+ replace-count))
1091 (setq replaced t))))
1092 ((eq def 'automatic)
1093 (or replaced
1094 (progn
1095 (replace-match next-replacement nocasify literal)
1096 (setq replace-count (1+ replace-count))))
1097 (setq done t query-flag nil replaced t))
1098 ((eq def 'skip)
1099 (setq done t))
1100 ((eq def 'recenter)
1101 (recenter nil))
1102 ((eq def 'edit)
1103 (let ((opos (point-marker)))
1104 (goto-char (match-beginning 0))
1105 (save-excursion
1106 (funcall search-function search-string limit t)
1107 (setq real-match-data (match-data)))
1108 (save-excursion (recursive-edit))
1109 (goto-char opos))
1110 (set-match-data real-match-data)
1111 ;; Before we make the replacement,
1112 ;; decide whether the search string
1113 ;; can match again just after this match.
1114 (if (and regexp-flag nonempty-match)
1115 (setq match-again (and (looking-at search-string)
1116 (match-data)))))
7ce278f3 1117
1c4fe319
RS
1118 ;; Edit replacement.
1119 ((eq def 'edit-replacement)
1120 (setq next-replacement
1121 (read-input "Edit replacement string: "
1122 next-replacement))
1123 (or replaced
1124 (replace-match next-replacement nocasify literal))
1125 (setq done t))
7ce278f3 1126
1c4fe319
RS
1127 ((eq def 'delete-and-edit)
1128 (delete-region (match-beginning 0) (match-end 0))
1129 (set-match-data
1130 (prog1 (match-data)
1131 (save-excursion (recursive-edit))))
1132 (setq replaced t))
1133 ;; Note: we do not need to treat `exit-prefix'
1134 ;; specially here, since we reread
1135 ;; any unrecognized character.
1136 (t
1137 (setq this-command 'mode-exited)
1138 (setq keep-going nil)
1139 (setq unread-command-events
1140 (append (listify-key-sequence key)
1141 unread-command-events))
1142 (setq done t))))
1143 ;; Record previous position for ^ when we move on.
1144 ;; Change markers to numbers in the match data
1145 ;; since lots of markers slow down editing.
1146 (setq stack
1147 (cons (cons (point)
1148 (or replaced (match-data t)))
1149 stack))))))
889617de
GM
1150
1151 ;; The code preventing adjacent regexp matches in the condition
1152 ;; of the while-loop above will haven taken us one character
1153 ;; beyond the last replacement. Undo that.
1154 (when (and regexp-flag (not match-again) (> replace-count 0))
1155 (backward-char 1))
1156
e782e9f2 1157 (replace-dehighlight))
4d33492a
RS
1158 (or unread-command-events
1159 (message "Replaced %d occurrence%s"
1160 replace-count
1161 (if (= replace-count 1) "" "s")))
1162 (and keep-going stack)))
698e1804 1163
95807e68 1164(defcustom query-replace-highlight t
9d325ebf
RS
1165 "*Non-nil means to highlight words during query replacement."
1166 :type 'boolean
1167 :group 'matching)
e782e9f2
RS
1168
1169(defvar replace-overlay nil)
1170
1171(defun replace-dehighlight ()
1172 (and replace-overlay
1173 (progn
1174 (delete-overlay replace-overlay)
1175 (setq replace-overlay nil))))
1176
1177(defun replace-highlight (start end)
1178 (and query-replace-highlight
1179 (progn
1180 (or replace-overlay
1181 (progn
1182 (setq replace-overlay (make-overlay start end))
1183 (overlay-put replace-overlay 'face
e730be7f 1184 (if (facep 'query-replace)
e782e9f2
RS
1185 'query-replace 'region))))
1186 (move-overlay replace-overlay start end (current-buffer)))))
1187
c88ab9ce 1188;;; replace.el ends here