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