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