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