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