Fix various uses of display-buffer and pop-to-buffer
[bpt/emacs.git] / lisp / replace.el
1 ;;; replace.el --- replace commands for Emacs
2
3 ;; Copyright (C) 1985-1987, 1992, 1994, 1996-1997, 2000-2011
4 ;; Free Software Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Package: emacs
8
9 ;; This file is part of GNU Emacs.
10
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.
15
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.
20
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/>.
23
24 ;;; Commentary:
25
26 ;; This package supplies the string and regular-expression replace functions
27 ;; documented in the Emacs user's manual.
28
29 ;;; Code:
30
31 (defcustom case-replace t
32 "Non-nil means `query-replace' should preserve case in replacements."
33 :type 'boolean
34 :group 'matching)
35
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'.")
40
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.")
45
46 (defvar query-replace-interactive nil
47 "Non-nil means `query-replace' uses the last search string.
48 That becomes the \"string to replace\".")
49
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")
58
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")
67
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")
73
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")
79
80 (defcustom query-replace-highlight t
81 "Non-nil means to highlight matches during query replacement."
82 :type 'boolean
83 :group 'matching)
84
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")
94
95 (defface query-replace
96 '((t (:inherit isearch)))
97 "Face for highlighting query replacement matches."
98 :group 'matching
99 :version "22.1")
100
101 (defvar replace-count 0
102 "Number of replacements done so far.
103 See `replace-regexp' and `query-replace-regexp-eval'.")
104
105 (defun query-replace-descr (string)
106 (mapconcat 'isearch-text-char-description string ""))
107
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))))
145
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))
185
186
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))
200
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)))
208
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.
213
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.
216
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.
220
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.)
228
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.
232
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))
250
251 (define-key esc-map "%" 'query-replace)
252
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.
257
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.
260
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.
264
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.)
272
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.
276
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.
282
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).
291
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.
294
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))
315
316 (define-key esc-map [?\C-%] 'query-replace-regexp)
317
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.
320
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.
324
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.
327
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).
332
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'.
338
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.
341
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.
345
346 Preserves case in each replacement if `case-replace' and `case-fold-search'
347 are non-nil and REGEXP has no uppercase letters.
348
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))
375
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")
380
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.
387
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.
390
391 Non-interactively, TO-STRINGS may be a list of replacement strings.
392
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.
395
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)))
432
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.)
439
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.
442
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.
446
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.
450
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))
472
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.
477
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.
480
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.
484
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.
490
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.
497
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.
503
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.
507
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.
510
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))
530
531 \f
532 (defvar regexp-history nil
533 "History list for some commands that read regular expressions.
534
535 Maximum length of the history list is determined by the value
536 of `history-length', which see.")
537
538 (defvar occur-collect-regexp-history '("\\1")
539 "History of regexp for occur's collect operation")
540
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)))))
573
574
575 (defalias 'delete-non-matching-lines 'keep-lines)
576 (defalias 'delete-matching-lines 'flush-lines)
577 (defalias 'count-matches 'how-many)
578
579
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))
585
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.
591
592 If REGEXP contains upper case characters (excluding those preceded by `\\')
593 and `search-upper-case' is non-nil, the matching is case-sensitive.
594
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.)
599
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.
605
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."
609
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))))
651
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)
659
660
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.
667
668 If REGEXP contains upper case characters (excluding those preceded by `\\')
669 and `search-upper-case' is non-nil, the matching is case-sensitive.
670
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.
674
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.
680
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."
684
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)
712
713
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.
719
720 If REGEXP contains upper case characters (excluding those preceded by `\\')
721 and `search-upper-case' is non-nil, the matching is case-sensitive.
722
723 Second and third arg RSTART and REND specify the region to operate on.
724
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.
728
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."
732
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)))
762
763 \f
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 [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")))
805 map)
806 "Menu keymap for `occur-mode'.")
807
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))
823 map)
824 "Keymap for `occur-mode'.")
825
826 (defvar occur-revert-arguments nil
827 "Arguments to pass to `occur-1' to revert an Occur mode buffer.
828 See `occur-revert-function'.")
829
830 (defcustom occur-mode-hook '(turn-on-font-lock)
831 "Hook run when entering Occur mode."
832 :type 'hook
833 :group 'matching)
834
835 (defcustom occur-hook nil
836 "Hook run by Occur when there are any matches."
837 :type 'hook
838 :group 'matching)
839
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."
844 :type 'hook
845 :group 'matching)
846
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.
853
854 \\{occur-mode-map}"
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))
859
860 \f
861 ;;; Occur Edit mode
862
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))
871 map)
872 "Keymap for `occur-edit-mode'.")
873
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.
878
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))
882
883 (defun occur-after-change-function (beg end length)
884 (save-excursion
885 (goto-char beg)
886 (let* ((m (get-text-property (line-beginning-position) 'occur-target))
887 (buf (marker-buffer m))
888 (col (current-column)))
889 (when (= length 0)
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.
894 (save-excursion
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
903 (forward-line 0)
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
908 (goto-char m)
909 (recenter line)
910 (if readonly
911 (message "Buffer `%s' is read only." buf)
912 (delete-region (line-beginning-position) (line-end-position))
913 (insert text))
914 (move-to-column col))))))
915
916 \f
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)))))
920
921 (defun occur-mode-find-occurrence ()
922 (let ((pos (get-text-property (point) 'occur-target)))
923 (unless pos
924 (error "No occurrence on this line"))
925 (unless (buffer-live-p (marker-buffer pos))
926 (error "Buffer for this occurrence was killed"))
927 pos))
928
929 (defalias 'occur-mode-mouse-goto 'occur-mode-goto-occurrence)
930 (defun occur-mode-goto-occurrence (&optional event)
931 "Go to the occurrence on the current line."
932 (interactive (list last-nonmenu-event))
933 (let ((pos
934 (if (null 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)))
940 (save-excursion
941 (goto-char (posn-point (event-end event)))
942 (occur-mode-find-occurrence))))))
943 (pop-to-buffer (marker-buffer pos) t)
944 (goto-char pos)
945 (run-hooks 'occur-mode-find-occurrence-hook)))
946
947 (defun occur-mode-goto-occurrence-other-window ()
948 "Go to the occurrence the current line describes, in another window."
949 (interactive)
950 (let ((pos (occur-mode-find-occurrence)))
951 (switch-to-buffer-other-window (marker-buffer pos))
952 (goto-char pos)
953 (run-hooks 'occur-mode-find-occurrence-hook)))
954
955 (defun occur-mode-display-occurrence ()
956 "Display in another window the occurrence the current line describes."
957 (interactive)
958 (let ((pos (occur-mode-find-occurrence))
959 window)
960 (setq window (display-buffer (marker-buffer pos) t))
961 ;; This is the way to set point in the proper window.
962 (save-selected-window
963 (select-window window)
964 (goto-char pos)
965 (run-hooks 'occur-mode-find-occurrence-hook))))
966
967 (defun occur-find-match (n search message)
968 (if (not n) (setq n 1))
969 (let ((r))
970 (while (> n 0)
971 (setq r (funcall search (point) 'occur-match))
972 (and r
973 (get-text-property r 'occur-match)
974 (setq r (funcall search r 'occur-match)))
975 (if r
976 (goto-char r)
977 (error message))
978 (setq n (1- n)))))
979
980 (defun occur-next (&optional n)
981 "Move to the Nth (default 1) next match in an Occur mode buffer."
982 (interactive "p")
983 (occur-find-match n #'next-single-property-change "No more matches"))
984
985 (defun occur-prev (&optional n)
986 "Move to the Nth (default 1) previous match in an Occur mode buffer."
987 (interactive "p")
988 (occur-find-match n #'previous-single-property-change "No earlier matches"))
989
990 (defun occur-next-error (&optional argp reset)
991 "Move to the Nth (default 1) next match in an Occur mode buffer.
992 Compatibility function for \\[next-error] invocations."
993 (interactive "p")
994 ;; we need to run occur-find-match from within the Occur buffer
995 (with-current-buffer
996 ;; Choose the buffer and make it current.
997 (if (next-error-buffer-p (current-buffer))
998 (current-buffer)
999 (next-error-find-buffer nil nil
1000 (lambda ()
1001 (eq major-mode 'occur-mode))))
1002
1003 (goto-char (cond (reset (point-min))
1004 ((< argp 0) (line-beginning-position))
1005 ((> argp 0) (line-end-position))
1006 ((point))))
1007 (occur-find-match
1008 (abs argp)
1009 (if (> 0 argp)
1010 #'previous-single-property-change
1011 #'next-single-property-change)
1012 "No more matches")
1013 ;; In case the *Occur* buffer is visible in a nonselected window.
1014 (let ((win (get-buffer-window (current-buffer) t)))
1015 (if win (set-window-point win (point))))
1016 (occur-mode-goto-occurrence)))
1017 \f
1018 (defface match
1019 '((((class color) (min-colors 88) (background light))
1020 :background "yellow1")
1021 (((class color) (min-colors 88) (background dark))
1022 :background "RoyalBlue3")
1023 (((class color) (min-colors 8) (background light))
1024 :background "yellow" :foreground "black")
1025 (((class color) (min-colors 8) (background dark))
1026 :background "blue" :foreground "white")
1027 (((type tty) (class mono))
1028 :inverse-video t)
1029 (t :background "gray"))
1030 "Face used to highlight matches permanently."
1031 :group 'matching
1032 :version "22.1")
1033
1034 (defcustom list-matching-lines-default-context-lines 0
1035 "Default number of context lines included around `list-matching-lines' matches.
1036 A negative number means to include that many lines before the match.
1037 A positive number means to include that many lines both before and after."
1038 :type 'integer
1039 :group 'matching)
1040
1041 (defalias 'list-matching-lines 'occur)
1042
1043 (defcustom list-matching-lines-face 'match
1044 "Face used by \\[list-matching-lines] to show the text that matches.
1045 If the value is nil, don't highlight the matching portions specially."
1046 :type 'face
1047 :group 'matching)
1048
1049 (defcustom list-matching-lines-buffer-name-face 'underline
1050 "Face used by \\[list-matching-lines] to show the names of buffers.
1051 If the value is nil, don't highlight the buffer names specially."
1052 :type 'face
1053 :group 'matching)
1054
1055 (defcustom occur-excluded-properties
1056 '(read-only invisible intangible field mouse-face help-echo local-map keymap
1057 yank-handler follow-link)
1058 "Text properties to discard when copying lines to the *Occur* buffer.
1059 The value should be a list of text properties to discard or t,
1060 which means to discard all text properties."
1061 :type '(choice (const :tag "All" t) (repeat symbol))
1062 :group 'matching
1063 :version "22.1")
1064
1065 (defun occur-read-primary-args ()
1066 (let* ((perform-collect (consp current-prefix-arg))
1067 (regexp (read-regexp (if perform-collect
1068 "Collect strings matching regexp"
1069 "List lines matching regexp")
1070 (car regexp-history))))
1071 (list regexp
1072 (if perform-collect
1073 ;; Perform collect operation
1074 (if (zerop (regexp-opt-depth regexp))
1075 ;; No subexpression so collect the entire match.
1076 "\\&"
1077 ;; Get the regexp for collection pattern.
1078 (let ((default (car occur-collect-regexp-history)))
1079 (read-string
1080 (format "Regexp to collect (default %s): " default)
1081 nil 'occur-collect-regexp-history default)))
1082 ;; Otherwise normal occur takes numerical prefix argument.
1083 (when current-prefix-arg
1084 (prefix-numeric-value current-prefix-arg))))))
1085
1086 (defun occur-rename-buffer (&optional unique-p interactive-p)
1087 "Rename the current *Occur* buffer to *Occur: original-buffer-name*.
1088 Here `original-buffer-name' is the buffer name where Occur was originally run.
1089 When given the prefix argument, or called non-interactively, the renaming
1090 will not clobber the existing buffer(s) of that name, but use
1091 `generate-new-buffer-name' instead. You can add this to `occur-hook'
1092 if you always want a separate *Occur* buffer for each buffer where you
1093 invoke `occur'."
1094 (interactive "P\np")
1095 (with-current-buffer
1096 (if (eq major-mode 'occur-mode) (current-buffer) (get-buffer "*Occur*"))
1097 (rename-buffer (concat "*Occur: "
1098 (mapconcat #'buffer-name
1099 (car (cddr occur-revert-arguments)) "/")
1100 "*")
1101 (or unique-p (not interactive-p)))))
1102
1103 (defun occur (regexp &optional nlines)
1104 "Show all lines in the current buffer containing a match for REGEXP.
1105 If a match spreads across multiple lines, all those lines are shown.
1106
1107 Each line is displayed with NLINES lines before and after, or -NLINES
1108 before if NLINES is negative.
1109 NLINES defaults to `list-matching-lines-default-context-lines'.
1110 Interactively it is the prefix arg.
1111
1112 The lines are shown in a buffer named `*Occur*'.
1113 It serves as a menu to find any of the occurrences in this buffer.
1114 \\<occur-mode-map>\\[describe-mode] in that buffer will explain how.
1115
1116 If REGEXP contains upper case characters (excluding those preceded by `\\')
1117 and `search-upper-case' is non-nil, the matching is case-sensitive.
1118
1119 When NLINES is a string or when the function is called
1120 interactively with prefix argument without a number (`C-u' alone
1121 as prefix) the matching strings are collected into the `*Occur*'
1122 buffer by using NLINES as a replacement regexp. NLINES may
1123 contain \\& and \\N which convention follows `replace-match'.
1124 For example, providing \"defun\\s +\\(\\S +\\)\" for REGEXP and
1125 \"\\1\" for NLINES collects all the function names in a lisp
1126 program. When there is no parenthesized subexpressions in REGEXP
1127 the entire match is collected. In any case the searched buffers
1128 are not modified."
1129 (interactive (occur-read-primary-args))
1130 (occur-1 regexp nlines (list (current-buffer))))
1131
1132 (defvar ido-ignore-item-temp-list)
1133
1134 (defun multi-occur (bufs regexp &optional nlines)
1135 "Show all lines in buffers BUFS containing a match for REGEXP.
1136 This function acts on multiple buffers; otherwise, it is exactly like
1137 `occur'. When you invoke this command interactively, you must specify
1138 the buffer names that you want, one by one.
1139 See also `multi-occur-in-matching-buffers'."
1140 (interactive
1141 (cons
1142 (let* ((bufs (list (read-buffer "First buffer to search: "
1143 (current-buffer) t)))
1144 (buf nil)
1145 (ido-ignore-item-temp-list bufs))
1146 (while (not (string-equal
1147 (setq buf (read-buffer
1148 (if (eq read-buffer-function 'ido-read-buffer)
1149 "Next buffer to search (C-j to end): "
1150 "Next buffer to search (RET to end): ")
1151 nil t))
1152 ""))
1153 (add-to-list 'bufs buf)
1154 (setq ido-ignore-item-temp-list bufs))
1155 (nreverse (mapcar #'get-buffer bufs)))
1156 (occur-read-primary-args)))
1157 (occur-1 regexp nlines bufs))
1158
1159 (defun multi-occur-in-matching-buffers (bufregexp regexp &optional allbufs)
1160 "Show all lines matching REGEXP in buffers specified by BUFREGEXP.
1161 Normally BUFREGEXP matches against each buffer's visited file name,
1162 but if you specify a prefix argument, it matches against the buffer name.
1163 See also `multi-occur'."
1164 (interactive
1165 (cons
1166 (let* ((default (car regexp-history))
1167 (input
1168 (read-from-minibuffer
1169 (if current-prefix-arg
1170 "List lines in buffers whose names match regexp: "
1171 "List lines in buffers whose filenames match regexp: ")
1172 nil
1173 nil
1174 nil
1175 'regexp-history)))
1176 (if (equal input "")
1177 default
1178 input))
1179 (occur-read-primary-args)))
1180 (when bufregexp
1181 (occur-1 regexp nil
1182 (delq nil
1183 (mapcar (lambda (buf)
1184 (when (if allbufs
1185 (string-match bufregexp
1186 (buffer-name buf))
1187 (and (buffer-file-name buf)
1188 (string-match bufregexp
1189 (buffer-file-name buf))))
1190 buf))
1191 (buffer-list))))))
1192
1193 (defun occur-1 (regexp nlines bufs &optional buf-name)
1194 (unless (and regexp (not (equal regexp "")))
1195 (error "Occur doesn't work with the empty regexp"))
1196 (unless buf-name
1197 (setq buf-name "*Occur*"))
1198 (let (occur-buf
1199 (active-bufs (delq nil (mapcar #'(lambda (buf)
1200 (when (buffer-live-p buf) buf))
1201 bufs))))
1202 ;; Handle the case where one of the buffers we're searching is the
1203 ;; output buffer. Just rename it.
1204 (when (member buf-name (mapcar 'buffer-name active-bufs))
1205 (with-current-buffer (get-buffer buf-name)
1206 (rename-uniquely)))
1207
1208 ;; Now find or create the output buffer.
1209 ;; If we just renamed that buffer, we will make a new one here.
1210 (setq occur-buf (get-buffer-create buf-name))
1211
1212 (with-current-buffer occur-buf
1213 (if (stringp nlines)
1214 (fundamental-mode) ;; This is for collect opeartion.
1215 (occur-mode))
1216 (let ((inhibit-read-only t)
1217 ;; Don't generate undo entries for creation of the initial contents.
1218 (buffer-undo-list t))
1219 (erase-buffer)
1220 (let ((count
1221 (if (stringp nlines)
1222 ;; Treat nlines as a regexp to collect.
1223 (let ((bufs active-bufs)
1224 (count 0))
1225 (while bufs
1226 (with-current-buffer (car bufs)
1227 (save-excursion
1228 (goto-char (point-min))
1229 (while (re-search-forward regexp nil t)
1230 ;; Insert the replacement regexp.
1231 (let ((str (match-substitute-replacement nlines)))
1232 (if str
1233 (with-current-buffer occur-buf
1234 (insert str)
1235 (setq count (1+ count))
1236 (or (zerop (current-column))
1237 (insert "\n"))))))))
1238 (setq bufs (cdr bufs)))
1239 count)
1240 ;; Perform normal occur.
1241 (occur-engine
1242 regexp active-bufs occur-buf
1243 (or nlines list-matching-lines-default-context-lines)
1244 (if (and case-fold-search search-upper-case)
1245 (isearch-no-upper-case-p regexp t)
1246 case-fold-search)
1247 list-matching-lines-buffer-name-face
1248 nil list-matching-lines-face
1249 (not (eq occur-excluded-properties t))))))
1250 (let* ((bufcount (length active-bufs))
1251 (diff (- (length bufs) bufcount)))
1252 (message "Searched %d buffer%s%s; %s match%s%s"
1253 bufcount (if (= bufcount 1) "" "s")
1254 (if (zerop diff) "" (format " (%d killed)" diff))
1255 (if (zerop count) "no" (format "%d" count))
1256 (if (= count 1) "" "es")
1257 ;; Don't display regexp if with remaining text
1258 ;; it is longer than window-width.
1259 (if (> (+ (length regexp) 42) (window-width))
1260 "" (format " for `%s'" (query-replace-descr regexp)))))
1261 (setq occur-revert-arguments (list regexp nlines bufs))
1262 (if (= count 0)
1263 (kill-buffer occur-buf)
1264 (display-buffer occur-buf)
1265 (setq next-error-last-buffer occur-buf)
1266 (setq buffer-read-only t)
1267 (set-buffer-modified-p nil)
1268 (run-hooks 'occur-hook)))))))
1269
1270 (defun occur-engine (regexp buffers out-buf nlines case-fold
1271 title-face prefix-face match-face keep-props)
1272 (with-current-buffer out-buf
1273 (let ((globalcount 0)
1274 (coding nil)
1275 (case-fold-search case-fold))
1276 ;; Map over all the buffers
1277 (dolist (buf buffers)
1278 (when (buffer-live-p buf)
1279 (let ((matches 0) ;; count of matched lines
1280 (lines 1) ;; line count
1281 (prev-after-lines nil) ;; context lines of prev match
1282 (prev-lines nil) ;; line number of prev match endpt
1283 (matchbeg 0)
1284 (origpt nil)
1285 (begpt nil)
1286 (endpt nil)
1287 (marker nil)
1288 (curstring "")
1289 (ret nil)
1290 (inhibit-field-text-motion t)
1291 (headerpt (with-current-buffer out-buf (point))))
1292 (with-current-buffer buf
1293 (or coding
1294 ;; Set CODING only if the current buffer locally
1295 ;; binds buffer-file-coding-system.
1296 (not (local-variable-p 'buffer-file-coding-system))
1297 (setq coding buffer-file-coding-system))
1298 (save-excursion
1299 (goto-char (point-min)) ;; begin searching in the buffer
1300 (while (not (eobp))
1301 (setq origpt (point))
1302 (when (setq endpt (re-search-forward regexp nil t))
1303 (setq matches (1+ matches)) ;; increment match count
1304 (setq matchbeg (match-beginning 0))
1305 ;; Get beginning of first match line and end of the last.
1306 (save-excursion
1307 (goto-char matchbeg)
1308 (setq begpt (line-beginning-position))
1309 (goto-char endpt)
1310 (setq endpt (line-end-position)))
1311 ;; Sum line numbers up to the first match line.
1312 (setq lines (+ lines (count-lines origpt begpt)))
1313 (setq marker (make-marker))
1314 (set-marker marker matchbeg)
1315 (setq curstring (occur-engine-line begpt endpt keep-props))
1316 ;; Highlight the matches
1317 (let ((len (length curstring))
1318 (start 0))
1319 (while (and (< start len)
1320 (string-match regexp curstring start))
1321 (add-text-properties
1322 (match-beginning 0) (match-end 0)
1323 (append
1324 `(occur-match t)
1325 (when match-face
1326 ;; Use `face' rather than `font-lock-face' here
1327 ;; so as to override faces copied from the buffer.
1328 `(face ,match-face)))
1329 curstring)
1330 (setq start (match-end 0))))
1331 ;; Generate the string to insert for this match
1332 (let* ((match-prefix
1333 ;; Using 7 digits aligns tabs properly.
1334 (apply #'propertize (format "%7d:" lines)
1335 (append
1336 (when prefix-face
1337 `(font-lock-face prefix-face))
1338 `(occur-prefix t mouse-face (highlight)
1339 occur-target ,marker follow-link t
1340 read-only t
1341 help-echo "mouse-2: go to this occurrence"))))
1342 (match-str
1343 ;; We don't put `mouse-face' on the newline,
1344 ;; because that loses. And don't put it
1345 ;; on context lines to reduce flicker.
1346 (propertize curstring 'mouse-face (list 'highlight)
1347 'occur-target marker
1348 'follow-link t
1349 'help-echo
1350 "mouse-2: go to this occurrence"))
1351 (out-line
1352 (concat
1353 match-prefix
1354 ;; Add non-numeric prefix to all non-first lines
1355 ;; of multi-line matches.
1356 (replace-regexp-in-string
1357 "\n"
1358 "\n :"
1359 match-str)
1360 ;; Add marker at eol, but no mouse props.
1361 (propertize "\n" 'occur-target marker)))
1362 (data
1363 (if (= nlines 0)
1364 ;; The simple display style
1365 out-line
1366 ;; The complex multi-line display style.
1367 (setq ret (occur-context-lines
1368 out-line nlines keep-props begpt endpt
1369 lines prev-lines prev-after-lines))
1370 ;; Set first elem of the returned list to `data',
1371 ;; and the second elem to `prev-after-lines'.
1372 (setq prev-after-lines (nth 1 ret))
1373 (nth 0 ret))))
1374 ;; Actually insert the match display data
1375 (with-current-buffer out-buf
1376 (insert data)))
1377 (goto-char endpt))
1378 (if endpt
1379 (progn
1380 ;; Sum line numbers between first and last match lines.
1381 (setq lines (+ lines (count-lines begpt endpt)
1382 ;; Add 1 for empty last match line since
1383 ;; count-lines returns 1 line less.
1384 (if (and (bolp) (eolp)) 1 0)))
1385 ;; On to the next match...
1386 (forward-line 1))
1387 (goto-char (point-max)))
1388 (setq prev-lines (1- lines)))
1389 ;; Flush remaining context after-lines.
1390 (when prev-after-lines
1391 (with-current-buffer out-buf
1392 (insert (apply #'concat (occur-engine-add-prefix
1393 prev-after-lines)))))))
1394 (when (not (zerop matches)) ;; is the count zero?
1395 (setq globalcount (+ globalcount matches))
1396 (with-current-buffer out-buf
1397 (goto-char headerpt)
1398 (let ((beg (point))
1399 end)
1400 (insert (propertize
1401 (format "%d match%s%s in buffer: %s\n"
1402 matches (if (= matches 1) "" "es")
1403 ;; Don't display regexp for multi-buffer.
1404 (if (> (length buffers) 1)
1405 "" (format " for \"%s\""
1406 (query-replace-descr regexp)))
1407 (buffer-name buf))
1408 'read-only t))
1409 (setq end (point))
1410 (add-text-properties beg end
1411 (append
1412 (when title-face
1413 `(font-lock-face ,title-face))
1414 `(occur-title ,buf))))
1415 (goto-char (point-min)))))))
1416 ;; Display total match count and regexp for multi-buffer.
1417 (when (and (not (zerop globalcount)) (> (length buffers) 1))
1418 (goto-char (point-min))
1419 (let ((beg (point))
1420 end)
1421 (insert (format "%d match%s total for \"%s\":\n"
1422 globalcount (if (= globalcount 1) "" "es")
1423 (query-replace-descr regexp)))
1424 (setq end (point))
1425 (add-text-properties beg end (when title-face
1426 `(font-lock-face ,title-face))))
1427 (goto-char (point-min)))
1428 (if coding
1429 ;; CODING is buffer-file-coding-system of the first buffer
1430 ;; that locally binds it. Let's use it also for the output
1431 ;; buffer.
1432 (set-buffer-file-coding-system coding))
1433 ;; Return the number of matches
1434 globalcount)))
1435
1436 (defun occur-engine-line (beg end &optional keep-props)
1437 (if (and keep-props (if (boundp 'jit-lock-mode) jit-lock-mode)
1438 (text-property-not-all beg end 'fontified t))
1439 (if (fboundp 'jit-lock-fontify-now)
1440 (jit-lock-fontify-now beg end)))
1441 (if (and keep-props (not (eq occur-excluded-properties t)))
1442 (let ((str (buffer-substring beg end)))
1443 (remove-list-of-text-properties
1444 0 (length str) occur-excluded-properties str)
1445 str)
1446 (buffer-substring-no-properties beg end)))
1447
1448 (defun occur-engine-add-prefix (lines)
1449 (mapcar
1450 #'(lambda (line)
1451 (concat " :" line "\n"))
1452 lines))
1453
1454 (defun occur-accumulate-lines (count &optional keep-props pt)
1455 (save-excursion
1456 (when pt
1457 (goto-char pt))
1458 (let ((forwardp (> count 0))
1459 result beg end moved)
1460 (while (not (or (zerop count)
1461 (if forwardp
1462 (eobp)
1463 (and (bobp) (not moved)))))
1464 (setq count (+ count (if forwardp -1 1)))
1465 (setq beg (line-beginning-position)
1466 end (line-end-position))
1467 (push (occur-engine-line beg end keep-props) result)
1468 (setq moved (= 0 (forward-line (if forwardp 1 -1)))))
1469 (nreverse result))))
1470
1471 ;; Generate context display for occur.
1472 ;; OUT-LINE is the line where the match is.
1473 ;; NLINES and KEEP-PROPS are args to occur-engine.
1474 ;; LINES is line count of the current match,
1475 ;; PREV-LINES is line count of the previous match,
1476 ;; PREV-AFTER-LINES is a list of after-context lines of the previous match.
1477 ;; Generate a list of lines, add prefixes to all but OUT-LINE,
1478 ;; then concatenate them all together.
1479 (defun occur-context-lines (out-line nlines keep-props begpt endpt
1480 lines prev-lines prev-after-lines)
1481 ;; Find after- and before-context lines of the current match.
1482 (let ((before-lines
1483 (nreverse (cdr (occur-accumulate-lines
1484 (- (1+ (abs nlines))) keep-props begpt))))
1485 (after-lines
1486 (cdr (occur-accumulate-lines
1487 (1+ nlines) keep-props endpt)))
1488 separator)
1489
1490 ;; Combine after-lines of the previous match
1491 ;; with before-lines of the current match.
1492
1493 (when prev-after-lines
1494 ;; Don't overlap prev after-lines with current before-lines.
1495 (if (>= (+ prev-lines (length prev-after-lines))
1496 (- lines (length before-lines)))
1497 (setq prev-after-lines
1498 (butlast prev-after-lines
1499 (- (length prev-after-lines)
1500 (- lines prev-lines (length before-lines) 1))))
1501 ;; Separate non-overlapping context lines with a dashed line.
1502 (setq separator "-------\n")))
1503
1504 (when prev-lines
1505 ;; Don't overlap current before-lines with previous match line.
1506 (if (<= (- lines (length before-lines))
1507 prev-lines)
1508 (setq before-lines
1509 (nthcdr (- (length before-lines)
1510 (- lines prev-lines 1))
1511 before-lines))
1512 ;; Separate non-overlapping before-context lines.
1513 (unless (> nlines 0)
1514 (setq separator "-------\n"))))
1515
1516 (list
1517 ;; Return a list where the first element is the output line.
1518 (apply #'concat
1519 (append
1520 (and prev-after-lines
1521 (occur-engine-add-prefix prev-after-lines))
1522 (and separator (list separator))
1523 (occur-engine-add-prefix before-lines)
1524 (list out-line)))
1525 ;; And the second element is the list of context after-lines.
1526 (if (> nlines 0) after-lines))))
1527
1528 \f
1529 ;; It would be nice to use \\[...], but there is no reasonable way
1530 ;; to make that display both SPC and Y.
1531 (defconst query-replace-help
1532 "Type Space or `y' to replace one match, Delete or `n' to skip to next,
1533 RET or `q' to exit, Period to replace one match and exit,
1534 Comma to replace but not move point immediately,
1535 C-r to enter recursive edit (\\[exit-recursive-edit] to get out again),
1536 C-w to delete match and recursive edit,
1537 C-l to clear the screen, redisplay, and offer same replacement again,
1538 ! to replace all remaining matches with no more questions,
1539 ^ to move point back to previous match,
1540 E to edit the replacement string"
1541 "Help message while in `query-replace'.")
1542
1543 (defvar query-replace-map
1544 (let ((map (make-sparse-keymap)))
1545 (define-key map " " 'act)
1546 (define-key map "\d" 'skip)
1547 (define-key map [delete] 'skip)
1548 (define-key map [backspace] 'skip)
1549 (define-key map "y" 'act)
1550 (define-key map "n" 'skip)
1551 (define-key map "Y" 'act)
1552 (define-key map "N" 'skip)
1553 (define-key map "e" 'edit-replacement)
1554 (define-key map "E" 'edit-replacement)
1555 (define-key map "," 'act-and-show)
1556 (define-key map "q" 'exit)
1557 (define-key map "\r" 'exit)
1558 (define-key map [return] 'exit)
1559 (define-key map "." 'act-and-exit)
1560 (define-key map "\C-r" 'edit)
1561 (define-key map "\C-w" 'delete-and-edit)
1562 (define-key map "\C-l" 'recenter)
1563 (define-key map "!" 'automatic)
1564 (define-key map "^" 'backup)
1565 (define-key map "\C-h" 'help)
1566 (define-key map [f1] 'help)
1567 (define-key map [help] 'help)
1568 (define-key map "?" 'help)
1569 (define-key map "\C-g" 'quit)
1570 (define-key map "\C-]" 'quit)
1571 (define-key map "\e" 'exit-prefix)
1572 (define-key map [escape] 'exit-prefix)
1573 map)
1574 "Keymap that defines the responses to questions in `query-replace'.
1575 The \"bindings\" in this map are not commands; they are answers.
1576 The valid answers include `act', `skip', `act-and-show',
1577 `exit', `act-and-exit', `edit', `delete-and-edit', `recenter',
1578 `automatic', `backup', `exit-prefix', and `help'.")
1579
1580 (defvar multi-query-replace-map
1581 (let ((map (make-sparse-keymap)))
1582 (set-keymap-parent map query-replace-map)
1583 (define-key map "Y" 'automatic-all)
1584 (define-key map "N" 'exit-current)
1585 map)
1586 "Keymap that defines additional bindings for multi-buffer replacements.
1587 It extends its parent map `query-replace-map' with new bindings to
1588 operate on a set of buffers/files. The difference with its parent map
1589 is the additional answers `automatic-all' to replace all remaining
1590 matches in all remaining buffers with no more questions, and
1591 `exit-current' to skip remaining matches in the current buffer
1592 and to continue with the next buffer in the sequence.")
1593
1594 (defun replace-match-string-symbols (n)
1595 "Process a list (and any sub-lists), expanding certain symbols.
1596 Symbol Expands To
1597 N (match-string N) (where N is a string of digits)
1598 #N (string-to-number (match-string N))
1599 & (match-string 0)
1600 #& (string-to-number (match-string 0))
1601 # replace-count
1602
1603 Note that these symbols must be preceded by a backslash in order to
1604 type them using Lisp syntax."
1605 (while (consp n)
1606 (cond
1607 ((consp (car n))
1608 (replace-match-string-symbols (car n))) ;Process sub-list
1609 ((symbolp (car n))
1610 (let ((name (symbol-name (car n))))
1611 (cond
1612 ((string-match "^[0-9]+$" name)
1613 (setcar n (list 'match-string (string-to-number name))))
1614 ((string-match "^#[0-9]+$" name)
1615 (setcar n (list 'string-to-number
1616 (list 'match-string
1617 (string-to-number (substring name 1))))))
1618 ((string= "&" name)
1619 (setcar n '(match-string 0)))
1620 ((string= "#&" name)
1621 (setcar n '(string-to-number (match-string 0))))
1622 ((string= "#" name)
1623 (setcar n 'replace-count))))))
1624 (setq n (cdr n))))
1625
1626 (defun replace-eval-replacement (expression count)
1627 (let* ((replace-count count)
1628 (replacement (eval expression)))
1629 (if (stringp replacement)
1630 replacement
1631 (prin1-to-string replacement t))))
1632
1633 (defun replace-quote (replacement)
1634 "Quote a replacement string.
1635 This just doubles all backslashes in REPLACEMENT and
1636 returns the resulting string. If REPLACEMENT is not
1637 a string, it is first passed through `prin1-to-string'
1638 with the `noescape' argument set.
1639
1640 `match-data' is preserved across the call."
1641 (save-match-data
1642 (replace-regexp-in-string "\\\\" "\\\\"
1643 (if (stringp replacement)
1644 replacement
1645 (prin1-to-string replacement t))
1646 t t)))
1647
1648 (defun replace-loop-through-replacements (data count)
1649 ;; DATA is a vector contaning the following values:
1650 ;; 0 next-rotate-count
1651 ;; 1 repeat-count
1652 ;; 2 next-replacement
1653 ;; 3 replacements
1654 (if (= (aref data 0) count)
1655 (progn
1656 (aset data 0 (+ count (aref data 1)))
1657 (let ((next (cdr (aref data 2))))
1658 (aset data 2 (if (consp next) next (aref data 3))))))
1659 (car (aref data 2)))
1660
1661 (defun replace-match-data (integers reuse &optional new)
1662 "Like `match-data', but markers in REUSE get invalidated.
1663 If NEW is non-nil, it is set and returned instead of fresh data,
1664 but coerced to the correct value of INTEGERS."
1665 (or (and new
1666 (progn
1667 (set-match-data new)
1668 (and (eq new reuse)
1669 (eq (null integers) (markerp (car reuse)))
1670 new)))
1671 (match-data integers reuse t)))
1672
1673 (defun replace-match-maybe-edit (newtext fixedcase literal noedit match-data)
1674 "Make a replacement with `replace-match', editing `\\?'.
1675 NEWTEXT, FIXEDCASE, LITERAL are just passed on. If NOEDIT is true, no
1676 check for `\\?' is made to save time. MATCH-DATA is used for the
1677 replacement. In case editing is done, it is changed to use markers.
1678
1679 The return value is non-nil if there has been no `\\?' or NOEDIT was
1680 passed in. If LITERAL is set, no checking is done, anyway."
1681 (unless (or literal noedit)
1682 (setq noedit t)
1683 (while (string-match "\\(\\`\\|[^\\]\\)\\(\\\\\\\\\\)*\\(\\\\\\?\\)"
1684 newtext)
1685 (setq newtext
1686 (read-string "Edit replacement string: "
1687 (prog1
1688 (cons
1689 (replace-match "" t t newtext 3)
1690 (1+ (match-beginning 3)))
1691 (setq match-data
1692 (replace-match-data
1693 nil match-data match-data))))
1694 noedit nil)))
1695 (set-match-data match-data)
1696 (replace-match newtext fixedcase literal)
1697 noedit)
1698
1699 (defvar replace-search-function 'search-forward
1700 "Function to use when searching for strings to replace.
1701 It is used by `query-replace' and `replace-string', and is called
1702 with three arguments, as if it were `search-forward'.")
1703
1704 (defvar replace-re-search-function 're-search-forward
1705 "Function to use when searching for regexps to replace.
1706 It is used by `query-replace-regexp', `replace-regexp',
1707 `query-replace-regexp-eval', and `map-query-replace-regexp'.
1708 It is called with three arguments, as if it were
1709 `re-search-forward'.")
1710
1711 (defun perform-replace (from-string replacements
1712 query-flag regexp-flag delimited-flag
1713 &optional repeat-count map start end)
1714 "Subroutine of `query-replace'. Its complexity handles interactive queries.
1715 Don't use this in your own program unless you want to query and set the mark
1716 just as `query-replace' does. Instead, write a simple loop like this:
1717
1718 (while (re-search-forward \"foo[ \\t]+bar\" nil t)
1719 (replace-match \"foobar\" nil nil))
1720
1721 which will run faster and probably do exactly what you want. Please
1722 see the documentation of `replace-match' to find out how to simulate
1723 `case-replace'.
1724
1725 This function returns nil if and only if there were no matches to
1726 make, or the user didn't cancel the call."
1727 (or map (setq map query-replace-map))
1728 (and query-flag minibuffer-auto-raise
1729 (raise-frame (window-frame (minibuffer-window))))
1730 (let* ((case-fold-search
1731 (if (and case-fold-search search-upper-case)
1732 (isearch-no-upper-case-p from-string regexp-flag)
1733 case-fold-search))
1734 (nocasify (not (and case-replace case-fold-search)))
1735 (literal (or (not regexp-flag) (eq regexp-flag 'literal)))
1736 (search-function
1737 (if regexp-flag
1738 replace-re-search-function
1739 replace-search-function))
1740 (search-string from-string)
1741 (real-match-data nil) ; The match data for the current match.
1742 (next-replacement nil)
1743 ;; This is non-nil if we know there is nothing for the user
1744 ;; to edit in the replacement.
1745 (noedit nil)
1746 (keep-going t)
1747 (stack nil)
1748 (replace-count 0)
1749 (nonempty-match nil)
1750 (multi-buffer nil)
1751 (recenter-last-op nil) ; Start cycling order with initial position.
1752
1753 ;; If non-nil, it is marker saying where in the buffer to stop.
1754 (limit nil)
1755
1756 ;; Data for the next match. If a cons, it has the same format as
1757 ;; (match-data); otherwise it is t if a match is possible at point.
1758 (match-again t)
1759
1760 (message
1761 (if query-flag
1762 (apply 'propertize
1763 (substitute-command-keys
1764 "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) ")
1765 minibuffer-prompt-properties))))
1766
1767 ;; If region is active, in Transient Mark mode, operate on region.
1768 (when start
1769 (setq limit (copy-marker (max start end)))
1770 (goto-char (min start end))
1771 (deactivate-mark))
1772
1773 ;; If last typed key in previous call of multi-buffer perform-replace
1774 ;; was `automatic-all', don't ask more questions in next files
1775 (when (eq (lookup-key map (vector last-input-event)) 'automatic-all)
1776 (setq query-flag nil multi-buffer t))
1777
1778 ;; REPLACEMENTS is either a string, a list of strings, or a cons cell
1779 ;; containing a function and its first argument. The function is
1780 ;; called to generate each replacement like this:
1781 ;; (funcall (car replacements) (cdr replacements) replace-count)
1782 ;; It must return a string.
1783 (cond
1784 ((stringp replacements)
1785 (setq next-replacement replacements
1786 replacements nil))
1787 ((stringp (car replacements)) ; If it isn't a string, it must be a cons
1788 (or repeat-count (setq repeat-count 1))
1789 (setq replacements (cons 'replace-loop-through-replacements
1790 (vector repeat-count repeat-count
1791 replacements replacements)))))
1792
1793 (if delimited-flag
1794 (setq search-function 're-search-forward
1795 search-string (concat "\\b"
1796 (if regexp-flag from-string
1797 (regexp-quote from-string))
1798 "\\b")))
1799 (when query-replace-lazy-highlight
1800 (setq isearch-lazy-highlight-last-string nil))
1801
1802 (push-mark)
1803 (undo-boundary)
1804 (unwind-protect
1805 ;; Loop finding occurrences that perhaps should be replaced.
1806 (while (and keep-going
1807 (not (or (eobp) (and limit (>= (point) limit))))
1808 ;; Use the next match if it is already known;
1809 ;; otherwise, search for a match after moving forward
1810 ;; one char if progress is required.
1811 (setq real-match-data
1812 (cond ((consp match-again)
1813 (goto-char (nth 1 match-again))
1814 (replace-match-data
1815 t real-match-data match-again))
1816 ;; MATCH-AGAIN non-nil means accept an
1817 ;; adjacent match.
1818 (match-again
1819 (and
1820 (funcall search-function search-string
1821 limit t)
1822 ;; For speed, use only integers and
1823 ;; reuse the list used last time.
1824 (replace-match-data t real-match-data)))
1825 ((and (< (1+ (point)) (point-max))
1826 (or (null limit)
1827 (< (1+ (point)) limit)))
1828 ;; If not accepting adjacent matches,
1829 ;; move one char to the right before
1830 ;; searching again. Undo the motion
1831 ;; if the search fails.
1832 (let ((opoint (point)))
1833 (forward-char 1)
1834 (if (funcall
1835 search-function search-string
1836 limit t)
1837 (replace-match-data
1838 t real-match-data)
1839 (goto-char opoint)
1840 nil))))))
1841
1842 ;; Record whether the match is nonempty, to avoid an infinite loop
1843 ;; repeatedly matching the same empty string.
1844 (setq nonempty-match
1845 (/= (nth 0 real-match-data) (nth 1 real-match-data)))
1846
1847 ;; If the match is empty, record that the next one can't be
1848 ;; adjacent.
1849
1850 ;; Otherwise, if matching a regular expression, do the next
1851 ;; match now, since the replacement for this match may
1852 ;; affect whether the next match is adjacent to this one.
1853 ;; If that match is empty, don't use it.
1854 (setq match-again
1855 (and nonempty-match
1856 (or (not regexp-flag)
1857 (and (looking-at search-string)
1858 (let ((match (match-data)))
1859 (and (/= (nth 0 match) (nth 1 match))
1860 match))))))
1861
1862 ;; Optionally ignore matches that have a read-only property.
1863 (unless (and query-replace-skip-read-only
1864 (text-property-not-all
1865 (nth 0 real-match-data) (nth 1 real-match-data)
1866 'read-only nil))
1867
1868 ;; Calculate the replacement string, if necessary.
1869 (when replacements
1870 (set-match-data real-match-data)
1871 (setq next-replacement
1872 (funcall (car replacements) (cdr replacements)
1873 replace-count)))
1874 (if (not query-flag)
1875 (progn
1876 (unless (or literal noedit)
1877 (replace-highlight
1878 (nth 0 real-match-data) (nth 1 real-match-data)
1879 start end search-string
1880 (or delimited-flag regexp-flag) case-fold-search))
1881 (setq noedit
1882 (replace-match-maybe-edit
1883 next-replacement nocasify literal
1884 noedit real-match-data)
1885 replace-count (1+ replace-count)))
1886 (undo-boundary)
1887 (let (done replaced key def)
1888 ;; Loop reading commands until one of them sets done,
1889 ;; which means it has finished handling this
1890 ;; occurrence. Any command that sets `done' should
1891 ;; leave behind proper match data for the stack.
1892 ;; Commands not setting `done' need to adjust
1893 ;; `real-match-data'.
1894 (while (not done)
1895 (set-match-data real-match-data)
1896 (replace-highlight
1897 (match-beginning 0) (match-end 0)
1898 start end search-string
1899 (or delimited-flag regexp-flag) case-fold-search)
1900 ;; Bind message-log-max so we don't fill up the message log
1901 ;; with a bunch of identical messages.
1902 (let ((message-log-max nil)
1903 (replacement-presentation
1904 (if query-replace-show-replacement
1905 (save-match-data
1906 (set-match-data real-match-data)
1907 (match-substitute-replacement next-replacement
1908 nocasify literal))
1909 next-replacement)))
1910 (message message
1911 (query-replace-descr from-string)
1912 (query-replace-descr replacement-presentation)))
1913 (setq key (read-event))
1914 ;; Necessary in case something happens during read-event
1915 ;; that clobbers the match data.
1916 (set-match-data real-match-data)
1917 (setq key (vector key))
1918 (setq def (lookup-key map key))
1919 ;; Restore the match data while we process the command.
1920 (cond ((eq def 'help)
1921 (with-output-to-temp-buffer "*Help*"
1922 (princ
1923 (concat "Query replacing "
1924 (if delimited-flag "word " "")
1925 (if regexp-flag "regexp " "")
1926 from-string " with "
1927 next-replacement ".\n\n"
1928 (substitute-command-keys
1929 query-replace-help)))
1930 (with-current-buffer standard-output
1931 (help-mode))))
1932 ((eq def 'exit)
1933 (setq keep-going nil)
1934 (setq done t))
1935 ((eq def 'exit-current)
1936 (setq multi-buffer t keep-going nil done t))
1937 ((eq def 'backup)
1938 (if stack
1939 (let ((elt (pop stack)))
1940 (goto-char (nth 0 elt))
1941 (setq replaced (nth 1 elt)
1942 real-match-data
1943 (replace-match-data
1944 t real-match-data
1945 (nth 2 elt))))
1946 (message "No previous match")
1947 (ding 'no-terminate)
1948 (sit-for 1)))
1949 ((eq def 'act)
1950 (or replaced
1951 (setq noedit
1952 (replace-match-maybe-edit
1953 next-replacement nocasify literal
1954 noedit real-match-data)
1955 replace-count (1+ replace-count)))
1956 (setq done t replaced t))
1957 ((eq def 'act-and-exit)
1958 (or replaced
1959 (setq noedit
1960 (replace-match-maybe-edit
1961 next-replacement nocasify literal
1962 noedit real-match-data)
1963 replace-count (1+ replace-count)))
1964 (setq keep-going nil)
1965 (setq done t replaced t))
1966 ((eq def 'act-and-show)
1967 (if (not replaced)
1968 (setq noedit
1969 (replace-match-maybe-edit
1970 next-replacement nocasify literal
1971 noedit real-match-data)
1972 replace-count (1+ replace-count)
1973 real-match-data (replace-match-data
1974 t real-match-data)
1975 replaced t)))
1976 ((or (eq def 'automatic) (eq def 'automatic-all))
1977 (or replaced
1978 (setq noedit
1979 (replace-match-maybe-edit
1980 next-replacement nocasify literal
1981 noedit real-match-data)
1982 replace-count (1+ replace-count)))
1983 (setq done t query-flag nil replaced t)
1984 (if (eq def 'automatic-all) (setq multi-buffer t)))
1985 ((eq def 'skip)
1986 (setq done t))
1987 ((eq def 'recenter)
1988 ;; `this-command' has the value `query-replace',
1989 ;; so we need to bind it to `recenter-top-bottom'
1990 ;; to allow it to detect a sequence of `C-l'.
1991 (let ((this-command 'recenter-top-bottom)
1992 (last-command 'recenter-top-bottom))
1993 (recenter-top-bottom)))
1994 ((eq def 'edit)
1995 (let ((opos (point-marker)))
1996 (setq real-match-data (replace-match-data
1997 nil real-match-data
1998 real-match-data))
1999 (goto-char (match-beginning 0))
2000 (save-excursion
2001 (save-window-excursion
2002 (recursive-edit)))
2003 (goto-char opos)
2004 (set-marker opos nil))
2005 ;; Before we make the replacement,
2006 ;; decide whether the search string
2007 ;; can match again just after this match.
2008 (if (and regexp-flag nonempty-match)
2009 (setq match-again (and (looking-at search-string)
2010 (match-data)))))
2011 ;; Edit replacement.
2012 ((eq def 'edit-replacement)
2013 (setq real-match-data (replace-match-data
2014 nil real-match-data
2015 real-match-data)
2016 next-replacement
2017 (read-string "Edit replacement string: "
2018 next-replacement)
2019 noedit nil)
2020 (if replaced
2021 (set-match-data real-match-data)
2022 (setq noedit
2023 (replace-match-maybe-edit
2024 next-replacement nocasify literal noedit
2025 real-match-data)
2026 replaced t))
2027 (setq done t))
2028
2029 ((eq def 'delete-and-edit)
2030 (replace-match "" t t)
2031 (setq real-match-data (replace-match-data
2032 nil real-match-data))
2033 (replace-dehighlight)
2034 (save-excursion (recursive-edit))
2035 (setq replaced t))
2036 ;; Note: we do not need to treat `exit-prefix'
2037 ;; specially here, since we reread
2038 ;; any unrecognized character.
2039 (t
2040 (setq this-command 'mode-exited)
2041 (setq keep-going nil)
2042 (setq unread-command-events
2043 (append (listify-key-sequence key)
2044 unread-command-events))
2045 (setq done t)))
2046 (when query-replace-lazy-highlight
2047 ;; Force lazy rehighlighting only after replacements.
2048 (if (not (memq def '(skip backup)))
2049 (setq isearch-lazy-highlight-last-string nil)))
2050 (unless (eq def 'recenter)
2051 ;; Reset recenter cycling order to initial position.
2052 (setq recenter-last-op nil)))
2053 ;; Record previous position for ^ when we move on.
2054 ;; Change markers to numbers in the match data
2055 ;; since lots of markers slow down editing.
2056 (push (list (point) replaced
2057 ;;; If the replacement has already happened, all we need is the
2058 ;;; current match start and end. We could get this with a trivial
2059 ;;; match like
2060 ;;; (save-excursion (goto-char (match-beginning 0))
2061 ;;; (search-forward (match-string 0))
2062 ;;; (match-data t))
2063 ;;; if we really wanted to avoid manually constructing match data.
2064 ;;; Adding current-buffer is necessary so that match-data calls can
2065 ;;; return markers which are appropriate for editing.
2066 (if replaced
2067 (list
2068 (match-beginning 0)
2069 (match-end 0)
2070 (current-buffer))
2071 (match-data t)))
2072 stack)))))
2073
2074 (replace-dehighlight))
2075 (or unread-command-events
2076 (message "Replaced %d occurrence%s"
2077 replace-count
2078 (if (= replace-count 1) "" "s")))
2079 (or (and keep-going stack) multi-buffer)))
2080
2081 (defvar isearch-error)
2082 (defvar isearch-forward)
2083 (defvar isearch-case-fold-search)
2084 (defvar isearch-string)
2085
2086 (defvar replace-overlay nil)
2087
2088 (defun replace-highlight (match-beg match-end range-beg range-end
2089 string regexp case-fold)
2090 (if query-replace-highlight
2091 (if replace-overlay
2092 (move-overlay replace-overlay match-beg match-end (current-buffer))
2093 (setq replace-overlay (make-overlay match-beg match-end))
2094 (overlay-put replace-overlay 'priority 1001) ;higher than lazy overlays
2095 (overlay-put replace-overlay 'face 'query-replace)))
2096 (if query-replace-lazy-highlight
2097 (let ((isearch-string string)
2098 (isearch-regexp regexp)
2099 (search-whitespace-regexp nil)
2100 (isearch-case-fold-search case-fold)
2101 (isearch-forward t)
2102 (isearch-error nil))
2103 ;; Set isearch-word to nil because word-replace is regexp-based,
2104 ;; so `isearch-search-fun' should not use `word-search-forward'.
2105 (if (and isearch-word isearch-regexp) (setq isearch-word nil))
2106 (isearch-lazy-highlight-new-loop range-beg range-end))))
2107
2108 (defun replace-dehighlight ()
2109 (when replace-overlay
2110 (delete-overlay replace-overlay))
2111 (when query-replace-lazy-highlight
2112 (lazy-highlight-cleanup lazy-highlight-cleanup)
2113 (setq isearch-lazy-highlight-last-string nil)))
2114
2115 ;;; replace.el ends here