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