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