* syssignal.h: Declare main_thread.
[bpt/emacs.git] / lisp / replace.el
CommitLineData
60370d40 1;;; replace.el --- replace commands for Emacs
c88ab9ce 2
6f1df6d9
SM
3;; Copyright (C) 1985, 1986, 1987, 1992, 1994, 1996, 1997, 2000, 2001, 2002,
4;; 2003, 2004 Free Software Foundation, Inc.
3a801d0c 5
30764597
PJ
6;; Maintainer: FSF
7
698e1804
RS
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
e5d77022 12;; the Free Software Foundation; either version 2, or (at your option)
698e1804
RS
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
b578f267
EN
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
698e1804 24
d9ecc911
ER
25;;; Commentary:
26
27;; This package supplies the string and regular-expression replace functions
28;; documented in the Emacs user's manual.
29
4f4b8eff 30;;; Code:
698e1804 31
9d325ebf 32(defcustom case-replace t
f54701d1 33 "*Non-nil means `query-replace' should preserve case in replacements."
9d325ebf
RS
34 :type 'boolean
35 :group 'matching)
77176e73 36
770970cb
RS
37(defvar query-replace-history nil)
38
5291cbca 39(defvar query-replace-interactive nil
151270f3 40 "Non-nil means `query-replace' uses the last search string.
5291cbca 41That becomes the \"string to replace\".")
151270f3 42
bdb1c08f 43(defcustom query-replace-from-history-variable 'query-replace-history
f54701d1 44 "History list to use for the FROM argument of `query-replace' commands.
bdb1c08f
RS
45The value of this variable should be a symbol; that symbol
46is used as a variable to hold a history list for the strings
47or patterns to be replaced."
48 :group 'matching
cd32a7ba
DN
49 :type 'symbol
50 :version "20.3")
bdb1c08f
RS
51
52(defcustom query-replace-to-history-variable 'query-replace-history
f54701d1 53 "History list to use for the TO argument of `query-replace' commands.
bdb1c08f
RS
54The value of this variable should be a symbol; that symbol
55is used as a variable to hold a history list for replacement
56strings or patterns."
57 :group 'matching
cd32a7ba
DN
58 :type 'symbol
59 :version "20.3")
bdb1c08f 60
1c4fe319
RS
61(defcustom query-replace-skip-read-only nil
62 "*Non-nil means `query-replace' and friends ignore read-only matches."
63 :type 'boolean
64 :group 'matching
89e7ad59 65 :version "21.4")
1c4fe319 66
6f1df6d9
SM
67(defun query-replace-descr (string)
68 (mapconcat 'isearch-text-char-description string ""))
69
1606466a 70(defun query-replace-read-from (string regexp-flag)
6f1df6d9
SM
71 "Query and return the `from' argument of a query-replace operation.
72The return value can also be a pair (FROM . TO) indicating that the user
73wants to replace FROM with TO."
1606466a
SM
74 (if query-replace-interactive
75 (car (if regexp-flag regexp-search-ring search-ring))
6f1df6d9
SM
76 (let* ((lastfrom (car (symbol-value query-replace-from-history-variable)))
77 (lastto (car (symbol-value query-replace-to-history-variable)))
78 (from
1606466a
SM
79 ;; The save-excursion here is in case the user marks and copies
80 ;; a region in order to specify the minibuffer input.
81 ;; That should not clobber the region for the query-replace itself.
82 (save-excursion
6f1df6d9
SM
83 (when (equal lastfrom lastto)
84 ;; Typically, this is because the two histlists are shared.
85 (setq lastfrom (cadr (symbol-value
86 query-replace-from-history-variable))))
1606466a 87 (read-from-minibuffer
6f1df6d9
SM
88 (if (and lastto lastfrom)
89 (format "%s (default %s -> %s): " string
90 (query-replace-descr lastfrom)
91 (query-replace-descr lastto))
92 (format "%s: " string))
1606466a
SM
93 nil nil nil
94 query-replace-from-history-variable
bbe9f175 95 nil t t))))
6f1df6d9 96 (if (and (zerop (length from)) lastto lastfrom)
78629844
DK
97 (cons lastfrom
98 (query-replace-compile-replacement lastto regexp-flag))
6f1df6d9
SM
99 ;; Warn if user types \n or \t, but don't reject the input.
100 (and regexp-flag
101 (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\(\\\\[nt]\\)" from)
102 (let ((match (match-string 3 from)))
103 (cond
104 ((string= match "\\n")
105 (message "Note: `\\n' here doesn't match a newline; to do that, type C-q C-j instead"))
106 ((string= match "\\t")
107 (message "Note: `\\t' here doesn't match a tab; to do that, just type TAB")))
108 (sit-for 2)))
109 from))))
1606466a 110
78629844
DK
111(defun query-replace-compile-replacement (to regexp-flag)
112 "Maybe convert a regexp replacement TO to Lisp.
113Returns a list suitable for `perform-replace' if necessary,
114the original string if not."
115 (if (and regexp-flag
116 (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\\\[,#]" to))
7c1c02ac
DK
117 (let (pos list char)
118 (while
119 (progn
120 (setq pos (match-end 0))
121 (push (substring to 0 (- pos 2)) list)
122 (setq char (aref to (1- pos))
123 to (substring to pos))
124 (cond ((eq char ?\#)
125 (push '(number-to-string replace-count) list))
126 ((eq char ?\,)
127 (setq pos (read-from-string to))
128 (push `(replace-quote ,(car pos)) list)
9e5d1b63
RS
129 (let ((end
130 ;; Swallow a space after a symbol
131 ;; if there is a space.
132 (if (and (or (symbolp (car pos))
133 ;; Swallow a space after 'foo
134 ;; but not after (quote foo).
135 (and (eq (car-safe (car pos)) 'quote)
f1f6079c
JL
136 (not (= ?\( (aref to 0)))))
137 (eq (string-match " " to (cdr pos))
138 (cdr pos)))
9e5d1b63
RS
139 (1+ (cdr pos))
140 (cdr pos))))
141 (setq to (substring to end)))))
7c1c02ac 142 (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\\\[,#]" to)))
78629844
DK
143 (setq to (nreverse (delete "" (cons to list))))
144 (replace-match-string-symbols to)
145 (cons 'replace-eval-replacement
146 (if (cdr to)
147 (cons 'concat to)
148 (car to))))
1606466a
SM
149 to))
150
78629844
DK
151
152(defun query-replace-read-to (from string regexp-flag)
153 "Query and return the `to' argument of a query-replace operation."
154 (query-replace-compile-replacement
155 (save-excursion
156 (read-from-minibuffer
157 (format "%s %s with: " string (query-replace-descr from))
158 nil nil nil
bbe9f175 159 query-replace-to-history-variable from t t))
78629844
DK
160 regexp-flag))
161
1606466a
SM
162(defun query-replace-read-args (string regexp-flag &optional noerror)
163 (unless noerror
164 (barf-if-buffer-read-only))
165 (let* ((from (query-replace-read-from string regexp-flag))
6f1df6d9
SM
166 (to (if (consp from) (prog1 (cdr from) (setq from (car from)))
167 (query-replace-read-to from string regexp-flag))))
10784bac 168 (list from to current-prefix-arg)))
770970cb 169
47d72254 170(defun query-replace (from-string to-string &optional delimited start end)
da44e784
RM
171 "Replace some occurrences of FROM-STRING with TO-STRING.
172As each match is found, the user must type a character saying
173what to do with it. For directions, type \\[help-command] at that time.
174
7ef5c431
KH
175In Transient Mark mode, if the mark is active, operate on the contents
176of the region. Otherwise, operate from point to the end of the buffer.
177
151270f3
RS
178If `query-replace-interactive' is non-nil, the last incremental search
179string is used as FROM-STRING--you don't have to specify it with the
180minibuffer.
181
446d9629
RS
182Matching is independent of case if `case-fold-search' is non-nil and
183FROM-STRING has no uppercase letters. Replacement transfers the case
184pattern of the old text to the new text, if `case-replace' and
185`case-fold-search' are non-nil and FROM-STRING has no uppercase
186letters. \(Transferring the case pattern means that if the old text
187matched is all caps, or capitalized, then its replacement is upcased
188or capitalized.)
9b0bf2b6 189
118a01c9 190Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
81bdc14d 191only matches surrounded by word boundaries.
47d72254 192Fourth and fifth arg START and END specify the region to operate on.
81bdc14d
RS
193
194To customize possible responses, change the \"bindings\" in `query-replace-map'."
10784bac
RS
195 (interactive (let ((common
196 (query-replace-read-args "Query replace" nil)))
197 (list (nth 0 common) (nth 1 common) (nth 2 common)
198 ;; These are done separately here
199 ;; so that command-history will record these expressions
200 ;; rather than the values they had this time.
201 (if (and transient-mark-mode mark-active)
202 (region-beginning))
203 (if (and transient-mark-mode mark-active)
204 (region-end)))))
99a7559f 205 (perform-replace from-string to-string t nil delimited nil nil start end))
7ef5c431 206
73fa8346 207(define-key esc-map "%" 'query-replace)
da44e784 208
47d72254 209(defun query-replace-regexp (regexp to-string &optional delimited start end)
da44e784
RM
210 "Replace some things after point matching REGEXP with TO-STRING.
211As each match is found, the user must type a character saying
212what to do with it. For directions, type \\[help-command] at that time.
213
7ef5c431
KH
214In Transient Mark mode, if the mark is active, operate on the contents
215of the region. Otherwise, operate from point to the end of the buffer.
216
151270f3
RS
217If `query-replace-interactive' is non-nil, the last incremental search
218regexp is used as REGEXP--you don't have to specify it with the
219minibuffer.
220
446d9629
RS
221Matching is independent of case if `case-fold-search' is non-nil and
222REGEXP has no uppercase letters. Replacement transfers the case
223pattern of the old text to the new text, if `case-replace' and
224`case-fold-search' are non-nil and REGEXP has no uppercase letters.
225\(Transferring the case pattern means that if the old text matched is
226all caps, or capitalized, then its replacement is upcased or
227capitalized.)
47d72254 228
118a01c9 229Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
da44e784 230only matches surrounded by word boundaries.
47d72254
GM
231Fourth and fifth arg START and END specify the region to operate on.
232
118a01c9
RS
233In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
234and `\\=\\N' (where N is a digit) stands for
2f57bf85 235whatever what matched the Nth `\\(...\\)' in REGEXP.
7c1c02ac
DK
236`\\?' lets you edit the replacement text in the minibuffer
237at the given position for each replacement.
238
ba8d15f9
RS
239In interactive calls, the replacement text can contain `\\,'
240followed by a Lisp expression. Each
241replacement evaluates that expression to compute the replacement
242string. Inside of that expression, `\\&' is a string denoting the
f1f6079c 243whole match as a string, `\\N' for a partial match, `\\#&' and `\\#N'
ba8d15f9
RS
244for the whole or a partial match converted to a number with
245`string-to-number', and `\\#' itself for the number of replacements
246done so far (starting with zero).
7c1c02ac 247
ba8d15f9
RS
248If the replacement expression is a symbol, write a space after it
249to terminate it. One space there, if any, will be discarded.
7c1c02ac
DK
250
251When using those Lisp features interactively in the replacement
252text, TO-STRING is actually made a list instead of a string.
253Use \\[repeat-complex-command] after this command for details."
10784bac
RS
254 (interactive
255 (let ((common
256 (query-replace-read-args "Query replace regexp" t)))
7c1c02ac
DK
257 (list (nth 0 common) (nth 1 common) (nth 2 common)
258 ;; These are done separately here
259 ;; so that command-history will record these expressions
260 ;; rather than the values they had this time.
261 (if (and transient-mark-mode mark-active)
262 (region-beginning))
263 (if (and transient-mark-mode mark-active)
264 (region-end)))))
99a7559f 265 (perform-replace regexp to-string t t delimited nil nil start end))
2f57bf85 266
cbc127de 267(define-key esc-map [?\C-%] 'query-replace-regexp)
da44e784 268
47d72254 269(defun query-replace-regexp-eval (regexp to-expr &optional delimited start end)
84482eb3
RS
270 "Replace some things after point matching REGEXP with the result of TO-EXPR.
271As each match is found, the user must type a character saying
272what to do with it. For directions, type \\[help-command] at that time.
273
274TO-EXPR is a Lisp expression evaluated to compute each replacement. It may
275reference `replace-count' to get the number of replacements already made.
276If the result of TO-EXPR is not a string, it is converted to one using
277`prin1-to-string' with the NOESCAPE argument (which see).
278
279For convenience, when entering TO-EXPR interactively, you can use `\\&' or
653479ad
AS
280`\\0' to stand for whatever matched the whole of REGEXP, and `\\N' (where
281N is a digit) to stand for whatever matched the Nth `\\(...\\)' in REGEXP.
84482eb3 282Use `\\#&' or `\\#N' if you want a number instead of a string.
2f57bf85 283In interactive use, `\\#' in itself stands for `replace-count'.
84482eb3
RS
284
285In Transient Mark mode, if the mark is active, operate on the contents
286of the region. Otherwise, operate from point to the end of the buffer.
287
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
290minibuffer.
291
292Preserves case in each replacement if `case-replace' and `case-fold-search'
293are non-nil and REGEXP has no uppercase letters.
47d72254 294
84482eb3 295Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
470bbe9b 296only matches that are surrounded by word boundaries.
47d72254 297Fourth and fifth arg START and END specify the region to operate on."
84482eb3 298 (interactive
cc0aea1a 299 (progn
6f1df6d9
SM
300 (barf-if-buffer-read-only)
301 (let* ((from
302 ;; Let-bind the history var to disable the "foo -> bar" default.
303 ;; Maybe we shouldn't disable this default, but for now I'll
304 ;; leave it off. --Stef
305 (let ((query-replace-to-history-variable nil))
306 (query-replace-read-from "Query replace regexp" t)))
5291cbca 307 (to (list (read-from-minibuffer
6f1df6d9
SM
308 (format "Query replace regexp %s with eval: "
309 (query-replace-descr from))
5291cbca 310 nil nil t query-replace-to-history-variable from t))))
84482eb3
RS
311 ;; We make TO a list because replace-match-string-symbols requires one,
312 ;; and the user might enter a single token.
313 (replace-match-string-symbols to)
10784bac
RS
314 (list from (car to) current-prefix-arg
315 (if (and transient-mark-mode mark-active)
316 (region-beginning))
317 (if (and transient-mark-mode mark-active)
cc0aea1a 318 (region-end))))))
d2ce3151 319 (perform-replace regexp (cons 'replace-eval-replacement to-expr)
d83a97ab 320 t 'literal delimited nil nil start end))
84482eb3 321
47d72254 322(defun map-query-replace-regexp (regexp to-strings &optional n start end)
da44e784 323 "Replace some matches for REGEXP with various strings, in rotation.
e730be7f
DL
324The second argument TO-STRINGS contains the replacement strings,
325separated by spaces. Third arg DELIMITED (prefix arg if interactive),
326if non-nil, means replace only matches surrounded by word boundaries.
327This command works like `query-replace-regexp' except that each
328successive replacement uses the next successive replacement string,
da44e784
RM
329wrapping around from the last such string to the first.
330
7ef5c431
KH
331In Transient Mark mode, if the mark is active, operate on the contents
332of the region. Otherwise, operate from point to the end of the buffer.
333
da44e784
RM
334Non-interactively, TO-STRINGS may be a list of replacement strings.
335
151270f3
RS
336If `query-replace-interactive' is non-nil, the last incremental search
337regexp is used as REGEXP--you don't have to specify it with the minibuffer.
338
da44e784 339A prefix argument N says to use each replacement string N times
47d72254
GM
340before rotating to the next.
341Fourth and fifth arg START and END specify the region to operate on."
770970cb 342 (interactive
5291cbca 343 (let* ((from (if query-replace-interactive
151270f3
RS
344 (car regexp-search-ring)
345 (read-from-minibuffer "Map query replace (regexp): "
346 nil nil nil
fce31d51 347 'query-replace-history nil t)))
5291cbca 348 (to (read-from-minibuffer
770970cb 349 (format "Query replace %s with (space-separated strings): "
6f1df6d9 350 (query-replace-descr from))
770970cb 351 nil nil nil
5291cbca 352 'query-replace-history from t)))
2f2f7e58
RS
353 (list from to
354 (and current-prefix-arg
355 (prefix-numeric-value current-prefix-arg))
10784bac
RS
356 (if (and transient-mark-mode mark-active)
357 (region-beginning))
358 (if (and transient-mark-mode mark-active)
359 (region-end)))))
da44e784
RM
360 (let (replacements)
361 (if (listp to-strings)
362 (setq replacements to-strings)
363 (while (/= (length to-strings) 0)
364 (if (string-match " " to-strings)
365 (setq replacements
366 (append replacements
367 (list (substring to-strings 0
368 (string-match " " to-strings))))
369 to-strings (substring to-strings
370 (1+ (string-match " " to-strings))))
371 (setq replacements (append replacements (list to-strings))
372 to-strings ""))))
99a7559f 373 (perform-replace regexp replacements t t nil n nil start end)))
da44e784 374
47d72254 375(defun replace-string (from-string to-string &optional delimited start end)
da44e784
RM
376 "Replace occurrences of FROM-STRING with TO-STRING.
377Preserve case in each match if `case-replace' and `case-fold-search'
378are non-nil and FROM-STRING has no uppercase letters.
9b0bf2b6
RS
379\(Preserving case means that if the string matched is all caps, or capitalized,
380then its replacement is upcased or capitalized.)
381
7ef5c431
KH
382In Transient Mark mode, if the mark is active, operate on the contents
383of the region. Otherwise, operate from point to the end of the buffer.
384
118a01c9 385Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
da44e784 386only matches surrounded by word boundaries.
47d72254 387Fourth and fifth arg START and END specify the region to operate on.
da44e784 388
151270f3
RS
389If `query-replace-interactive' is non-nil, the last incremental search
390string is used as FROM-STRING--you don't have to specify it with the
391minibuffer.
392
da44e784
RM
393This function is usually the wrong thing to use in a Lisp program.
394What you probably want is a loop like this:
118a01c9
RS
395 (while (search-forward FROM-STRING nil t)
396 (replace-match TO-STRING nil t))
87532fbe
RS
397which will run faster and will not set the mark or print anything.
398\(You may need a more complex loop if FROM-STRING can match the null string
399and TO-STRING is also null.)"
10784bac
RS
400 (interactive
401 (let ((common
402 (query-replace-read-args "Replace string" nil)))
403 (list (nth 0 common) (nth 1 common) (nth 2 common)
404 (if (and transient-mark-mode mark-active)
405 (region-beginning))
406 (if (and transient-mark-mode mark-active)
407 (region-end)))))
99a7559f 408 (perform-replace from-string to-string nil nil delimited nil nil start end))
da44e784 409
47d72254 410(defun replace-regexp (regexp to-string &optional delimited start end)
da44e784 411 "Replace things after point matching REGEXP with TO-STRING.
118a01c9 412Preserve case in each match if `case-replace' and `case-fold-search'
da44e784 413are non-nil and REGEXP has no uppercase letters.
47d72254
GM
414
415In Transient Mark mode, if the mark is active, operate on the contents
416of the region. Otherwise, operate from point to the end of the buffer.
417
118a01c9 418Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
da44e784 419only matches surrounded by word boundaries.
47d72254
GM
420Fourth and fifth arg START and END specify the region to operate on.
421
118a01c9
RS
422In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
423and `\\=\\N' (where N is a digit) stands for
7c1c02ac
DK
424whatever what matched the Nth `\\(...\\)' in REGEXP.
425`\\?' lets you edit the replacement text in the minibuffer
426at the given position for each replacement.
427
428In interactive calls, the replacement text may contain `\\,'
429followed by a Lisp expression used as part of the replacement
430text. Inside of that expression, `\\&' is a string denoting the
431whole match, `\\N' a partial matches, `\\#&' and `\\#N' the
432respective numeric values from `string-to-number', and `\\#'
433itself for `replace-count', the number of replacements occured so
434far.
435
436If your Lisp expression is an identifier and the next letter in
437the replacement string would be interpreted as part of it, you
438can wrap it with an expression like `\\,(or \\#)'. Incidentally,
439for this particular case you may also enter `\\#' in the
440replacement text directly.
441
442When using those Lisp features interactively in the replacement
443text, TO-STRING is actually made a list instead of a string.
444Use \\[repeat-complex-command] after this command for details.
da44e784 445
151270f3
RS
446If `query-replace-interactive' is non-nil, the last incremental search
447regexp is used as REGEXP--you don't have to specify it with the minibuffer.
448
da44e784
RM
449This function is usually the wrong thing to use in a Lisp program.
450What you probably want is a loop like this:
451 (while (re-search-forward REGEXP nil t)
118a01c9 452 (replace-match TO-STRING nil nil))
da44e784 453which will run faster and will not set the mark or print anything."
10784bac
RS
454 (interactive
455 (let ((common
456 (query-replace-read-args "Replace regexp" t)))
457 (list (nth 0 common) (nth 1 common) (nth 2 common)
458 (if (and transient-mark-mode mark-active)
459 (region-beginning))
460 (if (and transient-mark-mode mark-active)
461 (region-end)))))
99a7559f 462 (perform-replace regexp to-string nil t delimited nil nil start end))
e32eb3e6 463
4c53bd2b
RS
464\f
465(defvar regexp-history nil
466 "History list for some commands that read regular expressions.")
da44e784 467
e32eb3e6 468
31e1d920 469(defalias 'delete-non-matching-lines 'keep-lines)
e32eb3e6
GM
470(defalias 'delete-matching-lines 'flush-lines)
471(defalias 'count-matches 'how-many)
472
473
474(defun keep-lines-read-args (prompt)
475 "Read arguments for `keep-lines' and friends.
476Prompt for a regexp with PROMPT.
2ced751f
RS
477Value is a list, (REGEXP)."
478 (list (read-from-minibuffer prompt nil nil nil
479 'regexp-history nil t)))
e32eb3e6
GM
480
481(defun keep-lines (regexp &optional rstart rend)
698e1804
RS
482 "Delete all lines except those containing matches for REGEXP.
483A match split across lines preserves all the lines it lies in.
d2a0ee8b
RS
484Applies to all lines after point.
485
486If REGEXP contains upper case characters (excluding those preceded by `\\'),
e32eb3e6
GM
487the matching is case-sensitive.
488
489Second and third arg RSTART and REND specify the region to operate on.
490
2ced751f
RS
491Interactively, in Transient Mark mode when the mark is active, operate
492on the contents of the region. Otherwise, operate from point to the
493end of the buffer."
494
e32eb3e6 495 (interactive
98faf1bb
RS
496 (progn
497 (barf-if-buffer-read-only)
498 (keep-lines-read-args "Keep lines (containing match for regexp): ")))
e32eb3e6 499 (if rstart
119831da
RS
500 (progn
501 (goto-char (min rstart rend))
502 (setq rend (copy-marker (max rstart rend))))
2ced751f
RS
503 (if (and transient-mark-mode mark-active)
504 (setq rstart (region-beginning)
505 rend (copy-marker (region-end)))
506 (setq rstart (point)
507 rend (point-max-marker)))
508 (goto-char rstart))
698e1804
RS
509 (save-excursion
510 (or (bolp) (forward-line 1))
d2a0ee8b
RS
511 (let ((start (point))
512 (case-fold-search (and case-fold-search
513 (isearch-no-upper-case-p regexp t))))
e32eb3e6 514 (while (< (point) rend)
698e1804 515 ;; Start is first char not preserved by previous match.
e32eb3e6
GM
516 (if (not (re-search-forward regexp rend 'move))
517 (delete-region start rend)
698e1804
RS
518 (let ((end (save-excursion (goto-char (match-beginning 0))
519 (beginning-of-line)
520 (point))))
521 ;; Now end is first char preserved by the new match.
522 (if (< start end)
523 (delete-region start end))))
d99118b0 524
e32eb3e6 525 (setq start (save-excursion (forward-line 1) (point)))
698e1804 526 ;; If the match was empty, avoid matching again at same place.
e32eb3e6
GM
527 (and (< (point) rend)
528 (= (match-beginning 0) (match-end 0))
698e1804
RS
529 (forward-char 1))))))
530
e32eb3e6
GM
531
532(defun flush-lines (regexp &optional rstart rend)
698e1804
RS
533 "Delete lines containing matches for REGEXP.
534If a match is split across lines, all the lines it lies in are deleted.
d2a0ee8b
RS
535Applies to lines after point.
536
537If REGEXP contains upper case characters (excluding those preceded by `\\'),
e32eb3e6
GM
538the matching is case-sensitive.
539
540Second and third arg RSTART and REND specify the region to operate on.
541
2ced751f
RS
542Interactively, in Transient Mark mode when the mark is active, operate
543on the contents of the region. Otherwise, operate from point to the
544end of the buffer."
545
e32eb3e6 546 (interactive
98faf1bb
RS
547 (progn
548 (barf-if-buffer-read-only)
549 (keep-lines-read-args "Flush lines (containing match for regexp): ")))
e32eb3e6 550 (if rstart
119831da
RS
551 (progn
552 (goto-char (min rstart rend))
553 (setq rend (copy-marker (max rstart rend))))
2ced751f
RS
554 (if (and transient-mark-mode mark-active)
555 (setq rstart (region-beginning)
556 rend (copy-marker (region-end)))
557 (setq rstart (point)
558 rend (point-max-marker)))
559 (goto-char rstart))
d2a0ee8b
RS
560 (let ((case-fold-search (and case-fold-search
561 (isearch-no-upper-case-p regexp t))))
562 (save-excursion
e32eb3e6
GM
563 (while (and (< (point) rend)
564 (re-search-forward regexp rend t))
d2a0ee8b
RS
565 (delete-region (save-excursion (goto-char (match-beginning 0))
566 (beginning-of-line)
567 (point))
568 (progn (forward-line 1) (point)))))))
698e1804 569
e32eb3e6
GM
570
571(defun how-many (regexp &optional rstart rend)
d2a0ee8b
RS
572 "Print number of matches for REGEXP following point.
573
574If REGEXP contains upper case characters (excluding those preceded by `\\'),
e32eb3e6
GM
575the matching is case-sensitive.
576
577Second and third arg RSTART and REND specify the region to operate on.
578
2ced751f
RS
579Interactively, in Transient Mark mode when the mark is active, operate
580on the contents of the region. Otherwise, operate from point to the
581end of the buffer."
582
e32eb3e6
GM
583 (interactive
584 (keep-lines-read-args "How many matches for (regexp): "))
f601efb0
SM
585 (save-excursion
586 (if rstart
587 (goto-char (min rstart rend))
2ced751f
RS
588 (if (and transient-mark-mode mark-active)
589 (setq rstart (region-beginning)
590 rend (copy-marker (region-end)))
591 (setq rstart (point)
592 rend (point-max-marker)))
593 (goto-char rstart))
f601efb0
SM
594 (let ((count 0)
595 opoint
596 (case-fold-search (and case-fold-search
597 (isearch-no-upper-case-p regexp t))))
598 (while (and (< (point) rend)
599 (progn (setq opoint (point))
600 (re-search-forward regexp rend t)))
601 (if (= opoint (point))
602 (forward-char 1)
603 (setq count (1+ count))))
604 (message "%d occurrences" count))))
e32eb3e6 605
4c53bd2b 606\f
f601efb0
SM
607(defvar occur-mode-map
608 (let ((map (make-sparse-keymap)))
609 (define-key map [mouse-2] 'occur-mode-mouse-goto)
610 (define-key map "\C-c\C-c" 'occur-mode-goto-occurrence)
611 (define-key map "\C-m" 'occur-mode-goto-occurrence)
daae70bf 612 (define-key map "o" 'occur-mode-goto-occurrence-other-window)
365486d6 613 (define-key map "\C-o" 'occur-mode-display-occurrence)
f601efb0
SM
614 (define-key map "\M-n" 'occur-next)
615 (define-key map "\M-p" 'occur-prev)
d99118b0
SS
616 (define-key map "r" 'occur-rename-buffer)
617 (define-key map "c" 'clone-buffer)
f601efb0 618 (define-key map "g" 'revert-buffer)
d99118b0
SS
619 (define-key map "q" 'quit-window)
620 (define-key map "z" 'kill-this-buffer)
b938735a 621 (define-key map "\C-c\C-f" 'next-error-follow-minor-mode)
f601efb0
SM
622 map)
623 "Keymap for `occur-mode'.")
698e1804 624
46b3d18e
RS
625(defvar occur-revert-arguments nil
626 "Arguments to pass to `occur-1' to revert an Occur mode buffer.
627See `occur-revert-function'.")
698e1804 628
c9ae8cbb
JB
629(defcustom occur-mode-hook '(turn-on-font-lock)
630 "Hook run when entering Occur mode."
631 :type 'hook
632 :group 'matching)
633
634(defcustom occur-hook nil
635 "Hook run when `occur' is called."
daae70bf
CW
636 :type 'hook
637 :group 'matching)
638
de3c9b09 639(put 'occur-mode 'mode-class 'special)
505847d4 640(defun occur-mode ()
698e1804 641 "Major mode for output from \\[occur].
0081c8a1
RS
642\\<occur-mode-map>Move point to one of the items in this buffer, then use
643\\[occur-mode-goto-occurrence] to go to the occurrence that the item refers to.
644Alternatively, click \\[occur-mode-mouse-goto] on an item to go to it.
645
698e1804 646\\{occur-mode-map}"
ce8b7b9f 647 (interactive)
505847d4
RS
648 (kill-all-local-variables)
649 (use-local-map occur-mode-map)
650 (setq major-mode 'occur-mode)
651 (setq mode-name "Occur")
f601efb0 652 (set (make-local-variable 'revert-buffer-function) 'occur-revert-function)
c9ae8cbb 653 (make-local-variable 'occur-revert-arguments)
fbefbe33 654 (add-hook 'change-major-mode-hook 'font-lock-defontify nil t)
423e4de7 655 (setq next-error-function 'occur-next-error)
c9ae8cbb 656 (run-hooks 'occur-mode-hook))
698e1804 657
a41284da 658(defun occur-revert-function (ignore1 ignore2)
46b3d18e 659 "Handle `revert-buffer' for Occur mode buffers."
e1690783 660 (apply 'occur-1 (append occur-revert-arguments (list (buffer-name)))))
a41284da 661
78bead73
RS
662(defun occur-mode-mouse-goto (event)
663 "In Occur mode, go to the occurrence whose line you click on."
664 (interactive "e")
46b3d18e 665 (let (pos)
78bead73
RS
666 (save-excursion
667 (set-buffer (window-buffer (posn-window (event-end event))))
668 (save-excursion
669 (goto-char (posn-point (event-end event)))
46b3d18e
RS
670 (setq pos (occur-mode-find-occurrence))))
671 (pop-to-buffer (marker-buffer pos))
672 (goto-char pos)))
78bead73
RS
673
674(defun occur-mode-find-occurrence ()
46b3d18e
RS
675 (let ((pos (get-text-property (point) 'occur-target)))
676 (unless pos
68608d9c 677 (error "No occurrence on this line"))
46b3d18e
RS
678 (unless (buffer-live-p (marker-buffer pos))
679 (error "Buffer for this occurrence was killed"))
680 pos))
78bead73
RS
681
682(defun occur-mode-goto-occurrence ()
683 "Go to the occurrence the current line describes."
684 (interactive)
46b3d18e
RS
685 (let ((pos (occur-mode-find-occurrence)))
686 (pop-to-buffer (marker-buffer pos))
687 (goto-char pos)))
8d15583f 688
029024e2
RS
689(defun occur-mode-goto-occurrence-other-window ()
690 "Go to the occurrence the current line describes, in another window."
691 (interactive)
46b3d18e
RS
692 (let ((pos (occur-mode-find-occurrence)))
693 (switch-to-buffer-other-window (marker-buffer pos))
694 (goto-char pos)))
029024e2 695
365486d6
RS
696(defun occur-mode-display-occurrence ()
697 "Display in another window the occurrence the current line describes."
698 (interactive)
46b3d18e
RS
699 (let ((pos (occur-mode-find-occurrence))
700 window
701 ;; Bind these to ensure `display-buffer' puts it in another window.
365486d6 702 same-window-buffer-names
46b3d18e
RS
703 same-window-regexps)
704 (setq window (display-buffer (marker-buffer pos)))
365486d6
RS
705 ;; This is the way to set point in the proper window.
706 (save-selected-window
707 (select-window window)
46b3d18e 708 (goto-char pos))))
365486d6 709
123d5548 710(defun occur-find-match (n search message)
8d15583f
RS
711 (if (not n) (setq n 1))
712 (let ((r))
713 (while (> n 0)
123d5548
JB
714 (setq r (funcall search (point) 'occur-match))
715 (and r
716 (get-text-property r 'occur-match)
717 (setq r (funcall search r 'occur-match)))
8d15583f 718 (if r
123d5548
JB
719 (goto-char r)
720 (error message))
8d15583f
RS
721 (setq n (1- n)))))
722
123d5548
JB
723(defun occur-next (&optional n)
724 "Move to the Nth (default 1) next match in an Occur mode buffer."
725 (interactive "p")
726 (occur-find-match n #'next-single-property-change "No more matches"))
727
8d15583f 728(defun occur-prev (&optional n)
46b3d18e 729 "Move to the Nth (default 1) previous match in an Occur mode buffer."
8d15583f 730 (interactive "p")
123d5548 731 (occur-find-match n #'previous-single-property-change "No earlier matches"))
423e4de7
KS
732
733(defun occur-next-error (&optional argp reset)
734 "Move to the Nth (default 1) next match in an Occur mode buffer.
735Compatibility function for \\[next-error] invocations."
736 (interactive "p")
5f9e0ca5
TZ
737 ;; we need to run occur-find-match from within the Occur buffer
738 (with-current-buffer
739 (if (next-error-buffer-p (current-buffer))
740 (current-buffer)
741 (next-error-find-buffer nil nil (lambda() (eq major-mode 'occur-mode))))
742
743 (when reset
744 (goto-char (point-min)))
745 (occur-find-match
746 (abs (prefix-numeric-value argp))
747 (if (> 0 (prefix-numeric-value argp))
748 #'previous-single-property-change
749 #'next-single-property-change)
750 "No more matches")
751 ;; In case the *Occur* buffer is visible in a nonselected window.
752 (set-window-point (get-buffer-window (current-buffer)) (point))
753 (occur-mode-goto-occurrence)))
4c53bd2b 754\f
9d325ebf 755(defcustom list-matching-lines-default-context-lines 0
e730be7f
DL
756 "*Default number of context lines included around `list-matching-lines' matches.
757A negative number means to include that many lines before the match.
9d325ebf
RS
758A positive number means to include that many lines both before and after."
759 :type 'integer
760 :group 'matching)
698e1804 761
31e1d920 762(defalias 'list-matching-lines 'occur)
698e1804 763
68608d9c 764(defcustom list-matching-lines-face 'bold
e730be7f 765 "*Face used by \\[list-matching-lines] to show the text that matches.
68608d9c
CW
766If the value is nil, don't highlight the matching portions specially."
767 :type 'face
768 :group 'matching)
769
770(defcustom list-matching-lines-buffer-name-face 'underline
771 "*Face used by \\[list-matching-lines] to show the names of buffers.
772If the value is nil, don't highlight the buffer names specially."
773 :type 'face
774 :group 'matching)
775
2f4e3f7a 776(defun occur-accumulate-lines (count &optional keep-props)
68608d9c
CW
777 (save-excursion
778 (let ((forwardp (> count 0))
779 (result nil))
780 (while (not (or (zerop count)
781 (if forwardp
782 (eobp)
783 (bobp))))
b0523087 784 (setq count (+ count (if forwardp -1 1)))
68608d9c 785 (push
2f4e3f7a
RS
786 (funcall (if keep-props
787 #'buffer-substring
788 #'buffer-substring-no-properties)
68608d9c
CW
789 (line-beginning-position)
790 (line-end-position))
791 result)
792 (forward-line (if forwardp 1 -1)))
793 (nreverse result))))
794
795(defun occur-read-primary-args ()
796 (list (let* ((default (car regexp-history))
797 (input
798 (read-from-minibuffer
799 (if default
800 (format "List lines matching regexp (default `%s'): "
6f1df6d9 801 (query-replace-descr default))
68608d9c
CW
802 "List lines matching regexp: ")
803 nil
804 nil
805 nil
442a68c7
RS
806 'regexp-history
807 default)))
68608d9c
CW
808 (if (equal input "")
809 default
810 input))
bda1925e
CW
811 (when current-prefix-arg
812 (prefix-numeric-value current-prefix-arg))))
c9daced0 813
d99118b0
SS
814(defun occur-rename-buffer (&optional unique-p)
815 "Rename the current *Occur* buffer to *Occur: original-buffer-name*.
816Here `original-buffer-name' is the buffer name were occur was originally run.
817When given the prefix argument, the renaming will not clobber the existing
818buffer(s) of that name, but use `generate-new-buffer-name' instead.
2fb79329 819You can add this to `occur-hook' if you always want a separate *Occur*
d99118b0
SS
820buffer for each buffer where you invoke `occur'."
821 (interactive "P")
822 (with-current-buffer
823 (if (eq major-mode 'occur-mode) (current-buffer) (get-buffer "*Occur*"))
824 (rename-buffer (concat "*Occur: "
825 (mapconcat #'buffer-name
826 (car (cddr occur-revert-arguments)) "/")
827 "*")
828 unique-p)))
829
698e1804 830(defun occur (regexp &optional nlines)
99976f85 831 "Show all lines in the current buffer containing a match for REGEXP.
da44e784
RM
832
833If a match spreads across multiple lines, all those lines are shown.
698e1804 834
da44e784
RM
835Each line is displayed with NLINES lines before and after, or -NLINES
836before if NLINES is negative.
837NLINES defaults to `list-matching-lines-default-context-lines'.
698e1804
RS
838Interactively it is the prefix arg.
839
4c53bd2b 840The lines are shown in a buffer named `*Occur*'.
698e1804 841It serves as a menu to find any of the occurrences in this buffer.
de3c9b09 842\\<occur-mode-map>\\[describe-mode] in that buffer will explain how.
9483d601 843
de3c9b09
RS
844If REGEXP contains upper case characters (excluding those preceded by `\\'),
845the matching is case-sensitive."
68608d9c
CW
846 (interactive (occur-read-primary-args))
847 (occur-1 regexp nlines (list (current-buffer))))
848
849(defun multi-occur (bufs regexp &optional nlines)
850 "Show all lines in buffers BUFS containing a match for REGEXP.
851This function acts on multiple buffers; otherwise, it is exactly like
852`occur'."
a5dfed3e 853 (interactive
68608d9c 854 (cons
52698d45
KS
855 (let* ((bufs (list (read-buffer "First buffer to search: "
856 (current-buffer) t)))
857 (buf nil)
858 (ido-ignore-item-temp-list bufs))
68608d9c 859 (while (not (string-equal
f1180544 860 (setq buf (read-buffer
52698d45
KS
861 (if (eq read-buffer-function 'ido-read-buffer)
862 "Next buffer to search (C-j to end): "
863 "Next buffer to search (RET to end): ")
864 nil t))
68608d9c 865 ""))
52698d45
KS
866 (add-to-list 'bufs buf)
867 (setq ido-ignore-item-temp-list bufs))
68608d9c
CW
868 (nreverse (mapcar #'get-buffer bufs)))
869 (occur-read-primary-args)))
870 (occur-1 regexp nlines bufs))
871
872(defun multi-occur-by-filename-regexp (bufregexp regexp &optional nlines)
04fe158a 873 "Show all lines matching REGEXP in buffers named by BUFREGEXP.
68608d9c
CW
874See also `multi-occur'."
875 (interactive
876 (cons
877 (let* ((default (car regexp-history))
878 (input
879 (read-from-minibuffer
880 "List lines in buffers whose filename matches regexp: "
881 nil
882 nil
883 nil
884 'regexp-history)))
885 (if (equal input "")
886 default
887 input))
888 (occur-read-primary-args)))
889 (when bufregexp
890 (occur-1 regexp nlines
891 (delq nil
892 (mapcar (lambda (buf)
893 (when (and (buffer-file-name buf)
894 (string-match bufregexp
895 (buffer-file-name buf)))
896 buf))
897 (buffer-list))))))
898
e1690783
CW
899(defun occur-1 (regexp nlines bufs &optional buf-name)
900 (unless buf-name
901 (setq buf-name "*Occur*"))
902 (let ((occur-buf (get-buffer-create buf-name))
70ed2a76
CW
903 (made-temp-buf nil)
904 (active-bufs (delq nil (mapcar #'(lambda (buf)
905 (when (buffer-live-p buf) buf))
906 bufs))))
907 ;; Handle the case where one of the buffers we're searching is the
908 ;; *Occur* buffer itself.
909 (when (memq occur-buf bufs)
910 (setq occur-buf (with-current-buffer occur-buf
911 (clone-buffer "*Occur-temp*"))
912 made-temp-buf t))
68608d9c
CW
913 (with-current-buffer occur-buf
914 (setq buffer-read-only nil)
915 (occur-mode)
916 (erase-buffer)
917 (let ((count (occur-engine
70ed2a76 918 regexp active-bufs occur-buf
68608d9c
CW
919 (or nlines list-matching-lines-default-context-lines)
920 (and case-fold-search
921 (isearch-no-upper-case-p regexp t))
506a6d7e 922 list-matching-lines-buffer-name-face
2f4e3f7a 923 nil list-matching-lines-face t)))
b2043e7b
AS
924 (let* ((bufcount (length active-bufs))
925 (diff (- (length bufs) bufcount)))
926 (message "Searched %d buffer%s%s; %s match%s for `%s'"
927 bufcount (if (= bufcount 1) "" "s")
928 (if (zerop diff) "" (format " (%d killed)" diff))
929 (if (zerop count) "no" (format "%d" count))
930 (if (= count 1) "" "es")
931 regexp))
70ed2a76
CW
932 ;; If we had to make a temporary buffer, make it the *Occur*
933 ;; buffer now.
934 (when made-temp-buf
e1690783
CW
935 (with-current-buffer (get-buffer buf-name)
936 (kill-buffer (current-buffer)))
937 (rename-buffer buf-name))
70ed2a76
CW
938 (setq occur-revert-arguments (list regexp nlines bufs)
939 buffer-read-only t)
68608d9c 940 (if (> count 0)
423e4de7
KS
941 (progn
942 (display-buffer occur-buf)
943 (setq next-error-last-buffer occur-buf))
2fb79329
JB
944 (kill-buffer occur-buf)))
945 (run-hooks 'occur-hook))))
68608d9c 946
46b3d18e
RS
947(defun occur-engine-add-prefix (lines)
948 (mapcar
949 #'(lambda (line)
261cca88 950 (concat " :" line "\n"))
46b3d18e
RS
951 lines))
952
953(defun occur-engine (regexp buffers out-buf nlines case-fold-search
954 title-face prefix-face match-face keep-props)
955 (with-current-buffer out-buf
956 (setq buffer-read-only nil)
5cb4031d
KH
957 (let ((globalcount 0)
958 (coding nil))
46b3d18e
RS
959 ;; Map over all the buffers
960 (dolist (buf buffers)
961 (when (buffer-live-p buf)
962 (let ((matches 0) ;; count of matched lines
963 (lines 1) ;; line count
964 (matchbeg 0)
46b3d18e
RS
965 (origpt nil)
966 (begpt nil)
967 (endpt nil)
968 (marker nil)
969 (curstring "")
970 (headerpt (with-current-buffer out-buf (point))))
971 (save-excursion
972 (set-buffer buf)
5cb4031d
KH
973 (or coding
974 ;; Set CODING only if the current buffer locally
975 ;; binds buffer-file-coding-system.
976 (not (local-variable-p 'buffer-file-coding-system))
977 (setq coding buffer-file-coding-system))
68608d9c 978 (save-excursion
46b3d18e
RS
979 (goto-char (point-min)) ;; begin searching in the buffer
980 (while (not (eobp))
981 (setq origpt (point))
982 (when (setq endpt (re-search-forward regexp nil t))
983 (setq matches (1+ matches)) ;; increment match count
5291cbca 984 (setq matchbeg (match-beginning 0))
46b3d18e
RS
985 (setq begpt (save-excursion
986 (goto-char matchbeg)
987 (line-beginning-position)))
988 (setq lines (+ lines (1- (count-lines origpt endpt))))
989 (setq marker (make-marker))
990 (set-marker marker matchbeg)
991 (setq curstring (buffer-substring begpt
992 (line-end-position)))
993 ;; Depropertize the string, and maybe
994 ;; highlight the matches
995 (let ((len (length curstring))
996 (start 0))
997 (unless keep-props
998 (set-text-properties 0 len nil curstring))
999 (while (and (< start len)
1000 (string-match regexp curstring start))
1001 (add-text-properties (match-beginning 0)
1002 (match-end 0)
1003 (append
506a6d7e 1004 `(occur-match t)
46b3d18e 1005 (when match-face
2f4e3f7a
RS
1006 ;; Use `face' rather than
1007 ;; `font-lock-face' here
1008 ;; so as to override faces
1009 ;; copied from the buffer.
1010 `(face ,match-face)))
46b3d18e
RS
1011 curstring)
1012 (setq start (match-end 0))))
1013 ;; Generate the string to insert for this match
1014 (let* ((out-line
1015 (concat
261cca88
RS
1016 ;; Using 7 digits aligns tabs properly.
1017 (apply #'propertize (format "%7d:" lines)
46b3d18e
RS
1018 (append
1019 (when prefix-face
506a6d7e 1020 `(font-lock-face prefix-face))
46b3d18e
RS
1021 '(occur-prefix t)))
1022 curstring
1023 "\n"))
1024 (data
1025 (if (= nlines 0)
1026 ;; The simple display style
1027 out-line
1028 ;; The complex multi-line display
1029 ;; style. Generate a list of lines,
1030 ;; concatenate them all together.
1031 (apply #'concat
1032 (nconc
f22a7406 1033 (occur-engine-add-prefix (nreverse (cdr (occur-accumulate-lines (- (1+ (abs nlines))) keep-props))))
46b3d18e 1034 (list out-line)
f22a7406
RS
1035 (if (> nlines 0)
1036 (occur-engine-add-prefix
1037 (cdr (occur-accumulate-lines (1+ nlines) keep-props)))))))))
46b3d18e
RS
1038 ;; Actually insert the match display data
1039 (with-current-buffer out-buf
1040 (let ((beg (point))
1041 (end (progn (insert data) (point))))
1042 (unless (= nlines 0)
1043 (insert "-------\n"))
1044 (add-text-properties
e8e2a88c
CW
1045 beg end
1046 `(occur-target ,marker help-echo "mouse-2: go to this occurrence"))
1047 ;; We don't put `mouse-face' on the newline,
1048 ;; because that loses.
1049 (add-text-properties beg (1- end) '(mouse-face highlight)))))
46b3d18e 1050 (goto-char endpt))
e1690783
CW
1051 (if endpt
1052 (progn
1053 (setq lines (1+ lines))
1054 ;; On to the next match...
1055 (forward-line 1))
1056 (goto-char (point-max))))))
46b3d18e 1057 (when (not (zerop matches)) ;; is the count zero?
daae70bf 1058 (setq globalcount (+ globalcount matches))
46b3d18e
RS
1059 (with-current-buffer out-buf
1060 (goto-char headerpt)
1061 (let ((beg (point))
1062 end)
dbed3cd3
JPW
1063 (insert (format "%d match%s for \"%s\" in buffer: %s\n"
1064 matches (if (= matches 1) "" "es")
1065 regexp (buffer-name buf)))
46b3d18e
RS
1066 (setq end (point))
1067 (add-text-properties beg end
1068 (append
1069 (when title-face
506a6d7e
CW
1070 `(font-lock-face ,title-face))
1071 `(occur-title ,buf))))
46b3d18e 1072 (goto-char (point-min)))))))
5cb4031d
KH
1073 (if coding
1074 ;; CODING is buffer-file-coding-system of the first buffer
1075 ;; that locally binds it. Let's use it also for the output
1076 ;; buffer.
1077 (set-buffer-file-coding-system coding))
46b3d18e
RS
1078 ;; Return the number of matches
1079 globalcount)))
68608d9c 1080
698e1804 1081\f
81bdc14d
RS
1082;; It would be nice to use \\[...], but there is no reasonable way
1083;; to make that display both SPC and Y.
698e1804
RS
1084(defconst query-replace-help
1085 "Type Space or `y' to replace one match, Delete or `n' to skip to next,
be44f62c 1086RET or `q' to exit, Period to replace one match and exit,
698e1804
RS
1087Comma to replace but not move point immediately,
1088C-r to enter recursive edit (\\[exit-recursive-edit] to get out again),
1089C-w to delete match and recursive edit,
1090C-l to clear the screen, redisplay, and offer same replacement again,
1091! to replace all remaining matches with no more questions,
7ce278f3
GM
1092^ to move point back to previous match,
1093E to edit the replacement string"
f54701d1 1094 "Help message while in `query-replace'.")
698e1804 1095
81bdc14d
RS
1096(defvar query-replace-map (make-sparse-keymap)
1097 "Keymap that defines the responses to questions in `query-replace'.
1098The \"bindings\" in this map are not commands; they are answers.
1099The valid answers include `act', `skip', `act-and-show',
1100`exit', `act-and-exit', `edit', `delete-and-edit', `recenter',
d9121bc0 1101`automatic', `backup', `exit-prefix', and `help'.")
81bdc14d
RS
1102
1103(define-key query-replace-map " " 'act)
1104(define-key query-replace-map "\d" 'skip)
1105(define-key query-replace-map [delete] 'skip)
9275e5e3 1106(define-key query-replace-map [backspace] 'skip)
81bdc14d
RS
1107(define-key query-replace-map "y" 'act)
1108(define-key query-replace-map "n" 'skip)
633a305a
RS
1109(define-key query-replace-map "Y" 'act)
1110(define-key query-replace-map "N" 'skip)
34724fcb 1111(define-key query-replace-map "e" 'edit-replacement)
7ce278f3 1112(define-key query-replace-map "E" 'edit-replacement)
81bdc14d 1113(define-key query-replace-map "," 'act-and-show)
81bdc14d 1114(define-key query-replace-map "q" 'exit)
919592c0 1115(define-key query-replace-map "\r" 'exit)
384c7da4 1116(define-key query-replace-map [return] 'exit)
81bdc14d
RS
1117(define-key query-replace-map "." 'act-and-exit)
1118(define-key query-replace-map "\C-r" 'edit)
1119(define-key query-replace-map "\C-w" 'delete-and-edit)
1120(define-key query-replace-map "\C-l" 'recenter)
1121(define-key query-replace-map "!" 'automatic)
1122(define-key query-replace-map "^" 'backup)
1123(define-key query-replace-map "\C-h" 'help)
e731045a
KH
1124(define-key query-replace-map [f1] 'help)
1125(define-key query-replace-map [help] 'help)
81bdc14d 1126(define-key query-replace-map "?" 'help)
bc6312e1
RS
1127(define-key query-replace-map "\C-g" 'quit)
1128(define-key query-replace-map "\C-]" 'quit)
d9121bc0
RS
1129(define-key query-replace-map "\e" 'exit-prefix)
1130(define-key query-replace-map [escape] 'exit-prefix)
81bdc14d 1131
84482eb3 1132(defun replace-match-string-symbols (n)
e730be7f
DL
1133 "Process a list (and any sub-lists), expanding certain symbols.
1134Symbol Expands To
1135N (match-string N) (where N is a string of digits)
1136#N (string-to-number (match-string N))
1137& (match-string 0)
1138#& (string-to-number (match-string 0))
2f57bf85 1139# replace-count
e730be7f
DL
1140
1141Note that these symbols must be preceeded by a backslash in order to
1142type them."
84482eb3
RS
1143 (while n
1144 (cond
1145 ((consp (car n))
1146 (replace-match-string-symbols (car n))) ;Process sub-list
1147 ((symbolp (car n))
1148 (let ((name (symbol-name (car n))))
1149 (cond
1150 ((string-match "^[0-9]+$" name)
1151 (setcar n (list 'match-string (string-to-number name))))
1152 ((string-match "^#[0-9]+$" name)
1153 (setcar n (list 'string-to-number
1154 (list 'match-string
1155 (string-to-number (substring name 1))))))
1156 ((string= "&" name)
1157 (setcar n '(match-string 0)))
1158 ((string= "#&" name)
2f57bf85
DK
1159 (setcar n '(string-to-number (match-string 0))))
1160 ((string= "#" name)
1161 (setcar n 'replace-count))))))
84482eb3
RS
1162 (setq n (cdr n))))
1163
1164(defun replace-eval-replacement (expression replace-count)
1165 (let ((replacement (eval expression)))
1166 (if (stringp replacement)
1167 replacement
1168 (prin1-to-string replacement t))))
1169
2f57bf85
DK
1170(defun replace-quote (replacement)
1171 "Quote a replacement string.
1172This just doubles all backslashes in REPLACEMENT and
1173returns the resulting string. If REPLACEMENT is not
1174a string, it is first passed through `prin1-to-string'
1175with the `noescape' argument set.
1176
1177`match-data' is preserved across the call."
1178 (save-match-data
1179 (replace-regexp-in-string "\\\\" "\\\\"
1180 (if (stringp replacement)
1181 replacement
1182 (prin1-to-string replacement t))
1183 t t)))
1184
84482eb3
RS
1185(defun replace-loop-through-replacements (data replace-count)
1186 ;; DATA is a vector contaning the following values:
1187 ;; 0 next-rotate-count
1188 ;; 1 repeat-count
1189 ;; 2 next-replacement
1190 ;; 3 replacements
1191 (if (= (aref data 0) replace-count)
1192 (progn
1193 (aset data 0 (+ replace-count (aref data 1)))
1194 (let ((next (cdr (aref data 2))))
1195 (aset data 2 (if (consp next) next (aref data 3))))))
1196 (car (aref data 2)))
1197
7c1c02ac
DK
1198(defun replace-match-data (integers reuse &optional new)
1199 "Like `match-data', but markers in REUSE get invalidated.
1200If NEW is non-NIL, it is set and returned instead of fresh data,
1201but coerced to the correct value of INTEGERS."
1202 (or (and new
1203 (progn
1204 (set-match-data new)
1205 (and (eq new reuse)
1206 (eq (null integers) (markerp (car reuse)))
1207 new)))
1208 (match-data integers
1209 (prog1 reuse
1210 (while reuse
1211 (if (markerp (car reuse))
1212 (set-marker (car reuse) nil))
1213 (setq reuse (cdr reuse)))))))
1214
1215(defun replace-match-maybe-edit (newtext fixedcase literal noedit match-data)
1216 "Make a replacement with `replace-match', editing `\\?'.
15fd7d5d 1217NEWTEXT, FIXEDCASE, LITERAL are just passed on. If NOEDIT is true, no
7c1c02ac
DK
1218check for `\\?' is made to save time. MATCH-DATA is used for the
1219replacement. In case editing is done, it is changed to use markers.
1220
1221The return value is non-NIL if there has been no `\\?' or NOEDIT was
1222passed in. If LITERAL is set, no checking is done, anyway."
1223 (unless (or literal noedit)
1224 (setq noedit t)
1225 (while (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\(\\\\\\?\\)"
1226 newtext)
1227 (setq newtext
1228 (read-input "Edit replacement string: "
1229 (prog1
1230 (cons
1231 (replace-match "" t t newtext 3)
1232 (1+ (match-beginning 3)))
1233 (setq match-data
1234 (replace-match-data
1235 nil match-data match-data))))
1236 noedit nil)))
1237 (set-match-data match-data)
1238 (replace-match newtext fixedcase literal)
1239 noedit)
1240
d99118b0 1241(defun perform-replace (from-string replacements
698e1804 1242 query-flag regexp-flag delimited-flag
99a7559f 1243 &optional repeat-count map start end)
698e1804
RS
1244 "Subroutine of `query-replace'. Its complexity handles interactive queries.
1245Don't use this in your own program unless you want to query and set the mark
1246just as `query-replace' does. Instead, write a simple loop like this:
698665d1
GM
1247
1248 (while (re-search-forward \"foo[ \\t]+bar\" nil t)
698e1804 1249 (replace-match \"foobar\" nil nil))
698665d1
GM
1250
1251which will run faster and probably do exactly what you want. Please
1252see the documentation of `replace-match' to find out how to simulate
588c915a
CW
1253`case-replace'.
1254
1255This function returns nil if and only if there were no matches to
1256make, or the user didn't cancel the call."
81bdc14d 1257 (or map (setq map query-replace-map))
1c1dadab
RS
1258 (and query-flag minibuffer-auto-raise
1259 (raise-frame (window-frame (minibuffer-window))))
698e1804
RS
1260 (let ((nocasify (not (and case-fold-search case-replace
1261 (string-equal from-string
1262 (downcase from-string)))))
5a78b471
KH
1263 (case-fold-search (and case-fold-search
1264 (string-equal from-string
1265 (downcase from-string))))
d83a97ab 1266 (literal (or (not regexp-flag) (eq regexp-flag 'literal)))
698e1804
RS
1267 (search-function (if regexp-flag 're-search-forward 'search-forward))
1268 (search-string from-string)
e5d77022 1269 (real-match-data nil) ; the match data for the current match
698e1804 1270 (next-replacement nil)
7c1c02ac 1271 (noedit nil)
698e1804
RS
1272 (keep-going t)
1273 (stack nil)
698e1804 1274 (replace-count 0)
5632eb27
PE
1275 (nonempty-match nil)
1276
7ef5c431
KH
1277 ;; If non-nil, it is marker saying where in the buffer to stop.
1278 (limit nil)
1279
5632eb27
PE
1280 ;; Data for the next match. If a cons, it has the same format as
1281 ;; (match-data); otherwise it is t if a match is possible at point.
ae4eb03c 1282 (match-again t)
5632eb27 1283
35d59c0f
JL
1284 (isearch-string isearch-string)
1285 (isearch-regexp isearch-regexp)
ccec9764 1286 (isearch-case-fold-search isearch-case-fold-search)
02d95a27
RS
1287 (message
1288 (if query-flag
1289 (substitute-command-keys
1290 "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) "))))
7ef5c431
KH
1291
1292 ;; If region is active, in Transient Mark mode, operate on region.
47d72254
GM
1293 (when start
1294 (setq limit (copy-marker (max start end)))
1295 (goto-char (min start end))
1296 (deactivate-mark))
84482eb3
RS
1297
1298 ;; REPLACEMENTS is either a string, a list of strings, or a cons cell
1299 ;; containing a function and its first argument. The function is
1300 ;; called to generate each replacement like this:
1301 ;; (funcall (car replacements) (cdr replacements) replace-count)
1302 ;; It must return a string.
1303 (cond
1304 ((stringp replacements)
1305 (setq next-replacement replacements
1306 replacements nil))
1307 ((stringp (car replacements)) ; If it isn't a string, it must be a cons
1308 (or repeat-count (setq repeat-count 1))
1309 (setq replacements (cons 'replace-loop-through-replacements
1310 (vector repeat-count repeat-count
1311 replacements replacements)))))
1312
698e1804
RS
1313 (if delimited-flag
1314 (setq search-function 're-search-forward
1315 search-string (concat "\\b"
1316 (if regexp-flag from-string
1317 (regexp-quote from-string))
1318 "\\b")))
ccec9764
JL
1319 (when query-replace-lazy-highlight
1320 (setq isearch-string search-string
1321 isearch-regexp (or delimited-flag regexp-flag)
1322 isearch-case-fold-search case-fold-search
1323 isearch-lazy-highlight-last-string nil))
35d59c0f 1324
698e1804
RS
1325 (push-mark)
1326 (undo-boundary)
e782e9f2
RS
1327 (unwind-protect
1328 ;; Loop finding occurrences that perhaps should be replaced.
1329 (while (and keep-going
22a76778 1330 (not (or (eobp) (and limit (>= (point) limit))))
5632eb27
PE
1331 ;; Use the next match if it is already known;
1332 ;; otherwise, search for a match after moving forward
1333 ;; one char if progress is required.
1334 (setq real-match-data
1335 (if (consp match-again)
1336 (progn (goto-char (nth 1 match-again))
7c1c02ac
DK
1337 (replace-match-data t
1338 real-match-data
1339 match-again))
5632eb27 1340 (and (or match-again
889617de
GM
1341 ;; MATCH-AGAIN non-nil means we
1342 ;; accept an adjacent match. If
1343 ;; we don't, move one char to the
1344 ;; right. This takes us a
1345 ;; character too far at the end,
1346 ;; but this is undone after the
1347 ;; while-loop.
22a76778
JL
1348 (progn
1349 (forward-char 1)
1350 (not (or (eobp)
1351 (and limit (>= (point) limit))))))
7ef5c431 1352 (funcall search-function search-string limit t)
5632eb27
PE
1353 ;; For speed, use only integers and
1354 ;; reuse the list used last time.
7c1c02ac 1355 (replace-match-data t real-match-data)))))
1c4fe319
RS
1356 ;; Optionally ignore matches that have a read-only property.
1357 (unless (and query-replace-skip-read-only
1358 (text-property-not-all
1359 (match-beginning 0) (match-end 0)
1360 'read-only nil))
1361
1362 ;; Record whether the match is nonempty, to avoid an infinite loop
1363 ;; repeatedly matching the same empty string.
1364 (setq nonempty-match
1365 (/= (nth 0 real-match-data) (nth 1 real-match-data)))
1366
1367 ;; If the match is empty, record that the next one can't be
1368 ;; adjacent.
1369
1370 ;; Otherwise, if matching a regular expression, do the next
1371 ;; match now, since the replacement for this match may
1372 ;; affect whether the next match is adjacent to this one.
1373 ;; If that match is empty, don't use it.
1374 (setq match-again
1375 (and nonempty-match
1376 (or (not regexp-flag)
1377 (and (looking-at search-string)
1378 (let ((match (match-data)))
1379 (and (/= (nth 0 match) (nth 1 match))
1380 match))))))
1381
1382 ;; Calculate the replacement string, if necessary.
1383 (when replacements
1384 (set-match-data real-match-data)
1385 (setq next-replacement
1386 (funcall (car replacements) (cdr replacements)
7c1c02ac
DK
1387 replace-count)
1388 noedit nil))
1c4fe319 1389 (if (not query-flag)
cb05ca25
DK
1390 (let ((inhibit-read-only
1391 query-replace-skip-read-only))
15fd7d5d 1392 (unless (or literal noedit)
cb05ca25
DK
1393 (replace-highlight (nth 0 real-match-data)
1394 (nth 1 real-match-data)))
7c1c02ac
DK
1395 (setq noedit
1396 (replace-match-maybe-edit
1397 next-replacement nocasify literal
1398 noedit real-match-data)
1399 replace-count (1+ replace-count)))
1c4fe319
RS
1400 (undo-boundary)
1401 (let (done replaced key def)
1402 ;; Loop reading commands until one of them sets done,
7c1c02ac
DK
1403 ;; which means it has finished handling this
1404 ;; occurrence. Any command that sets `done' should
1405 ;; leave behind proper match data for the stack.
1406 ;; Commands not setting `done' need to adjust
1407 ;; `real-match-data'.
1c4fe319
RS
1408 (while (not done)
1409 (set-match-data real-match-data)
1410 (replace-highlight (match-beginning 0) (match-end 0))
1411 ;; Bind message-log-max so we don't fill up the message log
1412 ;; with a bunch of identical messages.
1413 (let ((message-log-max nil))
b938735a
JL
1414 (message message
1415 (query-replace-descr from-string)
1416 (query-replace-descr next-replacement)))
1c4fe319
RS
1417 (setq key (read-event))
1418 ;; Necessary in case something happens during read-event
1419 ;; that clobbers the match data.
1420 (set-match-data real-match-data)
1421 (setq key (vector key))
1422 (setq def (lookup-key map key))
1423 ;; Restore the match data while we process the command.
1424 (cond ((eq def 'help)
1425 (with-output-to-temp-buffer "*Help*"
1426 (princ
1427 (concat "Query replacing "
1428 (if regexp-flag "regexp " "")
1429 from-string " with "
1430 next-replacement ".\n\n"
1431 (substitute-command-keys
1432 query-replace-help)))
1433 (with-current-buffer standard-output
1434 (help-mode))))
1435 ((eq def 'exit)
1436 (setq keep-going nil)
1437 (setq done t))
1438 ((eq def 'backup)
1439 (if stack
588c915a 1440 (let ((elt (pop stack)))
7c1c02ac
DK
1441 (goto-char (nth 0 elt))
1442 (setq replaced (nth 1 elt)
1443 real-match-data
1444 (replace-match-data
1445 t real-match-data
1446 (nth 2 elt))))
1c4fe319
RS
1447 (message "No previous match")
1448 (ding 'no-terminate)
1449 (sit-for 1)))
1450 ((eq def 'act)
1451 (or replaced
7c1c02ac
DK
1452 (setq noedit
1453 (replace-match-maybe-edit
1454 next-replacement nocasify literal
1455 noedit real-match-data)
1456 replace-count (1+ replace-count)))
1c4fe319
RS
1457 (setq done t replaced t))
1458 ((eq def 'act-and-exit)
1459 (or replaced
7c1c02ac 1460 (setq noedit
da6eb51c 1461 (replace-match-maybe-edit
7c1c02ac
DK
1462 next-replacement nocasify literal
1463 noedit real-match-data)
1464 replace-count (1+ replace-count)))
1c4fe319
RS
1465 (setq keep-going nil)
1466 (setq done t replaced t))
1467 ((eq def 'act-and-show)
1468 (if (not replaced)
7c1c02ac
DK
1469 (setq noedit
1470 (replace-match-maybe-edit
1471 next-replacement nocasify literal
1472 noedit real-match-data)
1473 replace-count (1+ replace-count)
1474 real-match-data (replace-match-data
1475 t real-match-data)
1476 replaced t)))
1c4fe319
RS
1477 ((eq def 'automatic)
1478 (or replaced
7c1c02ac
DK
1479 (setq noedit
1480 (replace-match-maybe-edit
1481 next-replacement nocasify literal
1482 noedit real-match-data)
1483 replace-count (1+ replace-count)))
1c4fe319
RS
1484 (setq done t query-flag nil replaced t))
1485 ((eq def 'skip)
1486 (setq done t))
1487 ((eq def 'recenter)
1488 (recenter nil))
1489 ((eq def 'edit)
1490 (let ((opos (point-marker)))
7c1c02ac
DK
1491 (setq real-match-data (replace-match-data
1492 nil real-match-data
1493 real-match-data))
1c4fe319 1494 (goto-char (match-beginning 0))
86914dcc
RS
1495 (save-excursion
1496 (save-window-excursion
1497 (recursive-edit)))
7c1c02ac
DK
1498 (goto-char opos)
1499 (set-marker opos nil))
1c4fe319
RS
1500 ;; Before we make the replacement,
1501 ;; decide whether the search string
1502 ;; can match again just after this match.
1503 (if (and regexp-flag nonempty-match)
1504 (setq match-again (and (looking-at search-string)
1505 (match-data)))))
1c4fe319
RS
1506 ;; Edit replacement.
1507 ((eq def 'edit-replacement)
7c1c02ac
DK
1508 (setq real-match-data (replace-match-data
1509 nil real-match-data
1510 real-match-data)
1511 next-replacement
1c4fe319 1512 (read-input "Edit replacement string: "
7c1c02ac
DK
1513 next-replacement)
1514 noedit nil)
1515 (if replaced
1516 (set-match-data real-match-data)
1517 (setq noedit
1518 (replace-match-maybe-edit
1519 next-replacement nocasify literal noedit
1520 real-match-data)
1521 replaced t))
1c4fe319 1522 (setq done t))
d99118b0 1523
1c4fe319 1524 ((eq def 'delete-and-edit)
7c1c02ac
DK
1525 (replace-match "" t t)
1526 (setq real-match-data (replace-match-data
1527 nil real-match-data))
1528 (replace-dehighlight)
1529 (save-excursion (recursive-edit))
1c4fe319
RS
1530 (setq replaced t))
1531 ;; Note: we do not need to treat `exit-prefix'
1532 ;; specially here, since we reread
1533 ;; any unrecognized character.
1534 (t
1535 (setq this-command 'mode-exited)
1536 (setq keep-going nil)
1537 (setq unread-command-events
1538 (append (listify-key-sequence key)
1539 unread-command-events))
35d59c0f 1540 (setq done t)))
ccec9764
JL
1541 (when query-replace-lazy-highlight
1542 ;; Restore isearch data for lazy highlighting
1543 ;; in case of isearching during recursive edit
35d59c0f 1544 (setq isearch-string search-string
ccec9764
JL
1545 isearch-regexp (or delimited-flag regexp-flag)
1546 isearch-case-fold-search case-fold-search)
1547 ;; Force lazy rehighlighting only after replacements
1548 (if (not (memq def '(skip backup)))
1549 (setq isearch-lazy-highlight-last-string nil))))
1c4fe319
RS
1550 ;; Record previous position for ^ when we move on.
1551 ;; Change markers to numbers in the match data
1552 ;; since lots of markers slow down editing.
7c1c02ac
DK
1553 (push (list (point) replaced
1554;;; If the replacement has already happened, all we need is the
1555;;; current match start and end. We could get this with a trivial
1556;;; match like
1557;;; (save-excursion (goto-char (match-beginning 0))
1558;;; (search-forward (match-string 0))
1559;;; (match-data t))
1560;;; if we really wanted to avoid manually constructing match data.
1561;;; Adding current-buffer is necessary so that match-data calls can
1562;;; return markers which are appropriate for editing.
1563 (if replaced
1564 (list
1565 (match-beginning 0)
1566 (match-end 0)
1567 (current-buffer))
1568 (match-data t)))
1569 stack)))))
889617de
GM
1570
1571 ;; The code preventing adjacent regexp matches in the condition
1572 ;; of the while-loop above will haven taken us one character
1573 ;; beyond the last replacement. Undo that.
1574 (when (and regexp-flag (not match-again) (> replace-count 0))
1575 (backward-char 1))
d99118b0 1576
e782e9f2 1577 (replace-dehighlight))
4d33492a
RS
1578 (or unread-command-events
1579 (message "Replaced %d occurrence%s"
1580 replace-count
1581 (if (= replace-count 1) "" "s")))
1582 (and keep-going stack)))
698e1804 1583
ccec9764
JL
1584(defcustom query-replace-highlight t
1585 "*Non-nil means to highlight matches during query replacement."
1586 :type 'boolean
9d325ebf 1587 :group 'matching)
e782e9f2 1588
ccec9764
JL
1589(defcustom query-replace-lazy-highlight t
1590 "*Controls the lazy-highlighting during query replacements.
1591When non-nil, all text in the buffer matching the current match
1592is highlighted lazily using isearch lazy highlighting (see
1593`isearch-lazy-highlight-initial-delay' and
1594`isearch-lazy-highlight-interval')."
1595 :type 'boolean
1596 :group 'matching
1597 :version "21.4")
1598
1599(defface query-replace
1600 '((t (:inherit isearch)))
1601 "Face for highlighting query replacement matches."
1602 :group 'matching
1603 :version "21.4")
1604
e782e9f2
RS
1605(defvar replace-overlay nil)
1606
ccec9764
JL
1607(defun replace-highlight (beg end)
1608 (if query-replace-highlight
1609 (if replace-overlay
1610 (move-overlay replace-overlay beg end (current-buffer))
1611 (setq replace-overlay (make-overlay beg end))
1612 (overlay-put replace-overlay 'priority 1) ;higher than lazy overlays
1613 (overlay-put replace-overlay 'face 'query-replace)))
1614 (if query-replace-lazy-highlight
1615 (isearch-lazy-highlight-new-loop)))
1616
e782e9f2 1617(defun replace-dehighlight ()
ccec9764
JL
1618 (when replace-overlay
1619 (delete-overlay replace-overlay))
1620 (when query-replace-lazy-highlight
1621 (isearch-lazy-highlight-cleanup isearch-lazy-highlight-cleanup)
1622 (setq isearch-lazy-highlight-last-string nil)))
e782e9f2 1623
6f1df6d9 1624;; arch-tag: 16b4cd61-fd40-497b-b86f-b667c4cf88e4
c88ab9ce 1625;;; replace.el ends here