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