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