lisp/progmodes/python.el: Updated Copyright years.
[emacs.git] / lisp / replace.el
blobad87d474b8b46ce3874d60d46eb01ffb42a791d0
1 ;;; replace.el --- replace commands for Emacs
3 ;; Copyright (C) 1985-1987, 1992, 1994, 1996-1997, 2000-2012
4 ;; Free Software Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Package: emacs
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/>.
24 ;;; Commentary:
26 ;; This package supplies the string and regular-expression replace functions
27 ;; documented in the Emacs user's manual.
29 ;;; Code:
31 (defcustom case-replace t
32 "Non-nil means `query-replace' should preserve case in replacements."
33 :type 'boolean
34 :group 'matching)
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
44 no default value.")
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."
55 :group 'matching
56 :type 'symbol
57 :version "20.3")
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
63 strings or patterns."
64 :group 'matching
65 :type 'symbol
66 :version "20.3")
68 (defcustom query-replace-skip-read-only nil
69 "Non-nil means `query-replace' and friends ignore read-only matches."
70 :type 'boolean
71 :group 'matching
72 :version "22.1")
74 (defcustom query-replace-show-replacement t
75 "Non-nil means to show what actual replacement text will be."
76 :type 'boolean
77 :group 'matching
78 :version "23.1")
80 (defcustom query-replace-highlight t
81 "Non-nil means to highlight matches during query replacement."
82 :type 'boolean
83 :group 'matching)
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')."
90 :type 'boolean
91 :group 'lazy-highlight
92 :group 'matching
93 :version "22.1")
95 (defface query-replace
96 '((t (:inherit isearch)))
97 "Face for highlighting query replacement matches."
98 :group 'matching
99 :version "22.1")
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)
115 (from
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.
119 (save-excursion
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))
126 nil nil nil
127 query-replace-from-history-variable
128 nil t))))
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.
135 (and regexp-flag
136 (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\(\\\\[nt]\\)" from)
137 (let ((match (match-string 3 from)))
138 (cond
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")))
143 (sit-for 2)))
144 from))))
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."
150 (if (and regexp-flag
151 (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\\\[,#]" to))
152 (let (pos list char)
153 (while
154 (progn
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))
159 (cond ((eq char ?\#)
160 (push '(number-to-string replace-count) list))
161 ((eq char ?\,)
162 (setq pos (read-from-string to))
163 (push `(replace-quote ,(car pos)) list)
164 (let ((end
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))
173 (cdr pos)))
174 (1+ (cdr pos))
175 (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
181 (if (cdr to)
182 (cons 'concat to)
183 (car to))))
184 to))
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
190 (save-excursion
191 (let* ((history-add-new-input nil)
192 (to (read-from-minibuffer
193 (format "%s %s with: " prompt (query-replace-descr from))
194 nil nil nil
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))
198 to))
199 regexp-flag))
201 (defun query-replace-read-args (prompt regexp-flag &optional noerror)
202 (unless 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
219 minibuffer.
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
227 or capitalized.)
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'."
234 (interactive
235 (let ((common
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" ""))
240 nil)))
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)
246 (region-beginning))
247 (if (and transient-mark-mode mark-active)
248 (region-end)))))
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
263 minibuffer.
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
271 capitalized.)
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."
298 (interactive
299 (let ((common
300 (query-replace-read-args
301 (concat "Query replace"
302 (if current-prefix-arg " word" "")
303 " regexp"
304 (if (and transient-mark-mode mark-active) " in region" ""))
305 t)))
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)
311 (region-beginning))
312 (if (and transient-mark-mode mark-active)
313 (region-end)))))
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
344 minibuffer.
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."
352 (interactive
353 (progn
354 (barf-if-buffer-read-only)
355 (let* ((from
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)
370 (region-beginning))
371 (if (and transient-mark-mode mark-active)
372 (region-end))))))
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."
399 (interactive
400 (let* ((from (if query-replace-interactive
401 (car regexp-search-ring)
402 (read-from-minibuffer "Map query replace (regexp): "
403 nil nil nil
404 query-replace-from-history-variable
405 nil t)))
406 (to (read-from-minibuffer
407 (format "Query replace %s with (space-separated strings): "
408 (query-replace-descr from))
409 nil nil nil
410 query-replace-to-history-variable from t)))
411 (list from to
412 (and current-prefix-arg
413 (prefix-numeric-value current-prefix-arg))
414 (if (and transient-mark-mode mark-active)
415 (region-beginning))
416 (if (and transient-mark-mode mark-active)
417 (region-end)))))
418 (let (replacements)
419 (if (listp to-strings)
420 (setq replacements to-strings)
421 (while (/= (length to-strings) 0)
422 (if (string-match " " to-strings)
423 (setq replacements
424 (append replacements
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))
430 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
449 minibuffer.
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.)"
458 (interactive
459 (let ((common
460 (query-replace-read-args
461 (concat "Replace"
462 (if current-prefix-arg " word" "")
463 " string"
464 (if (and transient-mark-mode mark-active) " in region" ""))
465 nil)))
466 (list (nth 0 common) (nth 1 common) (nth 2 common)
467 (if (and transient-mark-mode mark-active)
468 (region-beginning))
469 (if (and transient-mark-mode mark-active)
470 (region-end)))))
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."
516 (interactive
517 (let ((common
518 (query-replace-read-args
519 (concat "Replace"
520 (if current-prefix-arg " word" "")
521 " regexp"
522 (if (and transient-mark-mode mark-active) " in region" ""))
523 t)))
524 (list (nth 0 common) (nth 1 common) (nth 2 common)
525 (if (and transient-mark-mode mark-active)
526 (region-beginning))
527 (if (and transient-mark-mode mark-active)
528 (region-end)))))
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."
549 (let* ((defaults
550 (list (regexp-quote
551 (or (funcall (or find-tag-default-function
552 (get major-mode 'find-tag-default-function)
553 'find-tag-default))
554 ""))
555 (car regexp-search-ring)
556 (regexp-quote (or (car search-ring) ""))
557 (car (symbol-value
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)
562 (input
563 (read-from-minibuffer
564 (if default-value
565 (format "%s (default %s): " prompt
566 (query-replace-descr default-value))
567 (format "%s: " prompt))
568 nil nil nil 'regexp-history defaults t)))
569 (if (equal input "")
570 (or default-value input)
571 (prog1 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."
610 (interactive
611 (progn
612 (barf-if-buffer-read-only)
613 (keep-lines-read-args "Keep lines containing match for regexp")))
614 (if rstart
615 (progn
616 (goto-char (min rstart rend))
617 (setq rend
618 (progn
619 (save-excursion
620 (goto-char (max rstart rend))
621 (unless (or (bolp) (eobp))
622 (forward-line 0))
623 (point-marker)))))
624 (if (and interactive transient-mark-mode mark-active)
625 (setq rstart (region-beginning)
626 rend (progn
627 (goto-char (region-end))
628 (unless (or (bolp) (eobp))
629 (forward-line 0))
630 (point-marker)))
631 (setq rstart (point)
632 rend (point-max-marker)))
633 (goto-char rstart))
634 (save-excursion
635 (or (bolp) (forward-line 1))
636 (let ((start (point))
637 (case-fold-search
638 (if (and case-fold-search search-upper-case)
639 (isearch-no-upper-case-p regexp t)
640 case-fold-search)))
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))
646 (forward-line 0)
647 (point))))
648 ;; Now end is first char preserved by the new match.
649 (if (< start end)
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))
656 (forward-char 1)))))
657 (set-marker rend nil)
658 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."
685 (interactive
686 (progn
687 (barf-if-buffer-read-only)
688 (keep-lines-read-args "Flush lines containing match for regexp")))
689 (if rstart
690 (progn
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)))
696 (setq rstart (point)
697 rend (point-max-marker)))
698 (goto-char rstart))
699 (let ((case-fold-search
700 (if (and case-fold-search search-upper-case)
701 (isearch-no-upper-case-p regexp t)
702 case-fold-search)))
703 (save-excursion
704 (while (and (< (point) rend)
705 (re-search-forward regexp rend t))
706 (delete-region (save-excursion (goto-char (match-beginning 0))
707 (forward-line 0)
708 (point))
709 (progn (forward-line 1) (point))))))
710 (set-marker rend nil)
711 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."
733 (interactive
734 (keep-lines-read-args "How many matches for regexp"))
735 (save-excursion
736 (if rstart
737 (progn
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)
742 rend (region-end))
743 (setq rstart (point)
744 rend (point-max)))
745 (goto-char rstart))
746 (let ((count 0)
747 opoint
748 (case-fold-search
749 (if (and case-fold-search search-upper-case)
750 (isearch-no-upper-case-p regexp t)
751 case-fold-search)))
752 (while (and (< (point) rend)
753 (progn (setq opoint (point))
754 (re-search-forward regexp rend t)))
755 (if (= opoint (point))
756 (forward-char 1)
757 (setq count (1+ count))))
758 (when interactive (message "%d occurrence%s"
759 count
760 (if (= count 1) "" "s")))
761 count)))
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
769 :help ,(purecopy
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 [occur-edit-buffer]
790 `(menu-item ,(purecopy "Edit Occur Buffer") occur-edit-mode
791 :help ,(purecopy "Edit the *Occur* buffer and apply changes to the original buffers.")))
792 (define-key map [separator-2] menu-bar-separator)
793 (define-key map [occur-mode-goto-occurrence-other-window]
794 `(menu-item ,(purecopy "Go To Occurrence Other Window") occur-mode-goto-occurrence-other-window
795 :help ,(purecopy "Go to the occurrence the current line describes, in another window")))
796 (define-key map [occur-mode-goto-occurrence]
797 `(menu-item ,(purecopy "Go To Occurrence") occur-mode-goto-occurrence
798 :help ,(purecopy "Go to the occurrence the current line describes")))
799 (define-key map [occur-mode-display-occurrence]
800 `(menu-item ,(purecopy "Display Occurrence") occur-mode-display-occurrence
801 :help ,(purecopy "Display in another window the occurrence the current line describes")))
802 (define-key map [occur-next]
803 `(menu-item ,(purecopy "Move to Next Match") occur-next
804 :help ,(purecopy "Move to the Nth (default 1) next match in an Occur mode buffer")))
805 (define-key map [occur-prev]
806 `(menu-item ,(purecopy "Move to Previous Match") occur-prev
807 :help ,(purecopy "Move to the Nth (default 1) previous match in an Occur mode buffer")))
808 map)
809 "Menu keymap for `occur-mode'.")
811 (defvar occur-mode-map
812 (let ((map (make-sparse-keymap)))
813 ;; We use this alternative name, so we can use \\[occur-mode-mouse-goto].
814 (define-key map [mouse-2] 'occur-mode-mouse-goto)
815 (define-key map "\C-c\C-c" 'occur-mode-goto-occurrence)
816 (define-key map "e" 'occur-edit-mode)
817 (define-key map "\C-m" 'occur-mode-goto-occurrence)
818 (define-key map "o" 'occur-mode-goto-occurrence-other-window)
819 (define-key map "\C-o" 'occur-mode-display-occurrence)
820 (define-key map "\M-n" 'occur-next)
821 (define-key map "\M-p" 'occur-prev)
822 (define-key map "r" 'occur-rename-buffer)
823 (define-key map "c" 'clone-buffer)
824 (define-key map "\C-c\C-f" 'next-error-follow-minor-mode)
825 (define-key map [menu-bar occur] (cons (purecopy "Occur") occur-menu-map))
826 map)
827 "Keymap for `occur-mode'.")
829 (defvar occur-revert-arguments nil
830 "Arguments to pass to `occur-1' to revert an Occur mode buffer.
831 See `occur-revert-function'.")
832 (make-variable-buffer-local 'occur-revert-arguments)
833 (put 'occur-revert-arguments 'permanent-local t)
835 (defcustom occur-mode-hook '(turn-on-font-lock)
836 "Hook run when entering Occur mode."
837 :type 'hook
838 :group 'matching)
840 (defcustom occur-hook nil
841 "Hook run by Occur when there are any matches."
842 :type 'hook
843 :group 'matching)
845 (defcustom occur-mode-find-occurrence-hook nil
846 "Hook run by Occur after locating an occurrence.
847 This will be called with the cursor position at the occurrence. An application
848 for this is to reveal context in an outline-mode when the occurrence is hidden."
849 :type 'hook
850 :group 'matching)
852 (put 'occur-mode 'mode-class 'special)
853 (define-derived-mode occur-mode special-mode "Occur"
854 "Major mode for output from \\[occur].
855 \\<occur-mode-map>Move point to one of the items in this buffer, then use
856 \\[occur-mode-goto-occurrence] to go to the occurrence that the item refers to.
857 Alternatively, click \\[occur-mode-mouse-goto] on an item to go to it.
859 \\{occur-mode-map}"
860 (set (make-local-variable 'revert-buffer-function) 'occur-revert-function)
861 (setq next-error-function 'occur-next-error))
864 ;;; Occur Edit mode
866 (defvar occur-edit-mode-map
867 (let ((map (make-sparse-keymap)))
868 (set-keymap-parent map text-mode-map)
869 (define-key map [mouse-2] 'occur-mode-mouse-goto)
870 (define-key map "\C-c\C-c" 'occur-cease-edit)
871 (define-key map "\C-o" 'occur-mode-display-occurrence)
872 (define-key map "\C-c\C-f" 'next-error-follow-minor-mode)
873 (define-key map [menu-bar occur] (cons (purecopy "Occur") occur-menu-map))
874 map)
875 "Keymap for `occur-edit-mode'.")
877 (define-derived-mode occur-edit-mode occur-mode "Occur-Edit"
878 "Major mode for editing *Occur* buffers.
879 In this mode, changes to the *Occur* buffer are also applied to
880 the originating buffer.
882 To return to ordinary Occur mode, use \\[occur-cease-edit]."
883 (setq buffer-read-only nil)
884 (add-hook 'after-change-functions 'occur-after-change-function nil t)
885 (message (substitute-command-keys
886 "Editing: Type \\[occur-cease-edit] to return to Occur mode.")))
888 (defun occur-cease-edit ()
889 "Switch from Occur Edit mode to Occur mode."
890 (interactive)
891 (when (derived-mode-p 'occur-edit-mode)
892 (occur-mode)
893 (message "Switching to Occur mode.")))
895 (defun occur-after-change-function (beg end length)
896 (save-excursion
897 (goto-char beg)
898 (let* ((line-beg (line-beginning-position))
899 (m (get-text-property line-beg 'occur-target))
900 (buf (marker-buffer m))
901 col)
902 (when (and (get-text-property line-beg 'occur-prefix)
903 (not (get-text-property end 'occur-prefix)))
904 (when (= length 0)
905 ;; Apply occur-target property to inserted (e.g. yanked) text.
906 (put-text-property beg end 'occur-target m)
907 ;; Did we insert a newline? Occur Edit mode can't create new
908 ;; Occur entries; just discard everything after the newline.
909 (save-excursion
910 (and (search-forward "\n" end t)
911 (delete-region (1- (point)) end))))
912 (let* ((line (- (line-number-at-pos)
913 (line-number-at-pos (window-start))))
914 (readonly (with-current-buffer buf buffer-read-only))
915 (win (or (get-buffer-window buf)
916 (display-buffer buf t)))
917 (line-end (line-end-position))
918 (text (save-excursion
919 (goto-char (next-single-property-change
920 line-beg 'occur-prefix nil
921 line-end))
922 (setq col (- (point) line-beg))
923 (buffer-substring-no-properties (point) line-end))))
924 (with-selected-window win
925 (goto-char m)
926 (recenter line)
927 (if readonly
928 (message "Buffer `%s' is read only." buf)
929 (delete-region (line-beginning-position) (line-end-position))
930 (insert text))
931 (move-to-column col)))))))
934 (defun occur-revert-function (_ignore1 _ignore2)
935 "Handle `revert-buffer' for Occur mode buffers."
936 (apply 'occur-1 (append occur-revert-arguments (list (buffer-name)))))
938 (defun occur-mode-find-occurrence ()
939 (let ((pos (get-text-property (point) 'occur-target)))
940 (unless pos
941 (error "No occurrence on this line"))
942 (unless (buffer-live-p (marker-buffer pos))
943 (error "Buffer for this occurrence was killed"))
944 pos))
946 (defalias 'occur-mode-mouse-goto 'occur-mode-goto-occurrence)
947 (defun occur-mode-goto-occurrence (&optional event)
948 "Go to the occurrence on the current line."
949 (interactive (list last-nonmenu-event))
950 (let ((pos
951 (if (null event)
952 ;; Actually `event-end' works correctly with a nil argument as
953 ;; well, so we could dispense with this test, but let's not
954 ;; rely on this undocumented behavior.
955 (occur-mode-find-occurrence)
956 (with-current-buffer (window-buffer (posn-window (event-end event)))
957 (save-excursion
958 (goto-char (posn-point (event-end event)))
959 (occur-mode-find-occurrence))))))
960 (pop-to-buffer (marker-buffer pos))
961 (goto-char pos)
962 (run-hooks 'occur-mode-find-occurrence-hook)))
964 (defun occur-mode-goto-occurrence-other-window ()
965 "Go to the occurrence the current line describes, in another window."
966 (interactive)
967 (let ((pos (occur-mode-find-occurrence)))
968 (switch-to-buffer-other-window (marker-buffer pos))
969 (goto-char pos)
970 (run-hooks 'occur-mode-find-occurrence-hook)))
972 (defun occur-mode-display-occurrence ()
973 "Display in another window the occurrence the current line describes."
974 (interactive)
975 (let ((pos (occur-mode-find-occurrence))
976 window)
977 (setq window (display-buffer (marker-buffer pos) t))
978 ;; This is the way to set point in the proper window.
979 (save-selected-window
980 (select-window window)
981 (goto-char pos)
982 (run-hooks 'occur-mode-find-occurrence-hook))))
984 (defun occur-find-match (n search message)
985 (if (not n) (setq n 1))
986 (let ((r))
987 (while (> n 0)
988 (setq r (funcall search (point) 'occur-match))
989 (and r
990 (get-text-property r 'occur-match)
991 (setq r (funcall search r 'occur-match)))
992 (if r
993 (goto-char r)
994 (error message))
995 (setq n (1- n)))))
997 (defun occur-next (&optional n)
998 "Move to the Nth (default 1) next match in an Occur mode buffer."
999 (interactive "p")
1000 (occur-find-match n #'next-single-property-change "No more matches"))
1002 (defun occur-prev (&optional n)
1003 "Move to the Nth (default 1) previous match in an Occur mode buffer."
1004 (interactive "p")
1005 (occur-find-match n #'previous-single-property-change "No earlier matches"))
1007 (defun occur-next-error (&optional argp reset)
1008 "Move to the Nth (default 1) next match in an Occur mode buffer.
1009 Compatibility function for \\[next-error] invocations."
1010 (interactive "p")
1011 ;; we need to run occur-find-match from within the Occur buffer
1012 (with-current-buffer
1013 ;; Choose the buffer and make it current.
1014 (if (next-error-buffer-p (current-buffer))
1015 (current-buffer)
1016 (next-error-find-buffer nil nil
1017 (lambda ()
1018 (eq major-mode 'occur-mode))))
1020 (goto-char (cond (reset (point-min))
1021 ((< argp 0) (line-beginning-position))
1022 ((> argp 0) (line-end-position))
1023 ((point))))
1024 (occur-find-match
1025 (abs argp)
1026 (if (> 0 argp)
1027 #'previous-single-property-change
1028 #'next-single-property-change)
1029 "No more matches")
1030 ;; In case the *Occur* buffer is visible in a nonselected window.
1031 (let ((win (get-buffer-window (current-buffer) t)))
1032 (if win (set-window-point win (point))))
1033 (occur-mode-goto-occurrence)))
1035 (defface match
1036 '((((class color) (min-colors 88) (background light))
1037 :background "yellow1")
1038 (((class color) (min-colors 88) (background dark))
1039 :background "RoyalBlue3")
1040 (((class color) (min-colors 8) (background light))
1041 :background "yellow" :foreground "black")
1042 (((class color) (min-colors 8) (background dark))
1043 :background "blue" :foreground "white")
1044 (((type tty) (class mono))
1045 :inverse-video t)
1046 (t :background "gray"))
1047 "Face used to highlight matches permanently."
1048 :group 'matching
1049 :version "22.1")
1051 (defcustom list-matching-lines-default-context-lines 0
1052 "Default number of context lines included around `list-matching-lines' matches.
1053 A negative number means to include that many lines before the match.
1054 A positive number means to include that many lines both before and after."
1055 :type 'integer
1056 :group 'matching)
1058 (defalias 'list-matching-lines 'occur)
1060 (defcustom list-matching-lines-face 'match
1061 "Face used by \\[list-matching-lines] to show the text that matches.
1062 If the value is nil, don't highlight the matching portions specially."
1063 :type 'face
1064 :group 'matching)
1066 (defcustom list-matching-lines-buffer-name-face 'underline
1067 "Face used by \\[list-matching-lines] to show the names of buffers.
1068 If the value is nil, don't highlight the buffer names specially."
1069 :type 'face
1070 :group 'matching)
1072 (defcustom occur-excluded-properties
1073 '(read-only invisible intangible field mouse-face help-echo local-map keymap
1074 yank-handler follow-link)
1075 "Text properties to discard when copying lines to the *Occur* buffer.
1076 The value should be a list of text properties to discard or t,
1077 which means to discard all text properties."
1078 :type '(choice (const :tag "All" t) (repeat symbol))
1079 :group 'matching
1080 :version "22.1")
1082 (defun occur-read-primary-args ()
1083 (let* ((perform-collect (consp current-prefix-arg))
1084 (regexp (read-regexp (if perform-collect
1085 "Collect strings matching regexp"
1086 "List lines matching regexp")
1087 (car regexp-history))))
1088 (list regexp
1089 (if perform-collect
1090 ;; Perform collect operation
1091 (if (zerop (regexp-opt-depth regexp))
1092 ;; No subexpression so collect the entire match.
1093 "\\&"
1094 ;; Get the regexp for collection pattern.
1095 (let ((default (car occur-collect-regexp-history)))
1096 (read-string
1097 (format "Regexp to collect (default %s): " default)
1098 nil 'occur-collect-regexp-history default)))
1099 ;; Otherwise normal occur takes numerical prefix argument.
1100 (when current-prefix-arg
1101 (prefix-numeric-value current-prefix-arg))))))
1103 (defun occur-rename-buffer (&optional unique-p interactive-p)
1104 "Rename the current *Occur* buffer to *Occur: original-buffer-name*.
1105 Here `original-buffer-name' is the buffer name where Occur was originally run.
1106 When given the prefix argument, or called non-interactively, the renaming
1107 will not clobber the existing buffer(s) of that name, but use
1108 `generate-new-buffer-name' instead. You can add this to `occur-hook'
1109 if you always want a separate *Occur* buffer for each buffer where you
1110 invoke `occur'."
1111 (interactive "P\np")
1112 (with-current-buffer
1113 (if (eq major-mode 'occur-mode) (current-buffer) (get-buffer "*Occur*"))
1114 (rename-buffer (concat "*Occur: "
1115 (mapconcat #'buffer-name
1116 (car (cddr occur-revert-arguments)) "/")
1117 "*")
1118 (or unique-p (not interactive-p)))))
1120 (defun occur (regexp &optional nlines)
1121 "Show all lines in the current buffer containing a match for REGEXP.
1122 If a match spreads across multiple lines, all those lines are shown.
1124 Each line is displayed with NLINES lines before and after, or -NLINES
1125 before if NLINES is negative.
1126 NLINES defaults to `list-matching-lines-default-context-lines'.
1127 Interactively it is the prefix arg.
1129 The lines are shown in a buffer named `*Occur*'.
1130 It serves as a menu to find any of the occurrences in this buffer.
1131 \\<occur-mode-map>\\[describe-mode] in that buffer will explain how.
1133 If REGEXP contains upper case characters (excluding those preceded by `\\')
1134 and `search-upper-case' is non-nil, the matching is case-sensitive.
1136 When NLINES is a string or when the function is called
1137 interactively with prefix argument without a number (`C-u' alone
1138 as prefix) the matching strings are collected into the `*Occur*'
1139 buffer by using NLINES as a replacement regexp. NLINES may
1140 contain \\& and \\N which convention follows `replace-match'.
1141 For example, providing \"defun\\s +\\(\\S +\\)\" for REGEXP and
1142 \"\\1\" for NLINES collects all the function names in a lisp
1143 program. When there is no parenthesized subexpressions in REGEXP
1144 the entire match is collected. In any case the searched buffers
1145 are not modified."
1146 (interactive (occur-read-primary-args))
1147 (occur-1 regexp nlines (list (current-buffer))))
1149 (defvar ido-ignore-item-temp-list)
1151 (defun multi-occur (bufs regexp &optional nlines)
1152 "Show all lines in buffers BUFS containing a match for REGEXP.
1153 This function acts on multiple buffers; otherwise, it is exactly like
1154 `occur'. When you invoke this command interactively, you must specify
1155 the buffer names that you want, one by one.
1156 See also `multi-occur-in-matching-buffers'."
1157 (interactive
1158 (cons
1159 (let* ((bufs (list (read-buffer "First buffer to search: "
1160 (current-buffer) t)))
1161 (buf nil)
1162 (ido-ignore-item-temp-list bufs))
1163 (while (not (string-equal
1164 (setq buf (read-buffer
1165 (if (eq read-buffer-function 'ido-read-buffer)
1166 "Next buffer to search (C-j to end): "
1167 "Next buffer to search (RET to end): ")
1168 nil t))
1169 ""))
1170 (add-to-list 'bufs buf)
1171 (setq ido-ignore-item-temp-list bufs))
1172 (nreverse (mapcar #'get-buffer bufs)))
1173 (occur-read-primary-args)))
1174 (occur-1 regexp nlines bufs))
1176 (defun multi-occur-in-matching-buffers (bufregexp regexp &optional allbufs)
1177 "Show all lines matching REGEXP in buffers specified by BUFREGEXP.
1178 Normally BUFREGEXP matches against each buffer's visited file name,
1179 but if you specify a prefix argument, it matches against the buffer name.
1180 See also `multi-occur'."
1181 (interactive
1182 (cons
1183 (let* ((default (car regexp-history))
1184 (input
1185 (read-from-minibuffer
1186 (if current-prefix-arg
1187 "List lines in buffers whose names match regexp: "
1188 "List lines in buffers whose filenames match regexp: ")
1192 'regexp-history)))
1193 (if (equal input "")
1194 default
1195 input))
1196 (occur-read-primary-args)))
1197 (when bufregexp
1198 (occur-1 regexp nil
1199 (delq nil
1200 (mapcar (lambda (buf)
1201 (when (if allbufs
1202 (string-match bufregexp
1203 (buffer-name buf))
1204 (and (buffer-file-name buf)
1205 (string-match bufregexp
1206 (buffer-file-name buf))))
1207 buf))
1208 (buffer-list))))))
1210 (defun occur-1 (regexp nlines bufs &optional buf-name)
1211 (unless (and regexp (not (equal regexp "")))
1212 (error "Occur doesn't work with the empty regexp"))
1213 (unless buf-name
1214 (setq buf-name "*Occur*"))
1215 (let (occur-buf
1216 (active-bufs (delq nil (mapcar #'(lambda (buf)
1217 (when (buffer-live-p buf) buf))
1218 bufs))))
1219 ;; Handle the case where one of the buffers we're searching is the
1220 ;; output buffer. Just rename it.
1221 (when (member buf-name (mapcar 'buffer-name active-bufs))
1222 (with-current-buffer (get-buffer buf-name)
1223 (rename-uniquely)))
1225 ;; Now find or create the output buffer.
1226 ;; If we just renamed that buffer, we will make a new one here.
1227 (setq occur-buf (get-buffer-create buf-name))
1229 (with-current-buffer occur-buf
1230 (if (stringp nlines)
1231 (fundamental-mode) ;; This is for collect operation.
1232 (occur-mode))
1233 (let ((inhibit-read-only t)
1234 ;; Don't generate undo entries for creation of the initial contents.
1235 (buffer-undo-list t))
1236 (erase-buffer)
1237 (let ((count
1238 (if (stringp nlines)
1239 ;; Treat nlines as a regexp to collect.
1240 (let ((bufs active-bufs)
1241 (count 0))
1242 (while bufs
1243 (with-current-buffer (car bufs)
1244 (save-excursion
1245 (goto-char (point-min))
1246 (while (re-search-forward regexp nil t)
1247 ;; Insert the replacement regexp.
1248 (let ((str (match-substitute-replacement nlines)))
1249 (if str
1250 (with-current-buffer occur-buf
1251 (insert str)
1252 (setq count (1+ count))
1253 (or (zerop (current-column))
1254 (insert "\n"))))))))
1255 (setq bufs (cdr bufs)))
1256 count)
1257 ;; Perform normal occur.
1258 (occur-engine
1259 regexp active-bufs occur-buf
1260 (or nlines list-matching-lines-default-context-lines)
1261 (if (and case-fold-search search-upper-case)
1262 (isearch-no-upper-case-p regexp t)
1263 case-fold-search)
1264 list-matching-lines-buffer-name-face
1265 nil list-matching-lines-face
1266 (not (eq occur-excluded-properties t))))))
1267 (let* ((bufcount (length active-bufs))
1268 (diff (- (length bufs) bufcount)))
1269 (message "Searched %d buffer%s%s; %s match%s%s"
1270 bufcount (if (= bufcount 1) "" "s")
1271 (if (zerop diff) "" (format " (%d killed)" diff))
1272 (if (zerop count) "no" (format "%d" count))
1273 (if (= count 1) "" "es")
1274 ;; Don't display regexp if with remaining text
1275 ;; it is longer than window-width.
1276 (if (> (+ (length regexp) 42) (window-width))
1277 "" (format " for `%s'" (query-replace-descr regexp)))))
1278 (setq occur-revert-arguments (list regexp nlines bufs))
1279 (if (= count 0)
1280 (kill-buffer occur-buf)
1281 (display-buffer occur-buf)
1282 (setq next-error-last-buffer occur-buf)
1283 (setq buffer-read-only t)
1284 (set-buffer-modified-p nil)
1285 (run-hooks 'occur-hook)))))))
1287 (defun occur-engine (regexp buffers out-buf nlines case-fold
1288 title-face prefix-face match-face keep-props)
1289 (with-current-buffer out-buf
1290 (let ((globalcount 0)
1291 (coding nil)
1292 (case-fold-search case-fold))
1293 ;; Map over all the buffers
1294 (dolist (buf buffers)
1295 (when (buffer-live-p buf)
1296 (let ((matches 0) ;; count of matched lines
1297 (lines 1) ;; line count
1298 (prev-after-lines nil) ;; context lines of prev match
1299 (prev-lines nil) ;; line number of prev match endpt
1300 (matchbeg 0)
1301 (origpt nil)
1302 (begpt nil)
1303 (endpt nil)
1304 (marker nil)
1305 (curstring "")
1306 (ret nil)
1307 (inhibit-field-text-motion t)
1308 (headerpt (with-current-buffer out-buf (point))))
1309 (with-current-buffer buf
1310 (or coding
1311 ;; Set CODING only if the current buffer locally
1312 ;; binds buffer-file-coding-system.
1313 (not (local-variable-p 'buffer-file-coding-system))
1314 (setq coding buffer-file-coding-system))
1315 (save-excursion
1316 (goto-char (point-min)) ;; begin searching in the buffer
1317 (while (not (eobp))
1318 (setq origpt (point))
1319 (when (setq endpt (re-search-forward regexp nil t))
1320 (setq matches (1+ matches)) ;; increment match count
1321 (setq matchbeg (match-beginning 0))
1322 ;; Get beginning of first match line and end of the last.
1323 (save-excursion
1324 (goto-char matchbeg)
1325 (setq begpt (line-beginning-position))
1326 (goto-char endpt)
1327 (setq endpt (line-end-position)))
1328 ;; Sum line numbers up to the first match line.
1329 (setq lines (+ lines (count-lines origpt begpt)))
1330 (setq marker (make-marker))
1331 (set-marker marker matchbeg)
1332 (setq curstring (occur-engine-line begpt endpt keep-props))
1333 ;; Highlight the matches
1334 (let ((len (length curstring))
1335 (start 0))
1336 (while (and (< start len)
1337 (string-match regexp curstring start))
1338 (add-text-properties
1339 (match-beginning 0) (match-end 0)
1340 (append
1341 `(occur-match t)
1342 (when match-face
1343 ;; Use `face' rather than `font-lock-face' here
1344 ;; so as to override faces copied from the buffer.
1345 `(face ,match-face)))
1346 curstring)
1347 (setq start (match-end 0))))
1348 ;; Generate the string to insert for this match
1349 (let* ((match-prefix
1350 ;; Using 7 digits aligns tabs properly.
1351 (apply #'propertize (format "%7d:" lines)
1352 (append
1353 (when prefix-face
1354 `(font-lock-face prefix-face))
1355 `(occur-prefix t mouse-face (highlight)
1356 ;; Allow insertion of text at
1357 ;; the end of the prefix (for
1358 ;; Occur Edit mode).
1359 front-sticky t rear-nonsticky t
1360 occur-target ,marker follow-link t
1361 help-echo "mouse-2: go to this occurrence"))))
1362 (match-str
1363 ;; We don't put `mouse-face' on the newline,
1364 ;; because that loses. And don't put it
1365 ;; on context lines to reduce flicker.
1366 (propertize curstring 'mouse-face (list 'highlight)
1367 'occur-target marker
1368 'follow-link t
1369 'help-echo
1370 "mouse-2: go to this occurrence"))
1371 (out-line
1372 (concat
1373 match-prefix
1374 ;; Add non-numeric prefix to all non-first lines
1375 ;; of multi-line matches.
1376 (replace-regexp-in-string
1377 "\n"
1378 "\n :"
1379 match-str)
1380 ;; Add marker at eol, but no mouse props.
1381 (propertize "\n" 'occur-target marker)))
1382 (data
1383 (if (= nlines 0)
1384 ;; The simple display style
1385 out-line
1386 ;; The complex multi-line display style.
1387 (setq ret (occur-context-lines
1388 out-line nlines keep-props begpt endpt
1389 lines prev-lines prev-after-lines))
1390 ;; Set first elem of the returned list to `data',
1391 ;; and the second elem to `prev-after-lines'.
1392 (setq prev-after-lines (nth 1 ret))
1393 (nth 0 ret))))
1394 ;; Actually insert the match display data
1395 (with-current-buffer out-buf
1396 (insert data)))
1397 (goto-char endpt))
1398 (if endpt
1399 (progn
1400 ;; Sum line numbers between first and last match lines.
1401 (setq lines (+ lines (count-lines begpt endpt)
1402 ;; Add 1 for empty last match line since
1403 ;; count-lines returns 1 line less.
1404 (if (and (bolp) (eolp)) 1 0)))
1405 ;; On to the next match...
1406 (forward-line 1))
1407 (goto-char (point-max)))
1408 (setq prev-lines (1- lines)))
1409 ;; Flush remaining context after-lines.
1410 (when prev-after-lines
1411 (with-current-buffer out-buf
1412 (insert (apply #'concat (occur-engine-add-prefix
1413 prev-after-lines)))))))
1414 (when (not (zerop matches)) ;; is the count zero?
1415 (setq globalcount (+ globalcount matches))
1416 (with-current-buffer out-buf
1417 (goto-char headerpt)
1418 (let ((beg (point))
1419 end)
1420 (insert (propertize
1421 (format "%d match%s%s in buffer: %s\n"
1422 matches (if (= matches 1) "" "es")
1423 ;; Don't display regexp for multi-buffer.
1424 (if (> (length buffers) 1)
1425 "" (format " for \"%s\""
1426 (query-replace-descr regexp)))
1427 (buffer-name buf))
1428 'read-only t))
1429 (setq end (point))
1430 (add-text-properties beg end
1431 (append
1432 (when title-face
1433 `(font-lock-face ,title-face))
1434 `(occur-title ,buf))))
1435 (goto-char (point-min)))))))
1436 ;; Display total match count and regexp for multi-buffer.
1437 (when (and (not (zerop globalcount)) (> (length buffers) 1))
1438 (goto-char (point-min))
1439 (let ((beg (point))
1440 end)
1441 (insert (format "%d match%s total for \"%s\":\n"
1442 globalcount (if (= globalcount 1) "" "es")
1443 (query-replace-descr regexp)))
1444 (setq end (point))
1445 (add-text-properties beg end (when title-face
1446 `(font-lock-face ,title-face))))
1447 (goto-char (point-min)))
1448 (if coding
1449 ;; CODING is buffer-file-coding-system of the first buffer
1450 ;; that locally binds it. Let's use it also for the output
1451 ;; buffer.
1452 (set-buffer-file-coding-system coding))
1453 ;; Return the number of matches
1454 globalcount)))
1456 (defun occur-engine-line (beg end &optional keep-props)
1457 (if (and keep-props (if (boundp 'jit-lock-mode) jit-lock-mode)
1458 (text-property-not-all beg end 'fontified t))
1459 (if (fboundp 'jit-lock-fontify-now)
1460 (jit-lock-fontify-now beg end)))
1461 (if (and keep-props (not (eq occur-excluded-properties t)))
1462 (let ((str (buffer-substring beg end)))
1463 (remove-list-of-text-properties
1464 0 (length str) occur-excluded-properties str)
1465 str)
1466 (buffer-substring-no-properties beg end)))
1468 (defun occur-engine-add-prefix (lines)
1469 (mapcar
1470 #'(lambda (line)
1471 (concat " :" line "\n"))
1472 lines))
1474 (defun occur-accumulate-lines (count &optional keep-props pt)
1475 (save-excursion
1476 (when pt
1477 (goto-char pt))
1478 (let ((forwardp (> count 0))
1479 result beg end moved)
1480 (while (not (or (zerop count)
1481 (if forwardp
1482 (eobp)
1483 (and (bobp) (not moved)))))
1484 (setq count (+ count (if forwardp -1 1)))
1485 (setq beg (line-beginning-position)
1486 end (line-end-position))
1487 (push (occur-engine-line beg end keep-props) result)
1488 (setq moved (= 0 (forward-line (if forwardp 1 -1)))))
1489 (nreverse result))))
1491 ;; Generate context display for occur.
1492 ;; OUT-LINE is the line where the match is.
1493 ;; NLINES and KEEP-PROPS are args to occur-engine.
1494 ;; LINES is line count of the current match,
1495 ;; PREV-LINES is line count of the previous match,
1496 ;; PREV-AFTER-LINES is a list of after-context lines of the previous match.
1497 ;; Generate a list of lines, add prefixes to all but OUT-LINE,
1498 ;; then concatenate them all together.
1499 (defun occur-context-lines (out-line nlines keep-props begpt endpt
1500 lines prev-lines prev-after-lines)
1501 ;; Find after- and before-context lines of the current match.
1502 (let ((before-lines
1503 (nreverse (cdr (occur-accumulate-lines
1504 (- (1+ (abs nlines))) keep-props begpt))))
1505 (after-lines
1506 (cdr (occur-accumulate-lines
1507 (1+ nlines) keep-props endpt)))
1508 separator)
1510 ;; Combine after-lines of the previous match
1511 ;; with before-lines of the current match.
1513 (when prev-after-lines
1514 ;; Don't overlap prev after-lines with current before-lines.
1515 (if (>= (+ prev-lines (length prev-after-lines))
1516 (- lines (length before-lines)))
1517 (setq prev-after-lines
1518 (butlast prev-after-lines
1519 (- (length prev-after-lines)
1520 (- lines prev-lines (length before-lines) 1))))
1521 ;; Separate non-overlapping context lines with a dashed line.
1522 (setq separator "-------\n")))
1524 (when prev-lines
1525 ;; Don't overlap current before-lines with previous match line.
1526 (if (<= (- lines (length before-lines))
1527 prev-lines)
1528 (setq before-lines
1529 (nthcdr (- (length before-lines)
1530 (- lines prev-lines 1))
1531 before-lines))
1532 ;; Separate non-overlapping before-context lines.
1533 (unless (> nlines 0)
1534 (setq separator "-------\n"))))
1536 (list
1537 ;; Return a list where the first element is the output line.
1538 (apply #'concat
1539 (append
1540 (and prev-after-lines
1541 (occur-engine-add-prefix prev-after-lines))
1542 (and separator (list separator))
1543 (occur-engine-add-prefix before-lines)
1544 (list out-line)))
1545 ;; And the second element is the list of context after-lines.
1546 (if (> nlines 0) after-lines))))
1549 ;; It would be nice to use \\[...], but there is no reasonable way
1550 ;; to make that display both SPC and Y.
1551 (defconst query-replace-help
1552 "Type Space or `y' to replace one match, Delete or `n' to skip to next,
1553 RET or `q' to exit, Period to replace one match and exit,
1554 Comma to replace but not move point immediately,
1555 C-r to enter recursive edit (\\[exit-recursive-edit] to get out again),
1556 C-w to delete match and recursive edit,
1557 C-l to clear the screen, redisplay, and offer same replacement again,
1558 ! to replace all remaining matches with no more questions,
1559 ^ to move point back to previous match,
1560 E to edit the replacement string"
1561 "Help message while in `query-replace'.")
1563 (defvar query-replace-map
1564 (let ((map (make-sparse-keymap)))
1565 (define-key map " " 'act)
1566 (define-key map "\d" 'skip)
1567 (define-key map [delete] 'skip)
1568 (define-key map [backspace] 'skip)
1569 (define-key map "y" 'act)
1570 (define-key map "n" 'skip)
1571 (define-key map "Y" 'act)
1572 (define-key map "N" 'skip)
1573 (define-key map "e" 'edit-replacement)
1574 (define-key map "E" 'edit-replacement)
1575 (define-key map "," 'act-and-show)
1576 (define-key map "q" 'exit)
1577 (define-key map "\r" 'exit)
1578 (define-key map [return] 'exit)
1579 (define-key map "." 'act-and-exit)
1580 (define-key map "\C-r" 'edit)
1581 (define-key map "\C-w" 'delete-and-edit)
1582 (define-key map "\C-l" 'recenter)
1583 (define-key map "!" 'automatic)
1584 (define-key map "^" 'backup)
1585 (define-key map "\C-h" 'help)
1586 (define-key map [f1] 'help)
1587 (define-key map [help] 'help)
1588 (define-key map "?" 'help)
1589 (define-key map "\C-g" 'quit)
1590 (define-key map "\C-]" 'quit)
1591 (define-key map "\e" 'exit-prefix)
1592 (define-key map [escape] 'exit-prefix)
1593 map)
1594 "Keymap that defines the responses to questions in `query-replace'.
1595 The \"bindings\" in this map are not commands; they are answers.
1596 The valid answers include `act', `skip', `act-and-show',
1597 `exit', `act-and-exit', `edit', `edit-replacement', `delete-and-edit',
1598 `recenter', `automatic', `backup', `exit-prefix', `quit', and `help'.")
1600 (defvar multi-query-replace-map
1601 (let ((map (make-sparse-keymap)))
1602 (set-keymap-parent map query-replace-map)
1603 (define-key map "Y" 'automatic-all)
1604 (define-key map "N" 'exit-current)
1605 map)
1606 "Keymap that defines additional bindings for multi-buffer replacements.
1607 It extends its parent map `query-replace-map' with new bindings to
1608 operate on a set of buffers/files. The difference with its parent map
1609 is the additional answers `automatic-all' to replace all remaining
1610 matches in all remaining buffers with no more questions, and
1611 `exit-current' to skip remaining matches in the current buffer
1612 and to continue with the next buffer in the sequence.")
1614 (defun replace-match-string-symbols (n)
1615 "Process a list (and any sub-lists), expanding certain symbols.
1616 Symbol Expands To
1617 N (match-string N) (where N is a string of digits)
1618 #N (string-to-number (match-string N))
1619 & (match-string 0)
1620 #& (string-to-number (match-string 0))
1621 # replace-count
1623 Note that these symbols must be preceded by a backslash in order to
1624 type them using Lisp syntax."
1625 (while (consp n)
1626 (cond
1627 ((consp (car n))
1628 (replace-match-string-symbols (car n))) ;Process sub-list
1629 ((symbolp (car n))
1630 (let ((name (symbol-name (car n))))
1631 (cond
1632 ((string-match "^[0-9]+$" name)
1633 (setcar n (list 'match-string (string-to-number name))))
1634 ((string-match "^#[0-9]+$" name)
1635 (setcar n (list 'string-to-number
1636 (list 'match-string
1637 (string-to-number (substring name 1))))))
1638 ((string= "&" name)
1639 (setcar n '(match-string 0)))
1640 ((string= "#&" name)
1641 (setcar n '(string-to-number (match-string 0))))
1642 ((string= "#" name)
1643 (setcar n 'replace-count))))))
1644 (setq n (cdr n))))
1646 (defun replace-eval-replacement (expression count)
1647 (let* ((replace-count count)
1648 (replacement (eval expression)))
1649 (if (stringp replacement)
1650 replacement
1651 (prin1-to-string replacement t))))
1653 (defun replace-quote (replacement)
1654 "Quote a replacement string.
1655 This just doubles all backslashes in REPLACEMENT and
1656 returns the resulting string. If REPLACEMENT is not
1657 a string, it is first passed through `prin1-to-string'
1658 with the `noescape' argument set.
1660 `match-data' is preserved across the call."
1661 (save-match-data
1662 (replace-regexp-in-string "\\\\" "\\\\"
1663 (if (stringp replacement)
1664 replacement
1665 (prin1-to-string replacement t))
1666 t t)))
1668 (defun replace-loop-through-replacements (data count)
1669 ;; DATA is a vector containing the following values:
1670 ;; 0 next-rotate-count
1671 ;; 1 repeat-count
1672 ;; 2 next-replacement
1673 ;; 3 replacements
1674 (if (= (aref data 0) count)
1675 (progn
1676 (aset data 0 (+ count (aref data 1)))
1677 (let ((next (cdr (aref data 2))))
1678 (aset data 2 (if (consp next) next (aref data 3))))))
1679 (car (aref data 2)))
1681 (defun replace-match-data (integers reuse &optional new)
1682 "Like `match-data', but markers in REUSE get invalidated.
1683 If NEW is non-nil, it is set and returned instead of fresh data,
1684 but coerced to the correct value of INTEGERS."
1685 (or (and new
1686 (progn
1687 (set-match-data new)
1688 (and (eq new reuse)
1689 (eq (null integers) (markerp (car reuse)))
1690 new)))
1691 (match-data integers reuse t)))
1693 (defun replace-match-maybe-edit (newtext fixedcase literal noedit match-data)
1694 "Make a replacement with `replace-match', editing `\\?'.
1695 NEWTEXT, FIXEDCASE, LITERAL are just passed on. If NOEDIT is true, no
1696 check for `\\?' is made to save time. MATCH-DATA is used for the
1697 replacement. In case editing is done, it is changed to use markers.
1699 The return value is non-nil if there has been no `\\?' or NOEDIT was
1700 passed in. If LITERAL is set, no checking is done, anyway."
1701 (unless (or literal noedit)
1702 (setq noedit t)
1703 (while (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\(\\\\\\?\\)"
1704 newtext)
1705 (setq newtext
1706 (read-string "Edit replacement string: "
1707 (prog1
1708 (cons
1709 (replace-match "" t t newtext 3)
1710 (1+ (match-beginning 3)))
1711 (setq match-data
1712 (replace-match-data
1713 nil match-data match-data))))
1714 noedit nil)))
1715 (set-match-data match-data)
1716 (replace-match newtext fixedcase literal)
1717 noedit)
1719 (defvar replace-search-function 'search-forward
1720 "Function to use when searching for strings to replace.
1721 It is used by `query-replace' and `replace-string', and is called
1722 with three arguments, as if it were `search-forward'.")
1724 (defvar replace-re-search-function 're-search-forward
1725 "Function to use when searching for regexps to replace.
1726 It is used by `query-replace-regexp', `replace-regexp',
1727 `query-replace-regexp-eval', and `map-query-replace-regexp'.
1728 It is called with three arguments, as if it were
1729 `re-search-forward'.")
1731 (defun perform-replace (from-string replacements
1732 query-flag regexp-flag delimited-flag
1733 &optional repeat-count map start end)
1734 "Subroutine of `query-replace'. Its complexity handles interactive queries.
1735 Don't use this in your own program unless you want to query and set the mark
1736 just as `query-replace' does. Instead, write a simple loop like this:
1738 (while (re-search-forward \"foo[ \\t]+bar\" nil t)
1739 (replace-match \"foobar\" nil nil))
1741 which will run faster and probably do exactly what you want. Please
1742 see the documentation of `replace-match' to find out how to simulate
1743 `case-replace'.
1745 This function returns nil if and only if there were no matches to
1746 make, or the user didn't cancel the call."
1747 (or map (setq map query-replace-map))
1748 (and query-flag minibuffer-auto-raise
1749 (raise-frame (window-frame (minibuffer-window))))
1750 (let* ((case-fold-search
1751 (if (and case-fold-search search-upper-case)
1752 (isearch-no-upper-case-p from-string regexp-flag)
1753 case-fold-search))
1754 (nocasify (not (and case-replace case-fold-search)))
1755 (literal (or (not regexp-flag) (eq regexp-flag 'literal)))
1756 (search-function
1757 (if regexp-flag
1758 replace-re-search-function
1759 replace-search-function))
1760 (search-string from-string)
1761 (real-match-data nil) ; The match data for the current match.
1762 (next-replacement nil)
1763 ;; This is non-nil if we know there is nothing for the user
1764 ;; to edit in the replacement.
1765 (noedit nil)
1766 (keep-going t)
1767 (stack nil)
1768 (replace-count 0)
1769 (nonempty-match nil)
1770 (multi-buffer nil)
1771 (recenter-last-op nil) ; Start cycling order with initial position.
1773 ;; If non-nil, it is marker saying where in the buffer to stop.
1774 (limit nil)
1776 ;; Data for the next match. If a cons, it has the same format as
1777 ;; (match-data); otherwise it is t if a match is possible at point.
1778 (match-again t)
1780 (message
1781 (if query-flag
1782 (apply 'propertize
1783 (substitute-command-keys
1784 "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) ")
1785 minibuffer-prompt-properties))))
1787 ;; If region is active, in Transient Mark mode, operate on region.
1788 (when start
1789 (setq limit (copy-marker (max start end)))
1790 (goto-char (min start end))
1791 (deactivate-mark))
1793 ;; If last typed key in previous call of multi-buffer perform-replace
1794 ;; was `automatic-all', don't ask more questions in next files
1795 (when (eq (lookup-key map (vector last-input-event)) 'automatic-all)
1796 (setq query-flag nil multi-buffer t))
1798 ;; REPLACEMENTS is either a string, a list of strings, or a cons cell
1799 ;; containing a function and its first argument. The function is
1800 ;; called to generate each replacement like this:
1801 ;; (funcall (car replacements) (cdr replacements) replace-count)
1802 ;; It must return a string.
1803 (cond
1804 ((stringp replacements)
1805 (setq next-replacement replacements
1806 replacements nil))
1807 ((stringp (car replacements)) ; If it isn't a string, it must be a cons
1808 (or repeat-count (setq repeat-count 1))
1809 (setq replacements (cons 'replace-loop-through-replacements
1810 (vector repeat-count repeat-count
1811 replacements replacements)))))
1813 (if delimited-flag
1814 (setq search-function 're-search-forward
1815 search-string (concat "\\b"
1816 (if regexp-flag from-string
1817 (regexp-quote from-string))
1818 "\\b")))
1819 (when query-replace-lazy-highlight
1820 (setq isearch-lazy-highlight-last-string nil))
1822 (push-mark)
1823 (undo-boundary)
1824 (unwind-protect
1825 ;; Loop finding occurrences that perhaps should be replaced.
1826 (while (and keep-going
1827 (not (or (eobp) (and limit (>= (point) limit))))
1828 ;; Use the next match if it is already known;
1829 ;; otherwise, search for a match after moving forward
1830 ;; one char if progress is required.
1831 (setq real-match-data
1832 (cond ((consp match-again)
1833 (goto-char (nth 1 match-again))
1834 (replace-match-data
1835 t real-match-data match-again))
1836 ;; MATCH-AGAIN non-nil means accept an
1837 ;; adjacent match.
1838 (match-again
1839 (and
1840 (funcall search-function search-string
1841 limit t)
1842 ;; For speed, use only integers and
1843 ;; reuse the list used last time.
1844 (replace-match-data t real-match-data)))
1845 ((and (< (1+ (point)) (point-max))
1846 (or (null limit)
1847 (< (1+ (point)) limit)))
1848 ;; If not accepting adjacent matches,
1849 ;; move one char to the right before
1850 ;; searching again. Undo the motion
1851 ;; if the search fails.
1852 (let ((opoint (point)))
1853 (forward-char 1)
1854 (if (funcall
1855 search-function search-string
1856 limit t)
1857 (replace-match-data
1858 t real-match-data)
1859 (goto-char opoint)
1860 nil))))))
1862 ;; Record whether the match is nonempty, to avoid an infinite loop
1863 ;; repeatedly matching the same empty string.
1864 (setq nonempty-match
1865 (/= (nth 0 real-match-data) (nth 1 real-match-data)))
1867 ;; If the match is empty, record that the next one can't be
1868 ;; adjacent.
1870 ;; Otherwise, if matching a regular expression, do the next
1871 ;; match now, since the replacement for this match may
1872 ;; affect whether the next match is adjacent to this one.
1873 ;; If that match is empty, don't use it.
1874 (setq match-again
1875 (and nonempty-match
1876 (or (not regexp-flag)
1877 (and (looking-at search-string)
1878 (let ((match (match-data)))
1879 (and (/= (nth 0 match) (nth 1 match))
1880 match))))))
1882 ;; Optionally ignore matches that have a read-only property.
1883 (unless (and query-replace-skip-read-only
1884 (text-property-not-all
1885 (nth 0 real-match-data) (nth 1 real-match-data)
1886 'read-only nil))
1888 ;; Calculate the replacement string, if necessary.
1889 (when replacements
1890 (set-match-data real-match-data)
1891 (setq next-replacement
1892 (funcall (car replacements) (cdr replacements)
1893 replace-count)))
1894 (if (not query-flag)
1895 (progn
1896 (unless (or literal noedit)
1897 (replace-highlight
1898 (nth 0 real-match-data) (nth 1 real-match-data)
1899 start end search-string
1900 (or delimited-flag regexp-flag) case-fold-search))
1901 (setq noedit
1902 (replace-match-maybe-edit
1903 next-replacement nocasify literal
1904 noedit real-match-data)
1905 replace-count (1+ replace-count)))
1906 (undo-boundary)
1907 (let (done replaced key def)
1908 ;; Loop reading commands until one of them sets done,
1909 ;; which means it has finished handling this
1910 ;; occurrence. Any command that sets `done' should
1911 ;; leave behind proper match data for the stack.
1912 ;; Commands not setting `done' need to adjust
1913 ;; `real-match-data'.
1914 (while (not done)
1915 (set-match-data real-match-data)
1916 (replace-highlight
1917 (match-beginning 0) (match-end 0)
1918 start end search-string
1919 (or delimited-flag regexp-flag) case-fold-search)
1920 ;; Bind message-log-max so we don't fill up the message log
1921 ;; with a bunch of identical messages.
1922 (let ((message-log-max nil)
1923 (replacement-presentation
1924 (if query-replace-show-replacement
1925 (save-match-data
1926 (set-match-data real-match-data)
1927 (match-substitute-replacement next-replacement
1928 nocasify literal))
1929 next-replacement)))
1930 (message message
1931 (query-replace-descr from-string)
1932 (query-replace-descr replacement-presentation)))
1933 (setq key (read-event))
1934 ;; Necessary in case something happens during read-event
1935 ;; that clobbers the match data.
1936 (set-match-data real-match-data)
1937 (setq key (vector key))
1938 (setq def (lookup-key map key))
1939 ;; Restore the match data while we process the command.
1940 (cond ((eq def 'help)
1941 (with-output-to-temp-buffer "*Help*"
1942 (princ
1943 (concat "Query replacing "
1944 (if delimited-flag "word " "")
1945 (if regexp-flag "regexp " "")
1946 from-string " with "
1947 next-replacement ".\n\n"
1948 (substitute-command-keys
1949 query-replace-help)))
1950 (with-current-buffer standard-output
1951 (help-mode))))
1952 ((eq def 'exit)
1953 (setq keep-going nil)
1954 (setq done t))
1955 ((eq def 'exit-current)
1956 (setq multi-buffer t keep-going nil done t))
1957 ((eq def 'backup)
1958 (if stack
1959 (let ((elt (pop stack)))
1960 (goto-char (nth 0 elt))
1961 (setq replaced (nth 1 elt)
1962 real-match-data
1963 (replace-match-data
1964 t real-match-data
1965 (nth 2 elt))))
1966 (message "No previous match")
1967 (ding 'no-terminate)
1968 (sit-for 1)))
1969 ((eq def 'act)
1970 (or replaced
1971 (setq noedit
1972 (replace-match-maybe-edit
1973 next-replacement nocasify literal
1974 noedit real-match-data)
1975 replace-count (1+ replace-count)))
1976 (setq done t replaced t))
1977 ((eq def 'act-and-exit)
1978 (or replaced
1979 (setq noedit
1980 (replace-match-maybe-edit
1981 next-replacement nocasify literal
1982 noedit real-match-data)
1983 replace-count (1+ replace-count)))
1984 (setq keep-going nil)
1985 (setq done t replaced t))
1986 ((eq def 'act-and-show)
1987 (if (not replaced)
1988 (setq noedit
1989 (replace-match-maybe-edit
1990 next-replacement nocasify literal
1991 noedit real-match-data)
1992 replace-count (1+ replace-count)
1993 real-match-data (replace-match-data
1994 t real-match-data)
1995 replaced t)))
1996 ((or (eq def 'automatic) (eq def 'automatic-all))
1997 (or replaced
1998 (setq noedit
1999 (replace-match-maybe-edit
2000 next-replacement nocasify literal
2001 noedit real-match-data)
2002 replace-count (1+ replace-count)))
2003 (setq done t query-flag nil replaced t)
2004 (if (eq def 'automatic-all) (setq multi-buffer t)))
2005 ((eq def 'skip)
2006 (setq done t))
2007 ((eq def 'recenter)
2008 ;; `this-command' has the value `query-replace',
2009 ;; so we need to bind it to `recenter-top-bottom'
2010 ;; to allow it to detect a sequence of `C-l'.
2011 (let ((this-command 'recenter-top-bottom)
2012 (last-command 'recenter-top-bottom))
2013 (recenter-top-bottom)))
2014 ((eq def 'edit)
2015 (let ((opos (point-marker)))
2016 (setq real-match-data (replace-match-data
2017 nil real-match-data
2018 real-match-data))
2019 (goto-char (match-beginning 0))
2020 (save-excursion
2021 (save-window-excursion
2022 (recursive-edit)))
2023 (goto-char opos)
2024 (set-marker opos nil))
2025 ;; Before we make the replacement,
2026 ;; decide whether the search string
2027 ;; can match again just after this match.
2028 (if (and regexp-flag nonempty-match)
2029 (setq match-again (and (looking-at search-string)
2030 (match-data)))))
2031 ;; Edit replacement.
2032 ((eq def 'edit-replacement)
2033 (setq real-match-data (replace-match-data
2034 nil real-match-data
2035 real-match-data)
2036 next-replacement
2037 (read-string "Edit replacement string: "
2038 next-replacement)
2039 noedit nil)
2040 (if replaced
2041 (set-match-data real-match-data)
2042 (setq noedit
2043 (replace-match-maybe-edit
2044 next-replacement nocasify literal noedit
2045 real-match-data)
2046 replaced t))
2047 (setq done t))
2049 ((eq def 'delete-and-edit)
2050 (replace-match "" t t)
2051 (setq real-match-data (replace-match-data
2052 nil real-match-data))
2053 (replace-dehighlight)
2054 (save-excursion (recursive-edit))
2055 (setq replaced t))
2056 ;; Note: we do not need to treat `exit-prefix'
2057 ;; specially here, since we reread
2058 ;; any unrecognized character.
2060 (setq this-command 'mode-exited)
2061 (setq keep-going nil)
2062 (setq unread-command-events
2063 (append (listify-key-sequence key)
2064 unread-command-events))
2065 (setq done t)))
2066 (when query-replace-lazy-highlight
2067 ;; Force lazy rehighlighting only after replacements.
2068 (if (not (memq def '(skip backup)))
2069 (setq isearch-lazy-highlight-last-string nil)))
2070 (unless (eq def 'recenter)
2071 ;; Reset recenter cycling order to initial position.
2072 (setq recenter-last-op nil)))
2073 ;; Record previous position for ^ when we move on.
2074 ;; Change markers to numbers in the match data
2075 ;; since lots of markers slow down editing.
2076 (push (list (point) replaced
2077 ;;; If the replacement has already happened, all we need is the
2078 ;;; current match start and end. We could get this with a trivial
2079 ;;; match like
2080 ;;; (save-excursion (goto-char (match-beginning 0))
2081 ;;; (search-forward (match-string 0))
2082 ;;; (match-data t))
2083 ;;; if we really wanted to avoid manually constructing match data.
2084 ;;; Adding current-buffer is necessary so that match-data calls can
2085 ;;; return markers which are appropriate for editing.
2086 (if replaced
2087 (list
2088 (match-beginning 0)
2089 (match-end 0)
2090 (current-buffer))
2091 (match-data t)))
2092 stack)))))
2094 (replace-dehighlight))
2095 (or unread-command-events
2096 (message "Replaced %d occurrence%s"
2097 replace-count
2098 (if (= replace-count 1) "" "s")))
2099 (or (and keep-going stack) multi-buffer)))
2101 (defvar isearch-error)
2102 (defvar isearch-forward)
2103 (defvar isearch-case-fold-search)
2104 (defvar isearch-string)
2106 (defvar replace-overlay nil)
2108 (defun replace-highlight (match-beg match-end range-beg range-end
2109 string regexp case-fold)
2110 (if query-replace-highlight
2111 (if replace-overlay
2112 (move-overlay replace-overlay match-beg match-end (current-buffer))
2113 (setq replace-overlay (make-overlay match-beg match-end))
2114 (overlay-put replace-overlay 'priority 1001) ;higher than lazy overlays
2115 (overlay-put replace-overlay 'face 'query-replace)))
2116 (if query-replace-lazy-highlight
2117 (let ((isearch-string string)
2118 (isearch-regexp regexp)
2119 ;; Set isearch-word to nil because word-replace is regexp-based,
2120 ;; so `isearch-search-fun' should not use `word-search-forward'.
2121 (isearch-word nil)
2122 (search-whitespace-regexp nil)
2123 (isearch-case-fold-search case-fold)
2124 (isearch-forward t)
2125 (isearch-error nil))
2126 (isearch-lazy-highlight-new-loop range-beg range-end))))
2128 (defun replace-dehighlight ()
2129 (when replace-overlay
2130 (delete-overlay replace-overlay))
2131 (when query-replace-lazy-highlight
2132 (lazy-highlight-cleanup lazy-highlight-cleanup)
2133 (setq isearch-lazy-highlight-last-string nil)))
2135 ;;; replace.el ends here