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