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