1 ;;; replace.el --- replace commands for Emacs
3 ;; Copyright (C) 1985-1987, 1992, 1994, 1996-1997, 2000-2011
4 ;; Free Software Foundation, Inc.
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; This package supplies the string and regular-expression replace functions
27 ;; documented in the Emacs user's manual.
31 (defcustom case-replace t
32 "Non-nil means `query-replace' should preserve case in replacements."
36 (defvar query-replace-history nil
37 "Default history list for query-replace commands.
38 See `query-replace-from-history-variable' and
39 `query-replace-to-history-variable'.")
41 (defvar query-replace-defaults nil
42 "Default values of FROM-STRING and TO-STRING for `query-replace'.
43 This is a cons cell (FROM-STRING . TO-STRING), or nil if there is
46 (defvar query-replace-interactive nil
47 "Non-nil means `query-replace' uses the last search string.
48 That becomes the \"string to replace\".")
50 (defcustom query-replace-from-history-variable
'query-replace-history
51 "History list to use for the FROM argument of `query-replace' commands.
52 The value of this variable should be a symbol; that symbol
53 is used as a variable to hold a history list for the strings
54 or patterns to be replaced."
59 (defcustom query-replace-to-history-variable
'query-replace-history
60 "History list to use for the TO argument of `query-replace' commands.
61 The value of this variable should be a symbol; that symbol
62 is used as a variable to hold a history list for replacement
68 (defcustom query-replace-skip-read-only nil
69 "Non-nil means `query-replace' and friends ignore read-only matches."
74 (defcustom query-replace-show-replacement t
75 "Non-nil means to show what actual replacement text will be."
80 (defcustom query-replace-highlight t
81 "Non-nil means to highlight matches during query replacement."
85 (defcustom query-replace-lazy-highlight t
86 "Controls the lazy-highlighting during query replacements.
87 When non-nil, all text in the buffer matching the current match
88 is highlighted lazily using isearch lazy highlighting (see
89 `lazy-highlight-initial-delay' and `lazy-highlight-interval')."
91 :group
'lazy-highlight
95 (defface query-replace
96 '((t (:inherit isearch
)))
97 "Face for highlighting query replacement matches."
101 (defvar replace-count
0
102 "Number of replacements done so far.
103 See `replace-regexp' and `query-replace-regexp-eval'.")
105 (defun query-replace-descr (string)
106 (mapconcat 'isearch-text-char-description string
""))
108 (defun query-replace-read-from (prompt regexp-flag
)
109 "Query and return the `from' argument of a query-replace operation.
110 The return value can also be a pair (FROM . TO) indicating that the user
111 wants to replace FROM with TO."
112 (if query-replace-interactive
113 (car (if regexp-flag regexp-search-ring search-ring
))
114 (let* ((history-add-new-input nil
)
116 ;; The save-excursion here is in case the user marks and copies
117 ;; a region in order to specify the minibuffer input.
118 ;; That should not clobber the region for the query-replace itself.
120 (read-from-minibuffer
121 (if query-replace-defaults
122 (format "%s (default %s -> %s): " prompt
123 (query-replace-descr (car query-replace-defaults
))
124 (query-replace-descr (cdr query-replace-defaults
)))
125 (format "%s: " prompt
))
127 query-replace-from-history-variable
129 (if (and (zerop (length from
)) query-replace-defaults
)
130 (cons (car query-replace-defaults
)
131 (query-replace-compile-replacement
132 (cdr query-replace-defaults
) regexp-flag
))
133 (add-to-history query-replace-from-history-variable from nil t
)
134 ;; Warn if user types \n or \t, but don't reject the input.
136 (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\(\\\\[nt]\\)" from
)
137 (let ((match (match-string 3 from
)))
139 ((string= match
"\\n")
140 (message "Note: `\\n' here doesn't match a newline; to do that, type C-q C-j instead"))
141 ((string= match
"\\t")
142 (message "Note: `\\t' here doesn't match a tab; to do that, just type TAB")))
146 (defun query-replace-compile-replacement (to regexp-flag
)
147 "Maybe convert a regexp replacement TO to Lisp.
148 Returns a list suitable for `perform-replace' if necessary,
149 the original string if not."
151 (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\\\[,#]" to
))
155 (setq pos
(match-end 0))
156 (push (substring to
0 (- pos
2)) list
)
157 (setq char
(aref to
(1- pos
))
158 to
(substring to pos
))
160 (push '(number-to-string replace-count
) list
))
162 (setq pos
(read-from-string to
))
163 (push `(replace-quote ,(car pos
)) list
)
165 ;; Swallow a space after a symbol
166 ;; if there is a space.
167 (if (and (or (symbolp (car pos
))
168 ;; Swallow a space after 'foo
169 ;; but not after (quote foo).
170 (and (eq (car-safe (car pos
)) 'quote
)
171 (not (= ?\
( (aref to
0)))))
172 (eq (string-match " " to
(cdr pos
))
176 (setq to
(substring to end
)))))
177 (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\\\[,#]" to
)))
178 (setq to
(nreverse (delete "" (cons to list
))))
179 (replace-match-string-symbols to
)
180 (cons 'replace-eval-replacement
187 (defun query-replace-read-to (from prompt regexp-flag
)
188 "Query and return the `to' argument of a query-replace operation."
189 (query-replace-compile-replacement
191 (let* ((history-add-new-input nil
)
192 (to (read-from-minibuffer
193 (format "%s %s with: " prompt
(query-replace-descr from
))
195 query-replace-to-history-variable from t
)))
196 (add-to-history query-replace-to-history-variable to nil t
)
197 (setq query-replace-defaults
(cons from to
))
201 (defun query-replace-read-args (prompt regexp-flag
&optional noerror
)
203 (barf-if-buffer-read-only))
204 (let* ((from (query-replace-read-from prompt regexp-flag
))
205 (to (if (consp from
) (prog1 (cdr from
) (setq from
(car from
)))
206 (query-replace-read-to from prompt regexp-flag
))))
207 (list from to current-prefix-arg
)))
209 (defun query-replace (from-string to-string
&optional delimited start end
)
210 "Replace some occurrences of FROM-STRING with TO-STRING.
211 As each match is found, the user must type a character saying
212 what to do with it. For directions, type \\[help-command] at that time.
214 In Transient Mark mode, if the mark is active, operate on the contents
215 of the region. Otherwise, operate from point to the end of the buffer.
217 If `query-replace-interactive' is non-nil, the last incremental search
218 string is used as FROM-STRING--you don't have to specify it with the
221 Matching is independent of case if `case-fold-search' is non-nil and
222 FROM-STRING has no uppercase letters. Replacement transfers the case
223 pattern of the old text to the new text, if `case-replace' and
224 `case-fold-search' are non-nil and FROM-STRING has no uppercase
225 letters. \(Transferring the case pattern means that if the old text
226 matched is all caps, or capitalized, then its replacement is upcased
229 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
230 only matches surrounded by word boundaries.
231 Fourth and fifth arg START and END specify the region to operate on.
233 To customize possible responses, change the \"bindings\" in `query-replace-map'."
236 (query-replace-read-args
237 (concat "Query replace"
238 (if current-prefix-arg
" word" "")
239 (if (and transient-mark-mode mark-active
) " in region" ""))
241 (list (nth 0 common
) (nth 1 common
) (nth 2 common
)
242 ;; These are done separately here
243 ;; so that command-history will record these expressions
244 ;; rather than the values they had this time.
245 (if (and transient-mark-mode mark-active
)
247 (if (and transient-mark-mode mark-active
)
249 (perform-replace from-string to-string t nil delimited nil nil start end
))
251 (define-key esc-map
"%" 'query-replace
)
253 (defun query-replace-regexp (regexp to-string
&optional delimited start end
)
254 "Replace some things after point matching REGEXP with TO-STRING.
255 As each match is found, the user must type a character saying
256 what to do with it. For directions, type \\[help-command] at that time.
258 In Transient Mark mode, if the mark is active, operate on the contents
259 of the region. Otherwise, operate from point to the end of the buffer.
261 If `query-replace-interactive' is non-nil, the last incremental search
262 regexp is used as REGEXP--you don't have to specify it with the
265 Matching is independent of case if `case-fold-search' is non-nil and
266 REGEXP has no uppercase letters. Replacement transfers the case
267 pattern of the old text to the new text, if `case-replace' and
268 `case-fold-search' are non-nil and REGEXP has no uppercase letters.
269 \(Transferring the case pattern means that if the old text matched is
270 all caps, or capitalized, then its replacement is upcased or
273 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
274 only matches surrounded by word boundaries.
275 Fourth and fifth arg START and END specify the region to operate on.
277 In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
278 and `\\=\\N' (where N is a digit) stands for
279 whatever what matched the Nth `\\(...\\)' in REGEXP.
280 `\\?' lets you edit the replacement text in the minibuffer
281 at the given position for each replacement.
283 In interactive calls, the replacement text can contain `\\,'
284 followed by a Lisp expression. Each
285 replacement evaluates that expression to compute the replacement
286 string. Inside of that expression, `\\&' is a string denoting the
287 whole match as a string, `\\N' for a partial match, `\\#&' and `\\#N'
288 for the whole or a partial match converted to a number with
289 `string-to-number', and `\\#' itself for the number of replacements
290 done so far (starting with zero).
292 If the replacement expression is a symbol, write a space after it
293 to terminate it. One space there, if any, will be discarded.
295 When using those Lisp features interactively in the replacement
296 text, TO-STRING is actually made a list instead of a string.
297 Use \\[repeat-complex-command] after this command for details."
300 (query-replace-read-args
301 (concat "Query replace"
302 (if current-prefix-arg
" word" "")
304 (if (and transient-mark-mode mark-active
) " in region" ""))
306 (list (nth 0 common
) (nth 1 common
) (nth 2 common
)
307 ;; These are done separately here
308 ;; so that command-history will record these expressions
309 ;; rather than the values they had this time.
310 (if (and transient-mark-mode mark-active
)
312 (if (and transient-mark-mode mark-active
)
314 (perform-replace regexp to-string t t delimited nil nil start end
))
316 (define-key esc-map
[?\C-%
] 'query-replace-regexp
)
318 (defun query-replace-regexp-eval (regexp to-expr
&optional delimited start end
)
319 "Replace some things after point matching REGEXP with the result of TO-EXPR.
321 Interactive use of this function is deprecated in favor of the
322 `\\,' feature of `query-replace-regexp'. For non-interactive use, a loop
323 using `search-forward-regexp' and `replace-match' is preferred.
325 As each match is found, the user must type a character saying
326 what to do with it. For directions, type \\[help-command] at that time.
328 TO-EXPR is a Lisp expression evaluated to compute each replacement. It may
329 reference `replace-count' to get the number of replacements already made.
330 If the result of TO-EXPR is not a string, it is converted to one using
331 `prin1-to-string' with the NOESCAPE argument (which see).
333 For convenience, when entering TO-EXPR interactively, you can use `\\&' or
334 `\\0' to stand for whatever matched the whole of REGEXP, and `\\N' (where
335 N is a digit) to stand for whatever matched the Nth `\\(...\\)' in REGEXP.
336 Use `\\#&' or `\\#N' if you want a number instead of a string.
337 In interactive use, `\\#' in itself stands for `replace-count'.
339 In Transient Mark mode, if the mark is active, operate on the contents
340 of the region. Otherwise, operate from point to the end of the buffer.
342 If `query-replace-interactive' is non-nil, the last incremental search
343 regexp is used as REGEXP--you don't have to specify it with the
346 Preserves case in each replacement if `case-replace' and `case-fold-search'
347 are non-nil and REGEXP has no uppercase letters.
349 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
350 only matches that are surrounded by word boundaries.
351 Fourth and fifth arg START and END specify the region to operate on."
354 (barf-if-buffer-read-only)
356 ;; Let-bind the history var to disable the "foo -> bar" default.
357 ;; Maybe we shouldn't disable this default, but for now I'll
358 ;; leave it off. --Stef
359 (let ((query-replace-to-history-variable nil
))
360 (query-replace-read-from "Query replace regexp" t
)))
361 (to (list (read-from-minibuffer
362 (format "Query replace regexp %s with eval: "
363 (query-replace-descr from
))
364 nil nil t query-replace-to-history-variable from t
))))
365 ;; We make TO a list because replace-match-string-symbols requires one,
366 ;; and the user might enter a single token.
367 (replace-match-string-symbols to
)
368 (list from
(car to
) current-prefix-arg
369 (if (and transient-mark-mode mark-active
)
371 (if (and transient-mark-mode mark-active
)
373 (perform-replace regexp
(cons 'replace-eval-replacement to-expr
)
374 t
'literal delimited nil nil start end
))
376 (make-obsolete 'query-replace-regexp-eval
377 "for interactive use, use the special `\\,' feature of
378 `query-replace-regexp' instead. Non-interactively, a loop
379 using `search-forward-regexp' and `replace-match' is preferred." "22.1")
381 (defun map-query-replace-regexp (regexp to-strings
&optional n start end
)
382 "Replace some matches for REGEXP with various strings, in rotation.
383 The second argument TO-STRINGS contains the replacement strings, separated
384 by spaces. This command works like `query-replace-regexp' except that
385 each successive replacement uses the next successive replacement string,
386 wrapping around from the last such string to the first.
388 In Transient Mark mode, if the mark is active, operate on the contents
389 of the region. Otherwise, operate from point to the end of the buffer.
391 Non-interactively, TO-STRINGS may be a list of replacement strings.
393 If `query-replace-interactive' is non-nil, the last incremental search
394 regexp is used as REGEXP--you don't have to specify it with the minibuffer.
396 A prefix argument N says to use each replacement string N times
397 before rotating to the next.
398 Fourth and fifth arg START and END specify the region to operate on."
400 (let* ((from (if query-replace-interactive
401 (car regexp-search-ring
)
402 (read-from-minibuffer "Map query replace (regexp): "
404 query-replace-from-history-variable
406 (to (read-from-minibuffer
407 (format "Query replace %s with (space-separated strings): "
408 (query-replace-descr from
))
410 query-replace-to-history-variable from t
)))
412 (and current-prefix-arg
413 (prefix-numeric-value current-prefix-arg
))
414 (if (and transient-mark-mode mark-active
)
416 (if (and transient-mark-mode mark-active
)
419 (if (listp to-strings
)
420 (setq replacements to-strings
)
421 (while (/= (length to-strings
) 0)
422 (if (string-match " " to-strings
)
425 (list (substring to-strings
0
426 (string-match " " to-strings
))))
427 to-strings
(substring to-strings
428 (1+ (string-match " " to-strings
))))
429 (setq replacements
(append replacements
(list to-strings
))
431 (perform-replace regexp replacements t t nil n nil start end
)))
433 (defun replace-string (from-string to-string
&optional delimited start end
)
434 "Replace occurrences of FROM-STRING with TO-STRING.
435 Preserve case in each match if `case-replace' and `case-fold-search'
436 are non-nil and FROM-STRING has no uppercase letters.
437 \(Preserving case means that if the string matched is all caps, or capitalized,
438 then its replacement is upcased or capitalized.)
440 In Transient Mark mode, if the mark is active, operate on the contents
441 of the region. Otherwise, operate from point to the end of the buffer.
443 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
444 only matches surrounded by word boundaries.
445 Fourth and fifth arg START and END specify the region to operate on.
447 If `query-replace-interactive' is non-nil, the last incremental search
448 string is used as FROM-STRING--you don't have to specify it with the
451 This function is usually the wrong thing to use in a Lisp program.
452 What you probably want is a loop like this:
453 (while (search-forward FROM-STRING nil t)
454 (replace-match TO-STRING nil t))
455 which will run faster and will not set the mark or print anything.
456 \(You may need a more complex loop if FROM-STRING can match the null string
457 and TO-STRING is also null.)"
460 (query-replace-read-args
462 (if current-prefix-arg
" word" "")
464 (if (and transient-mark-mode mark-active
) " in region" ""))
466 (list (nth 0 common
) (nth 1 common
) (nth 2 common
)
467 (if (and transient-mark-mode mark-active
)
469 (if (and transient-mark-mode mark-active
)
471 (perform-replace from-string to-string nil nil delimited nil nil start end
))
473 (defun replace-regexp (regexp to-string
&optional delimited start end
)
474 "Replace things after point matching REGEXP with TO-STRING.
475 Preserve case in each match if `case-replace' and `case-fold-search'
476 are non-nil and REGEXP has no uppercase letters.
478 In Transient Mark mode, if the mark is active, operate on the contents
479 of the region. Otherwise, operate from point to the end of the buffer.
481 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
482 only matches surrounded by word boundaries.
483 Fourth and fifth arg START and END specify the region to operate on.
485 In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
486 and `\\=\\N' (where N is a digit) stands for
487 whatever what matched the Nth `\\(...\\)' in REGEXP.
488 `\\?' lets you edit the replacement text in the minibuffer
489 at the given position for each replacement.
491 In interactive calls, the replacement text may contain `\\,'
492 followed by a Lisp expression used as part of the replacement
493 text. Inside of that expression, `\\&' is a string denoting the
494 whole match, `\\N' a partial match, `\\#&' and `\\#N' the respective
495 numeric values from `string-to-number', and `\\#' itself for
496 `replace-count', the number of replacements occurred so far.
498 If your Lisp expression is an identifier and the next letter in
499 the replacement string would be interpreted as part of it, you
500 can wrap it with an expression like `\\,(or \\#)'. Incidentally,
501 for this particular case you may also enter `\\#' in the
502 replacement text directly.
504 When using those Lisp features interactively in the replacement
505 text, TO-STRING is actually made a list instead of a string.
506 Use \\[repeat-complex-command] after this command for details.
508 If `query-replace-interactive' is non-nil, the last incremental search
509 regexp is used as REGEXP--you don't have to specify it with the minibuffer.
511 This function is usually the wrong thing to use in a Lisp program.
512 What you probably want is a loop like this:
513 (while (re-search-forward REGEXP nil t)
514 (replace-match TO-STRING nil nil))
515 which will run faster and will not set the mark or print anything."
518 (query-replace-read-args
520 (if current-prefix-arg
" word" "")
522 (if (and transient-mark-mode mark-active
) " in region" ""))
524 (list (nth 0 common
) (nth 1 common
) (nth 2 common
)
525 (if (and transient-mark-mode mark-active
)
527 (if (and transient-mark-mode mark-active
)
529 (perform-replace regexp to-string nil t delimited nil nil start end
))
532 (defvar regexp-history nil
533 "History list for some commands that read regular expressions.
535 Maximum length of the history list is determined by the value
536 of `history-length', which see.")
538 (defvar occur-collect-regexp-history
'("\\1")
539 "History of regexp for occur's collect operation")
541 (defun read-regexp (prompt &optional default-value
)
542 "Read regexp as a string using the regexp history and some useful defaults.
543 Prompt for a regular expression with PROMPT (without a colon and
544 space) in the minibuffer. The optional argument DEFAULT-VALUE
545 provides the value to display in the minibuffer prompt that is
546 returned if the user just types RET.
547 Values available via M-n are the string at point, the last isearch
548 regexp, the last isearch string, and the last replacement regexp."
551 (or (funcall (or find-tag-default-function
552 (get major-mode
'find-tag-default-function
)
555 (car regexp-search-ring
)
556 (regexp-quote (or (car search-ring
) ""))
558 query-replace-from-history-variable
))))
559 (defaults (delete-dups (delq nil
(delete "" defaults
))))
560 ;; Don't add automatically the car of defaults for empty input
561 (history-add-new-input nil
)
563 (read-from-minibuffer
565 (format "%s (default %s): " prompt
566 (query-replace-descr default-value
))
567 (format "%s: " prompt
))
568 nil nil nil
'regexp-history defaults t
)))
570 (or default-value input
)
572 (add-to-history 'regexp-history input
)))))
575 (defalias 'delete-non-matching-lines
'keep-lines
)
576 (defalias 'delete-matching-lines
'flush-lines
)
577 (defalias 'count-matches
'how-many
)
580 (defun keep-lines-read-args (prompt)
581 "Read arguments for `keep-lines' and friends.
582 Prompt for a regexp with PROMPT.
583 Value is a list, (REGEXP)."
584 (list (read-regexp prompt
) nil nil t
))
586 (defun keep-lines (regexp &optional rstart rend interactive
)
587 "Delete all lines except those containing matches for REGEXP.
588 A match split across lines preserves all the lines it lies in.
589 When called from Lisp (and usually interactively as well, see below)
590 applies to all lines starting after point.
592 If REGEXP contains upper case characters (excluding those preceded by `\\')
593 and `search-upper-case' is non-nil, the matching is case-sensitive.
595 Second and third arg RSTART and REND specify the region to operate on.
596 This command operates on (the accessible part of) all lines whose
597 accessible part is entirely contained in the region determined by RSTART
598 and REND. (A newline ending a line counts as part of that line.)
600 Interactively, in Transient Mark mode when the mark is active, operate
601 on all lines whose accessible part is entirely contained in the region.
602 Otherwise, the command applies to all lines starting after point.
603 When calling this function from Lisp, you can pretend that it was
604 called interactively by passing a non-nil INTERACTIVE argument.
606 This function starts looking for the next match from the end of
607 the previous match. Hence, it ignores matches that overlap
608 a previously found match."
612 (barf-if-buffer-read-only)
613 (keep-lines-read-args "Keep lines containing match for regexp")))
616 (goto-char (min rstart rend
))
620 (goto-char (max rstart rend
))
621 (unless (or (bolp) (eobp))
624 (if (and interactive transient-mark-mode mark-active
)
625 (setq rstart
(region-beginning)
627 (goto-char (region-end))
628 (unless (or (bolp) (eobp))
632 rend
(point-max-marker)))
635 (or (bolp) (forward-line 1))
636 (let ((start (point))
638 (if (and case-fold-search search-upper-case
)
639 (isearch-no-upper-case-p regexp t
)
641 (while (< (point) rend
)
642 ;; Start is first char not preserved by previous match.
643 (if (not (re-search-forward regexp rend
'move
))
644 (delete-region start rend
)
645 (let ((end (save-excursion (goto-char (match-beginning 0))
648 ;; Now end is first char preserved by the new match.
650 (delete-region start end
))))
652 (setq start
(save-excursion (forward-line 1) (point)))
653 ;; If the match was empty, avoid matching again at same place.
654 (and (< (point) rend
)
655 (= (match-beginning 0) (match-end 0))
657 (set-marker rend nil
)
661 (defun flush-lines (regexp &optional rstart rend interactive
)
662 "Delete lines containing matches for REGEXP.
663 When called from Lisp (and usually when called interactively as
664 well, see below), applies to the part of the buffer after point.
665 The line point is in is deleted if and only if it contains a
666 match for regexp starting after point.
668 If REGEXP contains upper case characters (excluding those preceded by `\\')
669 and `search-upper-case' is non-nil, the matching is case-sensitive.
671 Second and third arg RSTART and REND specify the region to operate on.
672 Lines partially contained in this region are deleted if and only if
673 they contain a match entirely contained in it.
675 Interactively, in Transient Mark mode when the mark is active, operate
676 on the contents of the region. Otherwise, operate from point to the
677 end of (the accessible portion of) the buffer. When calling this function
678 from Lisp, you can pretend that it was called interactively by passing
679 a non-nil INTERACTIVE argument.
681 If a match is split across lines, all the lines it lies in are deleted.
682 They are deleted _before_ looking for the next match. Hence, a match
683 starting on the same line at which another match ended is ignored."
687 (barf-if-buffer-read-only)
688 (keep-lines-read-args "Flush lines containing match for regexp")))
691 (goto-char (min rstart rend
))
692 (setq rend
(copy-marker (max rstart rend
))))
693 (if (and interactive transient-mark-mode mark-active
)
694 (setq rstart
(region-beginning)
695 rend
(copy-marker (region-end)))
697 rend
(point-max-marker)))
699 (let ((case-fold-search
700 (if (and case-fold-search search-upper-case
)
701 (isearch-no-upper-case-p regexp t
)
704 (while (and (< (point) rend
)
705 (re-search-forward regexp rend t
))
706 (delete-region (save-excursion (goto-char (match-beginning 0))
709 (progn (forward-line 1) (point))))))
710 (set-marker rend nil
)
714 (defun how-many (regexp &optional rstart rend interactive
)
715 "Print and return number of matches for REGEXP following point.
716 When called from Lisp and INTERACTIVE is omitted or nil, just return
717 the number, do not print it; if INTERACTIVE is t, the function behaves
718 in all respects as if it had been called interactively.
720 If REGEXP contains upper case characters (excluding those preceded by `\\')
721 and `search-upper-case' is non-nil, the matching is case-sensitive.
723 Second and third arg RSTART and REND specify the region to operate on.
725 Interactively, in Transient Mark mode when the mark is active, operate
726 on the contents of the region. Otherwise, operate from point to the
727 end of (the accessible portion of) the buffer.
729 This function starts looking for the next match from the end of
730 the previous match. Hence, it ignores matches that overlap
731 a previously found match."
734 (keep-lines-read-args "How many matches for regexp"))
738 (goto-char (min rstart rend
))
739 (setq rend
(max rstart rend
)))
740 (if (and interactive transient-mark-mode mark-active
)
741 (setq rstart
(region-beginning)
749 (if (and case-fold-search search-upper-case
)
750 (isearch-no-upper-case-p regexp t
)
752 (while (and (< (point) rend
)
753 (progn (setq opoint
(point))
754 (re-search-forward regexp rend t
)))
755 (if (= opoint
(point))
757 (setq count
(1+ count
))))
758 (when interactive
(message "%d occurrence%s"
760 (if (= count
1) "" "s")))
764 (defvar occur-menu-map
765 (let ((map (make-sparse-keymap)))
766 (define-key map
[next-error-follow-minor-mode
]
767 `(menu-item ,(purecopy "Auto Occurrence Display")
768 next-error-follow-minor-mode
770 "Display another occurrence when moving the cursor")
771 :button
(:toggle .
(and (boundp 'next-error-follow-minor-mode
)
772 next-error-follow-minor-mode
))))
773 (define-key map
[separator-1
] menu-bar-separator
)
774 (define-key map
[kill-this-buffer
]
775 `(menu-item ,(purecopy "Kill Occur Buffer") kill-this-buffer
776 :help
,(purecopy "Kill the current *Occur* buffer")))
777 (define-key map
[quit-window
]
778 `(menu-item ,(purecopy "Quit Occur Window") quit-window
779 :help
,(purecopy "Quit the current *Occur* buffer. Bury it, and maybe delete the selected frame")))
780 (define-key map
[revert-buffer
]
781 `(menu-item ,(purecopy "Revert Occur Buffer") revert-buffer
782 :help
,(purecopy "Replace the text in the *Occur* buffer with the results of rerunning occur")))
783 (define-key map
[clone-buffer
]
784 `(menu-item ,(purecopy "Clone Occur Buffer") clone-buffer
785 :help
,(purecopy "Create and return a twin copy of the current *Occur* buffer")))
786 (define-key map
[occur-rename-buffer
]
787 `(menu-item ,(purecopy "Rename Occur Buffer") occur-rename-buffer
788 :help
,(purecopy "Rename the current *Occur* buffer to *Occur: original-buffer-name*.")))
789 (define-key map
[separator-2
] menu-bar-separator
)
790 (define-key map
[occur-mode-goto-occurrence-other-window
]
791 `(menu-item ,(purecopy "Go To Occurrence Other Window") occur-mode-goto-occurrence-other-window
792 :help
,(purecopy "Go to the occurrence the current line describes, in another window")))
793 (define-key map
[occur-mode-goto-occurrence
]
794 `(menu-item ,(purecopy "Go To Occurrence") occur-mode-goto-occurrence
795 :help
,(purecopy "Go to the occurrence the current line describes")))
796 (define-key map
[occur-mode-display-occurrence
]
797 `(menu-item ,(purecopy "Display Occurrence") occur-mode-display-occurrence
798 :help
,(purecopy "Display in another window the occurrence the current line describes")))
799 (define-key map
[occur-next
]
800 `(menu-item ,(purecopy "Move to Next Match") occur-next
801 :help
,(purecopy "Move to the Nth (default 1) next match in an Occur mode buffer")))
802 (define-key map
[occur-prev
]
803 `(menu-item ,(purecopy "Move to Previous Match") occur-prev
804 :help
,(purecopy "Move to the Nth (default 1) previous match in an Occur mode buffer")))
806 "Menu keymap for `occur-mode'.")
808 (defvar occur-mode-map
809 (let ((map (make-sparse-keymap)))
810 ;; We use this alternative name, so we can use \\[occur-mode-mouse-goto].
811 (define-key map
[mouse-2
] 'occur-mode-mouse-goto
)
812 (define-key map
"\C-c\C-c" 'occur-mode-goto-occurrence
)
813 (define-key map
"\C-x\C-q" 'occur-edit-mode
)
814 (define-key map
"\C-m" 'occur-mode-goto-occurrence
)
815 (define-key map
"o" 'occur-mode-goto-occurrence-other-window
)
816 (define-key map
"\C-o" 'occur-mode-display-occurrence
)
817 (define-key map
"\M-n" 'occur-next
)
818 (define-key map
"\M-p" 'occur-prev
)
819 (define-key map
"r" 'occur-rename-buffer
)
820 (define-key map
"c" 'clone-buffer
)
821 (define-key map
"\C-c\C-f" 'next-error-follow-minor-mode
)
822 (define-key map
[menu-bar occur
] (cons (purecopy "Occur") occur-menu-map
))
824 "Keymap for `occur-mode'.")
826 (defvar occur-revert-arguments nil
827 "Arguments to pass to `occur-1' to revert an Occur mode buffer.
828 See `occur-revert-function'.")
830 (defcustom occur-mode-hook
'(turn-on-font-lock)
831 "Hook run when entering Occur mode."
835 (defcustom occur-hook nil
836 "Hook run by Occur when there are any matches."
840 (defcustom occur-mode-find-occurrence-hook nil
841 "Hook run by Occur after locating an occurrence.
842 This will be called with the cursor position at the occurrence. An application
843 for this is to reveal context in an outline-mode when the occurrence is hidden."
847 (put 'occur-mode
'mode-class
'special
)
848 (define-derived-mode occur-mode special-mode
"Occur"
849 "Major mode for output from \\[occur].
850 \\<occur-mode-map>Move point to one of the items in this buffer, then use
851 \\[occur-mode-goto-occurrence] to go to the occurrence that the item refers to.
852 Alternatively, click \\[occur-mode-mouse-goto] on an item to go to it.
855 (set (make-local-variable 'revert-buffer-function
) 'occur-revert-function
)
856 (make-local-variable 'occur-revert-arguments
)
857 (add-hook 'change-major-mode-hook
'font-lock-defontify nil t
)
858 (setq next-error-function
'occur-next-error
))
863 (defvar occur-edit-mode-map
864 (let ((map (make-sparse-keymap)))
865 (set-keymap-parent map text-mode-map
)
866 (define-key map
[mouse-2
] 'occur-mode-mouse-goto
)
867 (define-key map
"\C-c\C-c" 'occur-mode-goto-occurrence
)
868 (define-key map
"\C-x\C-q" 'occur-mode
)
869 (define-key map
"\C-c\C-f" 'next-error-follow-minor-mode
)
870 (define-key map
[menu-bar occur
] (cons (purecopy "Occur") occur-menu-map
))
872 "Keymap for `occur-edit-mode'.")
874 (define-derived-mode occur-edit-mode occur-mode
"Occur-Edit"
875 "Major mode for editing *Occur* buffers.
876 In this mode, changes to the *Occur* buffer are also applied to
877 the originating buffer.
879 To return to ordinary Occur mode, use \\[occur-mode]."
880 (setq buffer-read-only nil
)
881 (add-hook 'after-change-functions
'occur-after-change-function nil t
))
883 (defun occur-after-change-function (beg end length
)
886 (let* ((m (get-text-property (line-beginning-position) 'occur-target
))
887 (buf (marker-buffer m
))
888 (col (current-column)))
890 ;; Apply occur-target property to inserted (e.g. yanked) text.
891 (put-text-property beg end
'occur-target m
)
892 ;; Did we insert a newline? Occur Edit mode can't create new
893 ;; Occur entries; just discard everything after the newline.
895 (and (search-forward "\n" end t
)
896 (delete-region (1- (point)) end
))))
897 (let ((line (- (line-number-at-pos)
898 (line-number-at-pos (window-start))))
899 (readonly (with-current-buffer buf buffer-read-only
))
900 (win (or (get-buffer-window buf
)
901 (display-buffer buf t
)))
902 (text (save-excursion
904 (search-forward ":" nil t
)
905 (setq col
(- col
(current-column)))
906 (buffer-substring-no-properties (point) (line-end-position)))))
907 (with-selected-window win
911 (message "Buffer `%s' is read only." buf
)
912 (delete-region (line-beginning-position) (line-end-position))
914 (move-to-column col
))))))
917 (defun occur-revert-function (_ignore1 _ignore2
)
918 "Handle `revert-buffer' for Occur mode buffers."
919 (apply 'occur-1
(append occur-revert-arguments
(list (buffer-name)))))
921 (defun occur-mode-find-occurrence ()
922 (let ((pos (get-text-property (point) 'occur-target
)))
924 (error "No occurrence on this line"))
925 (unless (buffer-live-p (marker-buffer pos
))
926 (error "Buffer for this occurrence was killed"))
929 (defalias 'occur-mode-mouse-goto
'occur-mode-goto-occurrence
)
930 (defun occur-mode-goto-occurrence (&optional event
)
931 "Go to the occurrence the current line describes."
932 (interactive (list last-nonmenu-event
))
935 ;; Actually `event-end' works correctly with a nil argument as
936 ;; well, so we could dispense with this test, but let's not
937 ;; rely on this undocumented behavior.
938 (occur-mode-find-occurrence)
939 (with-current-buffer (window-buffer (posn-window (event-end event
)))
941 (goto-char (posn-point (event-end event
)))
942 (occur-mode-find-occurrence)))))
943 same-window-buffer-names
945 (pop-to-buffer (marker-buffer pos
))
947 (run-hooks 'occur-mode-find-occurrence-hook
)))
949 (defun occur-mode-goto-occurrence-other-window ()
950 "Go to the occurrence the current line describes, in another window."
952 (let ((pos (occur-mode-find-occurrence)))
953 (switch-to-buffer-other-window (marker-buffer pos
))
955 (run-hooks 'occur-mode-find-occurrence-hook
)))
957 (defun occur-mode-display-occurrence ()
958 "Display in another window the occurrence the current line describes."
960 (let ((pos (occur-mode-find-occurrence))
962 ;; Bind these to ensure `display-buffer' puts it in another window.
963 same-window-buffer-names
965 (setq window
(display-buffer (marker-buffer pos
)))
966 ;; This is the way to set point in the proper window.
967 (save-selected-window
968 (select-window window
)
970 (run-hooks 'occur-mode-find-occurrence-hook
))))
972 (defun occur-find-match (n search message
)
973 (if (not n
) (setq n
1))
976 (setq r
(funcall search
(point) 'occur-match
))
978 (get-text-property r
'occur-match
)
979 (setq r
(funcall search r
'occur-match
)))
985 (defun occur-next (&optional n
)
986 "Move to the Nth (default 1) next match in an Occur mode buffer."
988 (occur-find-match n
#'next-single-property-change
"No more matches"))
990 (defun occur-prev (&optional n
)
991 "Move to the Nth (default 1) previous match in an Occur mode buffer."
993 (occur-find-match n
#'previous-single-property-change
"No earlier matches"))
995 (defun occur-next-error (&optional argp reset
)
996 "Move to the Nth (default 1) next match in an Occur mode buffer.
997 Compatibility function for \\[next-error] invocations."
999 ;; we need to run occur-find-match from within the Occur buffer
1000 (with-current-buffer
1001 ;; Choose the buffer and make it current.
1002 (if (next-error-buffer-p (current-buffer))
1004 (next-error-find-buffer nil nil
1006 (eq major-mode
'occur-mode
))))
1008 (goto-char (cond (reset (point-min))
1009 ((< argp
0) (line-beginning-position))
1010 ((> argp
0) (line-end-position))
1015 #'previous-single-property-change
1016 #'next-single-property-change
)
1018 ;; In case the *Occur* buffer is visible in a nonselected window.
1019 (let ((win (get-buffer-window (current-buffer) t
)))
1020 (if win
(set-window-point win
(point))))
1021 (occur-mode-goto-occurrence)))
1024 '((((class color
) (min-colors 88) (background light
))
1025 :background
"yellow1")
1026 (((class color
) (min-colors 88) (background dark
))
1027 :background
"RoyalBlue3")
1028 (((class color
) (min-colors 8) (background light
))
1029 :background
"yellow" :foreground
"black")
1030 (((class color
) (min-colors 8) (background dark
))
1031 :background
"blue" :foreground
"white")
1032 (((type tty
) (class mono
))
1034 (t :background
"gray"))
1035 "Face used to highlight matches permanently."
1039 (defcustom list-matching-lines-default-context-lines
0
1040 "Default number of context lines included around `list-matching-lines' matches.
1041 A negative number means to include that many lines before the match.
1042 A positive number means to include that many lines both before and after."
1046 (defalias 'list-matching-lines
'occur
)
1048 (defcustom list-matching-lines-face
'match
1049 "Face used by \\[list-matching-lines] to show the text that matches.
1050 If the value is nil, don't highlight the matching portions specially."
1054 (defcustom list-matching-lines-buffer-name-face
'underline
1055 "Face used by \\[list-matching-lines] to show the names of buffers.
1056 If the value is nil, don't highlight the buffer names specially."
1060 (defcustom occur-excluded-properties
1061 '(read-only invisible intangible field mouse-face help-echo local-map keymap
1062 yank-handler follow-link
)
1063 "Text properties to discard when copying lines to the *Occur* buffer.
1064 The value should be a list of text properties to discard or t,
1065 which means to discard all text properties."
1066 :type
'(choice (const :tag
"All" t
) (repeat symbol
))
1070 (defun occur-read-primary-args ()
1071 (let* ((perform-collect (consp current-prefix-arg
))
1072 (regexp (read-regexp (if perform-collect
1073 "Collect strings matching regexp"
1074 "List lines matching regexp")
1075 (car regexp-history
))))
1078 ;; Perform collect operation
1079 (if (zerop (regexp-opt-depth regexp
))
1080 ;; No subexpression so collect the entire match.
1082 ;; Get the regexp for collection pattern.
1083 (let ((default (car occur-collect-regexp-history
)))
1085 (format "Regexp to collect (default %s): " default
)
1086 nil
'occur-collect-regexp-history default
)))
1087 ;; Otherwise normal occur takes numerical prefix argument.
1088 (when current-prefix-arg
1089 (prefix-numeric-value current-prefix-arg
))))))
1091 (defun occur-rename-buffer (&optional unique-p interactive-p
)
1092 "Rename the current *Occur* buffer to *Occur: original-buffer-name*.
1093 Here `original-buffer-name' is the buffer name where Occur was originally run.
1094 When given the prefix argument, or called non-interactively, the renaming
1095 will not clobber the existing buffer(s) of that name, but use
1096 `generate-new-buffer-name' instead. You can add this to `occur-hook'
1097 if you always want a separate *Occur* buffer for each buffer where you
1099 (interactive "P\np")
1100 (with-current-buffer
1101 (if (eq major-mode
'occur-mode
) (current-buffer) (get-buffer "*Occur*"))
1102 (rename-buffer (concat "*Occur: "
1103 (mapconcat #'buffer-name
1104 (car (cddr occur-revert-arguments
)) "/")
1106 (or unique-p
(not interactive-p
)))))
1108 (defun occur (regexp &optional nlines
)
1109 "Show all lines in the current buffer containing a match for REGEXP.
1110 If a match spreads across multiple lines, all those lines are shown.
1112 Each line is displayed with NLINES lines before and after, or -NLINES
1113 before if NLINES is negative.
1114 NLINES defaults to `list-matching-lines-default-context-lines'.
1115 Interactively it is the prefix arg.
1117 The lines are shown in a buffer named `*Occur*'.
1118 It serves as a menu to find any of the occurrences in this buffer.
1119 \\<occur-mode-map>\\[describe-mode] in that buffer will explain how.
1121 If REGEXP contains upper case characters (excluding those preceded by `\\')
1122 and `search-upper-case' is non-nil, the matching is case-sensitive.
1124 When NLINES is a string or when the function is called
1125 interactively with prefix argument without a number (`C-u' alone
1126 as prefix) the matching strings are collected into the `*Occur*'
1127 buffer by using NLINES as a replacement regexp. NLINES may
1128 contain \\& and \\N which convention follows `replace-match'.
1129 For example, providing \"defun\\s +\\(\\S +\\)\" for REGEXP and
1130 \"\\1\" for NLINES collects all the function names in a lisp
1131 program. When there is no parenthesized subexpressions in REGEXP
1132 the entire match is collected. In any case the searched buffers
1134 (interactive (occur-read-primary-args))
1135 (occur-1 regexp nlines
(list (current-buffer))))
1137 (defvar ido-ignore-item-temp-list
)
1139 (defun multi-occur (bufs regexp
&optional nlines
)
1140 "Show all lines in buffers BUFS containing a match for REGEXP.
1141 This function acts on multiple buffers; otherwise, it is exactly like
1142 `occur'. When you invoke this command interactively, you must specify
1143 the buffer names that you want, one by one.
1144 See also `multi-occur-in-matching-buffers'."
1147 (let* ((bufs (list (read-buffer "First buffer to search: "
1148 (current-buffer) t
)))
1150 (ido-ignore-item-temp-list bufs
))
1151 (while (not (string-equal
1152 (setq buf
(read-buffer
1153 (if (eq read-buffer-function
'ido-read-buffer
)
1154 "Next buffer to search (C-j to end): "
1155 "Next buffer to search (RET to end): ")
1158 (add-to-list 'bufs buf
)
1159 (setq ido-ignore-item-temp-list bufs
))
1160 (nreverse (mapcar #'get-buffer bufs
)))
1161 (occur-read-primary-args)))
1162 (occur-1 regexp nlines bufs
))
1164 (defun multi-occur-in-matching-buffers (bufregexp regexp
&optional allbufs
)
1165 "Show all lines matching REGEXP in buffers specified by BUFREGEXP.
1166 Normally BUFREGEXP matches against each buffer's visited file name,
1167 but if you specify a prefix argument, it matches against the buffer name.
1168 See also `multi-occur'."
1171 (let* ((default (car regexp-history
))
1173 (read-from-minibuffer
1174 (if current-prefix-arg
1175 "List lines in buffers whose names match regexp: "
1176 "List lines in buffers whose filenames match regexp: ")
1181 (if (equal input
"")
1184 (occur-read-primary-args)))
1188 (mapcar (lambda (buf)
1190 (string-match bufregexp
1192 (and (buffer-file-name buf
)
1193 (string-match bufregexp
1194 (buffer-file-name buf
))))
1198 (defun occur-1 (regexp nlines bufs
&optional buf-name
)
1199 (unless (and regexp
(not (equal regexp
"")))
1200 (error "Occur doesn't work with the empty regexp"))
1202 (setq buf-name
"*Occur*"))
1204 (active-bufs (delq nil
(mapcar #'(lambda (buf)
1205 (when (buffer-live-p buf
) buf
))
1207 ;; Handle the case where one of the buffers we're searching is the
1208 ;; output buffer. Just rename it.
1209 (when (member buf-name
(mapcar 'buffer-name active-bufs
))
1210 (with-current-buffer (get-buffer buf-name
)
1213 ;; Now find or create the output buffer.
1214 ;; If we just renamed that buffer, we will make a new one here.
1215 (setq occur-buf
(get-buffer-create buf-name
))
1217 (with-current-buffer occur-buf
1218 (if (stringp nlines
)
1219 (fundamental-mode) ;; This is for collect opeartion.
1221 (let ((inhibit-read-only t
)
1222 ;; Don't generate undo entries for creation of the initial contents.
1223 (buffer-undo-list t
))
1226 (if (stringp nlines
)
1227 ;; Treat nlines as a regexp to collect.
1228 (let ((bufs active-bufs
)
1231 (with-current-buffer (car bufs
)
1233 (goto-char (point-min))
1234 (while (re-search-forward regexp nil t
)
1235 ;; Insert the replacement regexp.
1236 (let ((str (match-substitute-replacement nlines
)))
1238 (with-current-buffer occur-buf
1240 (setq count
(1+ count
))
1241 (or (zerop (current-column))
1242 (insert "\n"))))))))
1243 (setq bufs
(cdr bufs
)))
1245 ;; Perform normal occur.
1247 regexp active-bufs occur-buf
1248 (or nlines list-matching-lines-default-context-lines
)
1249 (if (and case-fold-search search-upper-case
)
1250 (isearch-no-upper-case-p regexp t
)
1252 list-matching-lines-buffer-name-face
1253 nil list-matching-lines-face
1254 (not (eq occur-excluded-properties t
))))))
1255 (let* ((bufcount (length active-bufs
))
1256 (diff (- (length bufs
) bufcount
)))
1257 (message "Searched %d buffer%s%s; %s match%s%s"
1258 bufcount
(if (= bufcount
1) "" "s")
1259 (if (zerop diff
) "" (format " (%d killed)" diff
))
1260 (if (zerop count
) "no" (format "%d" count
))
1261 (if (= count
1) "" "es")
1262 ;; Don't display regexp if with remaining text
1263 ;; it is longer than window-width.
1264 (if (> (+ (length regexp
) 42) (window-width))
1265 "" (format " for `%s'" (query-replace-descr regexp
)))))
1266 (setq occur-revert-arguments
(list regexp nlines bufs
))
1268 (kill-buffer occur-buf
)
1269 (display-buffer occur-buf
)
1270 (setq next-error-last-buffer occur-buf
)
1271 (setq buffer-read-only t
)
1272 (set-buffer-modified-p nil
)
1273 (run-hooks 'occur-hook
)))))))
1275 (defun occur-engine (regexp buffers out-buf nlines case-fold
1276 title-face prefix-face match-face keep-props
)
1277 (with-current-buffer out-buf
1278 (let ((globalcount 0)
1280 (case-fold-search case-fold
))
1281 ;; Map over all the buffers
1282 (dolist (buf buffers
)
1283 (when (buffer-live-p buf
)
1284 (let ((matches 0) ;; count of matched lines
1285 (lines 1) ;; line count
1286 (prev-after-lines nil
) ;; context lines of prev match
1287 (prev-lines nil
) ;; line number of prev match endpt
1295 (inhibit-field-text-motion t
)
1296 (headerpt (with-current-buffer out-buf
(point))))
1297 (with-current-buffer buf
1299 ;; Set CODING only if the current buffer locally
1300 ;; binds buffer-file-coding-system.
1301 (not (local-variable-p 'buffer-file-coding-system
))
1302 (setq coding buffer-file-coding-system
))
1304 (goto-char (point-min)) ;; begin searching in the buffer
1306 (setq origpt
(point))
1307 (when (setq endpt
(re-search-forward regexp nil t
))
1308 (setq matches
(1+ matches
)) ;; increment match count
1309 (setq matchbeg
(match-beginning 0))
1310 ;; Get beginning of first match line and end of the last.
1312 (goto-char matchbeg
)
1313 (setq begpt
(line-beginning-position))
1315 (setq endpt
(line-end-position)))
1316 ;; Sum line numbers up to the first match line.
1317 (setq lines
(+ lines
(count-lines origpt begpt
)))
1318 (setq marker
(make-marker))
1319 (set-marker marker matchbeg
)
1320 (setq curstring
(occur-engine-line begpt endpt keep-props
))
1321 ;; Highlight the matches
1322 (let ((len (length curstring
))
1324 (while (and (< start len
)
1325 (string-match regexp curstring start
))
1326 (add-text-properties
1327 (match-beginning 0) (match-end 0)
1331 ;; Use `face' rather than `font-lock-face' here
1332 ;; so as to override faces copied from the buffer.
1333 `(face ,match-face
)))
1335 (setq start
(match-end 0))))
1336 ;; Generate the string to insert for this match
1337 (let* ((match-prefix
1338 ;; Using 7 digits aligns tabs properly.
1339 (apply #'propertize
(format "%7d:" lines
)
1342 `(font-lock-face prefix-face
))
1343 `(occur-prefix t mouse-face
(highlight)
1344 occur-target
,marker follow-link t
1346 help-echo
"mouse-2: go to this occurrence"))))
1348 ;; We don't put `mouse-face' on the newline,
1349 ;; because that loses. And don't put it
1350 ;; on context lines to reduce flicker.
1351 (propertize curstring
'mouse-face
(list 'highlight
)
1352 'occur-target marker
1355 "mouse-2: go to this occurrence"))
1359 ;; Add non-numeric prefix to all non-first lines
1360 ;; of multi-line matches.
1361 (replace-regexp-in-string
1365 ;; Add marker at eol, but no mouse props.
1366 (propertize "\n" 'occur-target marker
)))
1369 ;; The simple display style
1371 ;; The complex multi-line display style.
1372 (setq ret
(occur-context-lines
1373 out-line nlines keep-props begpt endpt
1374 lines prev-lines prev-after-lines
))
1375 ;; Set first elem of the returned list to `data',
1376 ;; and the second elem to `prev-after-lines'.
1377 (setq prev-after-lines
(nth 1 ret
))
1379 ;; Actually insert the match display data
1380 (with-current-buffer out-buf
1385 ;; Sum line numbers between first and last match lines.
1386 (setq lines
(+ lines
(count-lines begpt endpt
)
1387 ;; Add 1 for empty last match line since
1388 ;; count-lines returns 1 line less.
1389 (if (and (bolp) (eolp)) 1 0)))
1390 ;; On to the next match...
1392 (goto-char (point-max)))
1393 (setq prev-lines
(1- lines
)))
1394 ;; Flush remaining context after-lines.
1395 (when prev-after-lines
1396 (with-current-buffer out-buf
1397 (insert (apply #'concat
(occur-engine-add-prefix
1398 prev-after-lines
)))))))
1399 (when (not (zerop matches
)) ;; is the count zero?
1400 (setq globalcount
(+ globalcount matches
))
1401 (with-current-buffer out-buf
1402 (goto-char headerpt
)
1406 (format "%d match%s%s in buffer: %s\n"
1407 matches
(if (= matches
1) "" "es")
1408 ;; Don't display regexp for multi-buffer.
1409 (if (> (length buffers
) 1)
1410 "" (format " for \"%s\""
1411 (query-replace-descr regexp
)))
1415 (add-text-properties beg end
1418 `(font-lock-face ,title-face
))
1419 `(occur-title ,buf
))))
1420 (goto-char (point-min)))))))
1421 ;; Display total match count and regexp for multi-buffer.
1422 (when (and (not (zerop globalcount
)) (> (length buffers
) 1))
1423 (goto-char (point-min))
1426 (insert (format "%d match%s total for \"%s\":\n"
1427 globalcount
(if (= globalcount
1) "" "es")
1428 (query-replace-descr regexp
)))
1430 (add-text-properties beg end
(when title-face
1431 `(font-lock-face ,title-face
))))
1432 (goto-char (point-min)))
1434 ;; CODING is buffer-file-coding-system of the first buffer
1435 ;; that locally binds it. Let's use it also for the output
1437 (set-buffer-file-coding-system coding
))
1438 ;; Return the number of matches
1441 (defun occur-engine-line (beg end
&optional keep-props
)
1442 (if (and keep-props
(if (boundp 'jit-lock-mode
) jit-lock-mode
)
1443 (text-property-not-all beg end
'fontified t
))
1444 (if (fboundp 'jit-lock-fontify-now
)
1445 (jit-lock-fontify-now beg end
)))
1446 (if (and keep-props
(not (eq occur-excluded-properties t
)))
1447 (let ((str (buffer-substring beg end
)))
1448 (remove-list-of-text-properties
1449 0 (length str
) occur-excluded-properties str
)
1451 (buffer-substring-no-properties beg end
)))
1453 (defun occur-engine-add-prefix (lines)
1456 (concat " :" line
"\n"))
1459 (defun occur-accumulate-lines (count &optional keep-props pt
)
1463 (let ((forwardp (> count
0))
1464 result beg end moved
)
1465 (while (not (or (zerop count
)
1468 (and (bobp) (not moved
)))))
1469 (setq count
(+ count
(if forwardp -
1 1)))
1470 (setq beg
(line-beginning-position)
1471 end
(line-end-position))
1472 (push (occur-engine-line beg end keep-props
) result
)
1473 (setq moved
(= 0 (forward-line (if forwardp
1 -
1)))))
1474 (nreverse result
))))
1476 ;; Generate context display for occur.
1477 ;; OUT-LINE is the line where the match is.
1478 ;; NLINES and KEEP-PROPS are args to occur-engine.
1479 ;; LINES is line count of the current match,
1480 ;; PREV-LINES is line count of the previous match,
1481 ;; PREV-AFTER-LINES is a list of after-context lines of the previous match.
1482 ;; Generate a list of lines, add prefixes to all but OUT-LINE,
1483 ;; then concatenate them all together.
1484 (defun occur-context-lines (out-line nlines keep-props begpt endpt
1485 lines prev-lines prev-after-lines
)
1486 ;; Find after- and before-context lines of the current match.
1488 (nreverse (cdr (occur-accumulate-lines
1489 (- (1+ (abs nlines
))) keep-props begpt
))))
1491 (cdr (occur-accumulate-lines
1492 (1+ nlines
) keep-props endpt
)))
1495 ;; Combine after-lines of the previous match
1496 ;; with before-lines of the current match.
1498 (when prev-after-lines
1499 ;; Don't overlap prev after-lines with current before-lines.
1500 (if (>= (+ prev-lines
(length prev-after-lines
))
1501 (- lines
(length before-lines
)))
1502 (setq prev-after-lines
1503 (butlast prev-after-lines
1504 (- (length prev-after-lines
)
1505 (- lines prev-lines
(length before-lines
) 1))))
1506 ;; Separate non-overlapping context lines with a dashed line.
1507 (setq separator
"-------\n")))
1510 ;; Don't overlap current before-lines with previous match line.
1511 (if (<= (- lines
(length before-lines
))
1514 (nthcdr (- (length before-lines
)
1515 (- lines prev-lines
1))
1517 ;; Separate non-overlapping before-context lines.
1518 (unless (> nlines
0)
1519 (setq separator
"-------\n"))))
1522 ;; Return a list where the first element is the output line.
1525 (and prev-after-lines
1526 (occur-engine-add-prefix prev-after-lines
))
1527 (and separator
(list separator
))
1528 (occur-engine-add-prefix before-lines
)
1530 ;; And the second element is the list of context after-lines.
1531 (if (> nlines
0) after-lines
))))
1534 ;; It would be nice to use \\[...], but there is no reasonable way
1535 ;; to make that display both SPC and Y.
1536 (defconst query-replace-help
1537 "Type Space or `y' to replace one match, Delete or `n' to skip to next,
1538 RET or `q' to exit, Period to replace one match and exit,
1539 Comma to replace but not move point immediately,
1540 C-r to enter recursive edit (\\[exit-recursive-edit] to get out again),
1541 C-w to delete match and recursive edit,
1542 C-l to clear the screen, redisplay, and offer same replacement again,
1543 ! to replace all remaining matches with no more questions,
1544 ^ to move point back to previous match,
1545 E to edit the replacement string"
1546 "Help message while in `query-replace'.")
1548 (defvar query-replace-map
1549 (let ((map (make-sparse-keymap)))
1550 (define-key map
" " 'act
)
1551 (define-key map
"\d" 'skip
)
1552 (define-key map
[delete] 'skip)
1553 (define-key map [backspace] 'skip)
1554 (define-key map "y" 'act)
1555 (define-key map "n" 'skip)
1556 (define-key map "Y" 'act)
1557 (define-key map "N" 'skip)
1558 (define-key map "e" 'edit-replacement)
1559 (define-key map "E" 'edit-replacement)
1560 (define-key map "," 'act-and-show)
1561 (define-key map "q" 'exit)
1562 (define-key map "\r" 'exit)
1563 (define-key map [return] 'exit)
1564 (define-key map "." 'act-and-exit)
1565 (define-key map "\C-r" 'edit)
1566 (define-key map "\C-w" 'delete-and-edit)
1567 (define-key map "\C-l" 'recenter)
1568 (define-key map "!" 'automatic)
1569 (define-key map "^" 'backup)
1570 (define-key map "\C-h" 'help)
1571 (define-key map [f1] 'help)
1572 (define-key map [help] 'help)
1573 (define-key map "?" 'help)
1574 (define-key map "\C-g" 'quit)
1575 (define-key map "\C-]" 'quit)
1576 (define-key map "\e" 'exit-prefix)
1577 (define-key map [escape] 'exit-prefix)
1579 "Keymap that defines the responses to questions in `query-replace'.
1580 The \"bindings\" in this map are not commands; they are answers.
1581 The valid answers include `act', `skip', `act-and-show',
1582 `exit', `act-and-exit', `edit', `delete-and-edit', `recenter',
1583 `automatic', `backup', `exit-prefix', and `help'.")
1585 (defvar multi-query-replace-map
1586 (let ((map (make-sparse-keymap)))
1587 (set-keymap-parent map query-replace-map)
1588 (define-key map "Y" 'automatic-all)
1589 (define-key map "N" 'exit-current)
1591 "Keymap that defines additional bindings for multi-buffer replacements.
1592 It extends its parent map `query-replace-map' with new bindings to
1593 operate on a set of buffers/files. The difference with its parent map
1594 is the additional answers `automatic-all' to replace all remaining
1595 matches in all remaining buffers with no more questions, and
1596 `exit-current' to skip remaining matches in the current buffer
1597 and to continue with the next buffer in the sequence.")
1599 (defun replace-match-string-symbols (n)
1600 "Process a list (and any sub-lists), expanding certain symbols.
1602 N (match-string N) (where N is a string of digits)
1603 #N (string-to-number (match-string N))
1605 #& (string-to-number (match-string 0))
1608 Note that these symbols must be preceded by a backslash in order to
1609 type them using Lisp syntax."
1613 (replace-match-string-symbols (car n))) ;Process sub-list
1615 (let ((name (symbol-name (car n))))
1617 ((string-match "^[0-9]+$" name)
1618 (setcar n (list 'match-string (string-to-number name))))
1619 ((string-match "^#[0-9]+$" name)
1620 (setcar n (list 'string-to-number
1622 (string-to-number (substring name 1))))))
1624 (setcar n '(match-string 0)))
1625 ((string= "#&" name)
1626 (setcar n '(string-to-number (match-string 0))))
1628 (setcar n 'replace-count))))))
1631 (defun replace-eval-replacement (expression count)
1632 (let* ((replace-count count)
1633 (replacement (eval expression)))
1634 (if (stringp replacement)
1636 (prin1-to-string replacement t))))
1638 (defun replace-quote (replacement)
1639 "Quote a replacement string.
1640 This just doubles all backslashes in REPLACEMENT and
1641 returns the resulting string. If REPLACEMENT is not
1642 a string, it is first passed through `prin1-to-string'
1643 with the `noescape' argument set.
1645 `match-data' is preserved across the call."
1647 (replace-regexp-in-string "\\\\" "\\\\"
1648 (if (stringp replacement)
1650 (prin1-to-string replacement t))
1653 (defun replace-loop-through-replacements (data count)
1654 ;; DATA is a vector contaning the following values:
1655 ;; 0 next-rotate-count
1657 ;; 2 next-replacement
1659 (if (= (aref data 0) count)
1661 (aset data 0 (+ count (aref data 1)))
1662 (let ((next (cdr (aref data 2))))
1663 (aset data 2 (if (consp next) next (aref data 3))))))
1664 (car (aref data 2)))
1666 (defun replace-match-data (integers reuse &optional new)
1667 "Like `match-data', but markers in REUSE get invalidated.
1668 If NEW is non-nil, it is set and returned instead of fresh data,
1669 but coerced to the correct value of INTEGERS."
1672 (set-match-data new)
1674 (eq (null integers) (markerp (car reuse)))
1676 (match-data integers reuse t)))
1678 (defun replace-match-maybe-edit (newtext fixedcase literal noedit match-data)
1679 "Make a replacement with `replace-match', editing `\\?'.
1680 NEWTEXT, FIXEDCASE, LITERAL are just passed on. If NOEDIT is true, no
1681 check for `\\?' is made to save time. MATCH-DATA is used for the
1682 replacement. In case editing is done, it is changed to use markers.
1684 The return value is non-nil if there has been no `\\?' or NOEDIT was
1685 passed in. If LITERAL is set, no checking is done, anyway."
1686 (unless (or literal noedit)
1688 (while (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\(\\\\\\?\\)"
1691 (read-string "Edit replacement string: "
1694 (replace-match "" t t newtext 3)
1695 (1+ (match-beginning 3)))
1698 nil match-data match-data))))
1700 (set-match-data match-data)
1701 (replace-match newtext fixedcase literal)
1704 (defvar replace-search-function 'search-forward
1705 "Function to use when searching for strings to replace.
1706 It is used by `query-replace' and `replace-string', and is called
1707 with three arguments, as if it were `search-forward'.")
1709 (defvar replace-re-search-function 're-search-forward
1710 "Function to use when searching for regexps to replace.
1711 It is used by `query-replace-regexp', `replace-regexp',
1712 `query-replace-regexp-eval', and `map-query-replace-regexp'.
1713 It is called with three arguments, as if it were
1714 `re-search-forward'.")
1716 (defun perform-replace (from-string replacements
1717 query-flag regexp-flag delimited-flag
1718 &optional repeat-count map start end)
1719 "Subroutine of `query-replace'. Its complexity handles interactive queries.
1720 Don't use this in your own program unless you want to query and set the mark
1721 just as `query-replace' does. Instead, write a simple loop like this:
1723 (while (re-search-forward \"foo[ \\t]+bar\" nil t)
1724 (replace-match \"foobar\" nil nil))
1726 which will run faster and probably do exactly what you want. Please
1727 see the documentation of `replace-match' to find out how to simulate
1730 This function returns nil if and only if there were no matches to
1731 make, or the user didn't cancel the call."
1732 (or map (setq map query-replace-map))
1733 (and query-flag minibuffer-auto-raise
1734 (raise-frame (window-frame (minibuffer-window))))
1735 (let* ((case-fold-search
1736 (if (and case-fold-search search-upper-case)
1737 (isearch-no-upper-case-p from-string regexp-flag)
1739 (nocasify (not (and case-replace case-fold-search)))
1740 (literal (or (not regexp-flag) (eq regexp-flag 'literal)))
1743 replace-re-search-function
1744 replace-search-function))
1745 (search-string from-string)
1746 (real-match-data nil) ; The match data for the current match.
1747 (next-replacement nil)
1748 ;; This is non-nil if we know there is nothing for the user
1749 ;; to edit in the replacement.
1754 (nonempty-match nil)
1756 (recenter-last-op nil) ; Start cycling order with initial position.
1758 ;; If non-nil, it is marker saying where in the buffer to stop.
1761 ;; Data for the next match. If a cons, it has the same format as
1762 ;; (match-data); otherwise it is t if a match is possible at point.
1768 (substitute-command-keys
1769 "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) ")
1770 minibuffer-prompt-properties))))
1772 ;; If region is active, in Transient Mark mode, operate on region.
1774 (setq limit (copy-marker (max start end)))
1775 (goto-char (min start end))
1778 ;; If last typed key in previous call of multi-buffer perform-replace
1779 ;; was `automatic-all', don't ask more questions in next files
1780 (when (eq (lookup-key map (vector last-input-event)) 'automatic-all)
1781 (setq query-flag nil multi-buffer t))
1783 ;; REPLACEMENTS is either a string, a list of strings, or a cons cell
1784 ;; containing a function and its first argument. The function is
1785 ;; called to generate each replacement like this:
1786 ;; (funcall (car replacements) (cdr replacements) replace-count)
1787 ;; It must return a string.
1789 ((stringp replacements)
1790 (setq next-replacement replacements
1792 ((stringp (car replacements)) ; If it isn't a string, it must be a cons
1793 (or repeat-count (setq repeat-count 1))
1794 (setq replacements (cons 'replace-loop-through-replacements
1795 (vector repeat-count repeat-count
1796 replacements replacements)))))
1799 (setq search-function 're-search-forward
1800 search-string (concat "\\b"
1801 (if regexp-flag from-string
1802 (regexp-quote from-string))
1804 (when query-replace-lazy-highlight
1805 (setq isearch-lazy-highlight-last-string nil))
1810 ;; Loop finding occurrences that perhaps should be replaced.
1811 (while (and keep-going
1812 (not (or (eobp) (and limit (>= (point) limit))))
1813 ;; Use the next match if it is already known;
1814 ;; otherwise, search for a match after moving forward
1815 ;; one char if progress is required.
1816 (setq real-match-data
1817 (cond ((consp match-again)
1818 (goto-char (nth 1 match-again))
1820 t real-match-data match-again))
1821 ;; MATCH-AGAIN non-nil means accept an
1825 (funcall search-function search-string
1827 ;; For speed, use only integers and
1828 ;; reuse the list used last time.
1829 (replace-match-data t real-match-data)))
1830 ((and (< (1+ (point)) (point-max))
1832 (< (1+ (point)) limit)))
1833 ;; If not accepting adjacent matches,
1834 ;; move one char to the right before
1835 ;; searching again. Undo the motion
1836 ;; if the search fails.
1837 (let ((opoint (point)))
1840 search-function search-string
1847 ;; Record whether the match is nonempty, to avoid an infinite loop
1848 ;; repeatedly matching the same empty string.
1849 (setq nonempty-match
1850 (/= (nth 0 real-match-data) (nth 1 real-match-data)))
1852 ;; If the match is empty, record that the next one can't be
1855 ;; Otherwise, if matching a regular expression, do the next
1856 ;; match now, since the replacement for this match may
1857 ;; affect whether the next match is adjacent to this one.
1858 ;; If that match is empty, don't use it.
1861 (or (not regexp-flag)
1862 (and (looking-at search-string)
1863 (let ((match (match-data)))
1864 (and (/= (nth 0 match) (nth 1 match))
1867 ;; Optionally ignore matches that have a read-only property.
1868 (unless (and query-replace-skip-read-only
1869 (text-property-not-all
1870 (nth 0 real-match-data) (nth 1 real-match-data)
1873 ;; Calculate the replacement string, if necessary.
1875 (set-match-data real-match-data)
1876 (setq next-replacement
1877 (funcall (car replacements) (cdr replacements)
1879 (if (not query-flag)
1881 (unless (or literal noedit)
1883 (nth 0 real-match-data) (nth 1 real-match-data)
1884 start end search-string
1885 (or delimited-flag regexp-flag) case-fold-search))
1887 (replace-match-maybe-edit
1888 next-replacement nocasify literal
1889 noedit real-match-data)
1890 replace-count (1+ replace-count)))
1892 (let (done replaced key def)
1893 ;; Loop reading commands until one of them sets done,
1894 ;; which means it has finished handling this
1895 ;; occurrence. Any command that sets `done' should
1896 ;; leave behind proper match data for the stack.
1897 ;; Commands not setting `done' need to adjust
1898 ;; `real-match-data'.
1900 (set-match-data real-match-data)
1902 (match-beginning 0) (match-end 0)
1903 start end search-string
1904 (or delimited-flag regexp-flag) case-fold-search)
1905 ;; Bind message-log-max so we don't fill up the message log
1906 ;; with a bunch of identical messages.
1907 (let ((message-log-max nil)
1908 (replacement-presentation
1909 (if query-replace-show-replacement
1911 (set-match-data real-match-data)
1912 (match-substitute-replacement next-replacement
1916 (query-replace-descr from-string)
1917 (query-replace-descr replacement-presentation)))
1918 (setq key (read-event))
1919 ;; Necessary in case something happens during read-event
1920 ;; that clobbers the match data.
1921 (set-match-data real-match-data)
1922 (setq key (vector key))
1923 (setq def (lookup-key map key))
1924 ;; Restore the match data while we process the command.
1925 (cond ((eq def 'help)
1926 (with-output-to-temp-buffer "*Help*"
1928 (concat "Query replacing "
1929 (if delimited-flag "word " "")
1930 (if regexp-flag "regexp " "")
1931 from-string " with "
1932 next-replacement ".\n\n"
1933 (substitute-command-keys
1934 query-replace-help)))
1935 (with-current-buffer standard-output
1938 (setq keep-going nil)
1940 ((eq def 'exit-current)
1941 (setq multi-buffer t keep-going nil done t))
1944 (let ((elt (pop stack)))
1945 (goto-char (nth 0 elt))
1946 (setq replaced (nth 1 elt)
1951 (message "No previous match")
1952 (ding 'no-terminate)
1957 (replace-match-maybe-edit
1958 next-replacement nocasify literal
1959 noedit real-match-data)
1960 replace-count (1+ replace-count)))
1961 (setq done t replaced t))
1962 ((eq def 'act-and-exit)
1965 (replace-match-maybe-edit
1966 next-replacement nocasify literal
1967 noedit real-match-data)
1968 replace-count (1+ replace-count)))
1969 (setq keep-going nil)
1970 (setq done t replaced t))
1971 ((eq def 'act-and-show)
1974 (replace-match-maybe-edit
1975 next-replacement nocasify literal
1976 noedit real-match-data)
1977 replace-count (1+ replace-count)
1978 real-match-data (replace-match-data
1981 ((or (eq def 'automatic) (eq def 'automatic-all))
1984 (replace-match-maybe-edit
1985 next-replacement nocasify literal
1986 noedit real-match-data)
1987 replace-count (1+ replace-count)))
1988 (setq done t query-flag nil replaced t)
1989 (if (eq def 'automatic-all) (setq multi-buffer t)))
1993 ;; `this-command' has the value `query-replace',
1994 ;; so we need to bind it to `recenter-top-bottom'
1995 ;; to allow it to detect a sequence of `C-l'.
1996 (let ((this-command 'recenter-top-bottom)
1997 (last-command 'recenter-top-bottom))
1998 (recenter-top-bottom)))
2000 (let ((opos (point-marker)))
2001 (setq real-match-data (replace-match-data
2004 (goto-char (match-beginning 0))
2006 (save-window-excursion
2009 (set-marker opos nil))
2010 ;; Before we make the replacement,
2011 ;; decide whether the search string
2012 ;; can match again just after this match.
2013 (if (and regexp-flag nonempty-match)
2014 (setq match-again (and (looking-at search-string)
2016 ;; Edit replacement.
2017 ((eq def 'edit-replacement)
2018 (setq real-match-data (replace-match-data
2022 (read-string "Edit replacement string: "
2026 (set-match-data real-match-data)
2028 (replace-match-maybe-edit
2029 next-replacement nocasify literal noedit
2034 ((eq def 'delete-and-edit)
2035 (replace-match "" t t)
2036 (setq real-match-data (replace-match-data
2037 nil real-match-data))
2038 (replace-dehighlight)
2039 (save-excursion (recursive-edit))
2041 ;; Note: we do not need to treat `exit-prefix'
2042 ;; specially here, since we reread
2043 ;; any unrecognized character.
2045 (setq this-command 'mode-exited)
2046 (setq keep-going nil)
2047 (setq unread-command-events
2048 (append (listify-key-sequence key)
2049 unread-command-events))
2051 (when query-replace-lazy-highlight
2052 ;; Force lazy rehighlighting only after replacements.
2053 (if (not (memq def '(skip backup)))
2054 (setq isearch-lazy-highlight-last-string nil)))
2055 (unless (eq def 'recenter)
2056 ;; Reset recenter cycling order to initial position.
2057 (setq recenter-last-op nil)))
2058 ;; Record previous position for ^ when we move on.
2059 ;; Change markers to numbers in the match data
2060 ;; since lots of markers slow down editing.
2061 (push (list (point) replaced
2062 ;;; If the replacement has already happened, all we need is the
2063 ;;; current match start and end. We could get this with a trivial
2065 ;;; (save-excursion (goto-char (match-beginning 0))
2066 ;;; (search-forward (match-string 0))
2068 ;;; if we really wanted to avoid manually constructing match data.
2069 ;;; Adding current-buffer is necessary so that match-data calls can
2070 ;;; return markers which are appropriate for editing.
2079 (replace-dehighlight))
2080 (or unread-command-events
2081 (message "Replaced %d occurrence%s"
2083 (if (= replace-count 1) "" "s")))
2084 (or (and keep-going stack) multi-buffer)))
2086 (defvar isearch-error)
2087 (defvar isearch-forward)
2088 (defvar isearch-case-fold-search)
2089 (defvar isearch-string)
2091 (defvar replace-overlay nil)
2093 (defun replace-highlight (match-beg match-end range-beg range-end
2094 string regexp case-fold)
2095 (if query-replace-highlight
2097 (move-overlay replace-overlay match-beg match-end (current-buffer))
2098 (setq replace-overlay (make-overlay match-beg match-end))
2099 (overlay-put replace-overlay 'priority 1001) ;higher than lazy overlays
2100 (overlay-put replace-overlay 'face 'query-replace)))
2101 (if query-replace-lazy-highlight
2102 (let ((isearch-string string)
2103 (isearch-regexp regexp)
2104 (search-whitespace-regexp nil)
2105 (isearch-case-fold-search case-fold)
2107 (isearch-error nil))
2108 ;; Set isearch-word to nil because word-replace is regexp-based,
2109 ;; so `isearch-search-fun' should not use `word-search-forward'.
2110 (if (and isearch-word isearch-regexp) (setq isearch-word nil))
2111 (isearch-lazy-highlight-new-loop range-beg range-end))))
2113 (defun replace-dehighlight ()
2114 (when replace-overlay
2115 (delete-overlay replace-overlay))
2116 (when query-replace-lazy-highlight
2117 (lazy-highlight-cleanup lazy-highlight-cleanup)
2118 (setq isearch-lazy-highlight-last-string nil)))
2120 ;;; replace.el ends here