annotate lisp/replace.el @ 37536:0e883854b9fc

(query-replace-regexp-eval): Doc fix.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 02 May 2001 11:28:51 +0000
parents b7b3034a7f6d
children dd9ddcbf2b5f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 324
diff changeset
1 ;;; replace.el --- replace commands for Emacs.
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 324
diff changeset
2
37536
0e883854b9fc (query-replace-regexp-eval): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 36076
diff changeset
3 ;; Copyright (C) 1985, 86, 87, 92, 94, 96, 1997, 2000, 2001
28502
3e4e6d45a774 (perform-replace): Don't move forward one char
Gerd Moellmann <gerd@gnu.org>
parents: 27391
diff changeset
4 ;; Free Software Foundation, Inc.
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 ;; This file is part of GNU Emacs.
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 ;; GNU Emacs is free software; you can redistribute it and/or modify
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 ;; it under the terms of the GNU General Public License as published by
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 658
diff changeset
10 ;; the Free Software Foundation; either version 2, or (at your option)
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 ;; any later version.
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 ;; GNU Emacs is distributed in the hope that it will be useful,
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; GNU General Public License for more details.
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13069
diff changeset
19 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13069
diff changeset
20 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13069
diff changeset
21 ;; Boston, MA 02111-1307, USA.
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22
2315
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2156
diff changeset
23 ;;; Commentary:
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2156
diff changeset
24
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2156
diff changeset
25 ;; This package supplies the string and regular-expression replace functions
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2156
diff changeset
26 ;; documented in the Emacs user's manual.
9e7ec92a4fdf Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2156
diff changeset
27
788
c8d4eb38ebfc *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 732
diff changeset
28 ;;; Code:
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29
17664
d8cb277f0ce8 Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17655
diff changeset
30 (defcustom case-replace t
d8cb277f0ce8 Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17655
diff changeset
31 "*Non-nil means query-replace should preserve case in replacements."
d8cb277f0ce8 Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17655
diff changeset
32 :type 'boolean
d8cb277f0ce8 Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17655
diff changeset
33 :group 'matching)
264
7db4ff4204a5 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 260
diff changeset
34
864
fe5f6b7c9727 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 862
diff changeset
35 (defvar query-replace-history nil)
fe5f6b7c9727 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 862
diff changeset
36
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
37 (defvar query-replace-interactive nil
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
38 "Non-nil means `query-replace' uses the last search string.
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
39 That becomes the \"string to replace\".")
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
40
20806
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
41 (defcustom query-replace-from-history-variable 'query-replace-history
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
42 "History list to use for the FROM argument of query-replace commands.
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
43 The value of this variable should be a symbol; that symbol
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
44 is used as a variable to hold a history list for the strings
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
45 or patterns to be replaced."
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
46 :group 'matching
21669
9861518505cb *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 21294
diff changeset
47 :type 'symbol
9861518505cb *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 21294
diff changeset
48 :version "20.3")
20806
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
49
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
50 (defcustom query-replace-to-history-variable 'query-replace-history
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
51 "History list to use for the TO argument of query-replace commands.
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
52 The value of this variable should be a symbol; that symbol
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
53 is used as a variable to hold a history list for replacement
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
54 strings or patterns."
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
55 :group 'matching
21669
9861518505cb *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 21294
diff changeset
56 :type 'symbol
9861518505cb *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 21294
diff changeset
57 :version "20.3")
20806
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
58
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
59 (defun query-replace-read-args (string regexp-flag)
864
fe5f6b7c9727 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 862
diff changeset
60 (let (from to)
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
61 (if query-replace-interactive
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
62 (setq from (car (if regexp-flag regexp-search-ring search-ring)))
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
63 (setq from (read-from-minibuffer (format "%s: " string)
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
64 nil nil nil
20806
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
65 query-replace-from-history-variable
24a1fcdc31d7 (query-replace-from-history-variable): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 20658
diff changeset
66 nil t)))
864
fe5f6b7c9727 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 862
diff changeset
67 (setq to (read-from-minibuffer (format "%s %s with: " string from)
fe5f6b7c9727 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 862
diff changeset
68 nil nil nil
20860
1432a2b3c44e (occur): Apply default by hand after read-from-minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 20806
diff changeset
69 query-replace-to-history-variable from t))
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
70 (if (and transient-mark-mode mark-active)
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
71 (list from to current-prefix-arg (region-beginning) (region-end))
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
72 (list from to current-prefix-arg nil nil))))
864
fe5f6b7c9727 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 862
diff changeset
73
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
74 (defun query-replace (from-string to-string &optional delimited start end)
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
75 "Replace some occurrences of FROM-STRING with TO-STRING.
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
76 As each match is found, the user must type a character saying
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
77 what to do with it. For directions, type \\[help-command] at that time.
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
78
20248
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
79 In Transient Mark mode, if the mark is active, operate on the contents
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
80 of the region. Otherwise, operate from point to the end of the buffer.
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
81
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
82 If `query-replace-interactive' is non-nil, the last incremental search
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
83 string is used as FROM-STRING--you don't have to specify it with the
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
84 minibuffer.
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
85
23457
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
86 Replacement transfers the case of the old text to the new text,
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
87 if `case-replace' and `case-fold-search'
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
88 are non-nil and FROM-STRING has no uppercase letters.
10104
8a04af3511c1 (replace-string, query-replace): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 10069
diff changeset
89 \(Preserving case means that if the string matched is all caps, or capitalized,
8a04af3511c1 (replace-string, query-replace): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 10069
diff changeset
90 then its replacement is upcased or capitalized.)
8a04af3511c1 (replace-string, query-replace): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 10069
diff changeset
91
6707
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
92 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
93 only matches surrounded by word boundaries.
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
94 Fourth and fifth arg START and END specify the region to operate on.
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
95
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
96 To customize possible responses, change the \"bindings\" in `query-replace-map'."
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
97 (interactive (query-replace-read-args "Query replace" nil))
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
98 (perform-replace from-string to-string start end t nil delimited))
20248
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
99
268
2dd411fe2f72 *** empty log message ***
Brian Preble <rassilon@gnu.org>
parents: 264
diff changeset
100 (define-key esc-map "%" 'query-replace)
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
101
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
102 (defun query-replace-regexp (regexp to-string &optional delimited start end)
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
103 "Replace some things after point matching REGEXP with TO-STRING.
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
104 As each match is found, the user must type a character saying
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
105 what to do with it. For directions, type \\[help-command] at that time.
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
106
20248
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
107 In Transient Mark mode, if the mark is active, operate on the contents
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
108 of the region. Otherwise, operate from point to the end of the buffer.
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
109
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
110 If `query-replace-interactive' is non-nil, the last incremental search
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
111 regexp is used as REGEXP--you don't have to specify it with the
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
112 minibuffer.
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
113
6707
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
114 Preserves case in each replacement if `case-replace' and `case-fold-search'
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
115 are non-nil and REGEXP has no uppercase letters.
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
116
6707
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
117 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
118 only matches surrounded by word boundaries.
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
119 Fourth and fifth arg START and END specify the region to operate on.
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
120
6707
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
121 In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
122 and `\\=\\N' (where N is a digit) stands for
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
123 whatever what matched the Nth `\\(...\\)' in REGEXP."
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
124 (interactive (query-replace-read-args "Query replace regexp" t))
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
125 (perform-replace regexp to-string start end t t delimited))
22353
402ebb81ae84 (esc-map): Bind C-M-% to query-replace-regexp.
Karl Heuer <kwzh@gnu.org>
parents: 21669
diff changeset
126 (define-key esc-map [?\C-%] 'query-replace-regexp)
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
127
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
128 (defun query-replace-regexp-eval (regexp to-expr &optional delimited start end)
25167
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
129 "Replace some things after point matching REGEXP with the result of TO-EXPR.
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
130 As each match is found, the user must type a character saying
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
131 what to do with it. For directions, type \\[help-command] at that time.
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
132
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
133 TO-EXPR is a Lisp expression evaluated to compute each replacement. It may
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
134 reference `replace-count' to get the number of replacements already made.
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
135 If the result of TO-EXPR is not a string, it is converted to one using
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
136 `prin1-to-string' with the NOESCAPE argument (which see).
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
137
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
138 For convenience, when entering TO-EXPR interactively, you can use `\\&' or
37536
0e883854b9fc (query-replace-regexp-eval): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 36076
diff changeset
139 `\0' to stand for whatever matched the whole of REGEXP, and `\N' (where
0e883854b9fc (query-replace-regexp-eval): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 36076
diff changeset
140 N is a digit) to stand for whatever matched the Nth `\(...\)' in REGEXP.
25167
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
141 Use `\\#&' or `\\#N' if you want a number instead of a string.
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
142
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
143 In Transient Mark mode, if the mark is active, operate on the contents
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
144 of the region. Otherwise, operate from point to the end of the buffer.
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
145
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
146 If `query-replace-interactive' is non-nil, the last incremental search
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
147 regexp is used as REGEXP--you don't have to specify it with the
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
148 minibuffer.
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
149
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
150 Preserves case in each replacement if `case-replace' and `case-fold-search'
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
151 are non-nil and REGEXP has no uppercase letters.
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
152
25167
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
153 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
37536
0e883854b9fc (query-replace-regexp-eval): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 36076
diff changeset
154 only matches that are surrounded by word boundaries.
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
155 Fourth and fifth arg START and END specify the region to operate on."
25167
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
156 (interactive
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
157 (let (from to start end)
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
158 (when (and transient-mark-mode mark-active)
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
159 (setq start (region-beginning)
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
160 end (region-end)))
25167
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
161 (if query-replace-interactive
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
162 (setq from (car regexp-search-ring))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
163 (setq from (read-from-minibuffer "Query replace regexp: "
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
164 nil nil nil
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
165 query-replace-from-history-variable
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
166 nil t)))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
167 (setq to (list (read-from-minibuffer
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
168 (format "Query replace regexp %s with eval: " from)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
169 nil nil t query-replace-to-history-variable from t)))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
170 ;; We make TO a list because replace-match-string-symbols requires one,
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
171 ;; and the user might enter a single token.
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
172 (replace-match-string-symbols to)
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
173 (list from (car to) start end current-prefix-arg)))
27391
abaa4ac29f51 (query-replace): Rename last arg to DELIMITED.
Richard M. Stallman <rms@gnu.org>
parents: 25167
diff changeset
174 (perform-replace regexp (cons 'replace-eval-replacement to-expr)
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
175 start end t t delimited))
25167
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
176
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
177 (defun map-query-replace-regexp (regexp to-strings &optional n start end)
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
178 "Replace some matches for REGEXP with various strings, in rotation.
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
179 The second argument TO-STRINGS contains the replacement strings,
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
180 separated by spaces. Third arg DELIMITED (prefix arg if interactive),
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
181 if non-nil, means replace only matches surrounded by word boundaries.
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
182 This command works like `query-replace-regexp' except that each
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
183 successive replacement uses the next successive replacement string,
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
184 wrapping around from the last such string to the first.
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
185
20248
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
186 In Transient Mark mode, if the mark is active, operate on the contents
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
187 of the region. Otherwise, operate from point to the end of the buffer.
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
188
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
189 Non-interactively, TO-STRINGS may be a list of replacement strings.
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
190
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
191 If `query-replace-interactive' is non-nil, the last incremental search
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
192 regexp is used as REGEXP--you don't have to specify it with the minibuffer.
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
193
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
194 A prefix argument N says to use each replacement string N times
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
195 before rotating to the next.
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
196 Fourth and fifth arg START and END specify the region to operate on."
864
fe5f6b7c9727 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 862
diff changeset
197 (interactive
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
198 (let (from to start end)
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
199 (when (and transient-mark-mode mark-active)
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
200 (setq start (region-beginning)
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
201 end (region-end)))
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
202 (setq from (if query-replace-interactive
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
203 (car regexp-search-ring)
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
204 (read-from-minibuffer "Map query replace (regexp): "
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
205 nil nil nil
19551
256843b0f804 (query-replace-read-args): Locally bind
Kenichi Handa <handa@m17n.org>
parents: 18991
diff changeset
206 'query-replace-history nil t)))
864
fe5f6b7c9727 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 862
diff changeset
207 (setq to (read-from-minibuffer
fe5f6b7c9727 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 862
diff changeset
208 (format "Query replace %s with (space-separated strings): "
fe5f6b7c9727 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 862
diff changeset
209 from)
fe5f6b7c9727 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 862
diff changeset
210 nil nil nil
20860
1432a2b3c44e (occur): Apply default by hand after read-from-minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 20806
diff changeset
211 'query-replace-history from t))
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
212 (list from to start end current-prefix-arg)))
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
213 (let (replacements)
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
214 (if (listp to-strings)
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
215 (setq replacements to-strings)
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
216 (while (/= (length to-strings) 0)
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
217 (if (string-match " " to-strings)
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
218 (setq replacements
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
219 (append replacements
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
220 (list (substring to-strings 0
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
221 (string-match " " to-strings))))
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
222 to-strings (substring to-strings
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
223 (1+ (string-match " " to-strings))))
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
224 (setq replacements (append replacements (list to-strings))
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
225 to-strings ""))))
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
226 (perform-replace regexp replacements start end t t nil n)))
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
227
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
228 (defun replace-string (from-string to-string &optional delimited start end)
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
229 "Replace occurrences of FROM-STRING with TO-STRING.
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
230 Preserve case in each match if `case-replace' and `case-fold-search'
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
231 are non-nil and FROM-STRING has no uppercase letters.
10104
8a04af3511c1 (replace-string, query-replace): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 10069
diff changeset
232 \(Preserving case means that if the string matched is all caps, or capitalized,
8a04af3511c1 (replace-string, query-replace): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 10069
diff changeset
233 then its replacement is upcased or capitalized.)
8a04af3511c1 (replace-string, query-replace): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 10069
diff changeset
234
20248
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
235 In Transient Mark mode, if the mark is active, operate on the contents
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
236 of the region. Otherwise, operate from point to the end of the buffer.
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
237
6707
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
238 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
239 only matches surrounded by word boundaries.
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
240 Fourth and fifth arg START and END specify the region to operate on.
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
241
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
242 If `query-replace-interactive' is non-nil, the last incremental search
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
243 string is used as FROM-STRING--you don't have to specify it with the
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
244 minibuffer.
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
245
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
246 This function is usually the wrong thing to use in a Lisp program.
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
247 What you probably want is a loop like this:
6707
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
248 (while (search-forward FROM-STRING nil t)
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
249 (replace-match TO-STRING nil t))
17211
ecf78b4eb138 (replace-string): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 17010
diff changeset
250 which will run faster and will not set the mark or print anything.
ecf78b4eb138 (replace-string): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 17010
diff changeset
251 \(You may need a more complex loop if FROM-STRING can match the null string
ecf78b4eb138 (replace-string): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 17010
diff changeset
252 and TO-STRING is also null.)"
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
253 (interactive (query-replace-read-args "Replace string" nil))
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
254 (perform-replace from-string to-string start end nil nil delimited))
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
255
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
256 (defun replace-regexp (regexp to-string &optional delimited start end)
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
257 "Replace things after point matching REGEXP with TO-STRING.
6707
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
258 Preserve case in each match if `case-replace' and `case-fold-search'
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
259 are non-nil and REGEXP has no uppercase letters.
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
260
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
261 In Transient Mark mode, if the mark is active, operate on the contents
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
262 of the region. Otherwise, operate from point to the end of the buffer.
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
263
6707
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
264 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
265 only matches surrounded by word boundaries.
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
266 Fourth and fifth arg START and END specify the region to operate on.
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
267
6707
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
268 In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP,
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
269 and `\\=\\N' (where N is a digit) stands for
6722
dd74576b79f6 (replace-regexp): Fix misbalanced quotes.
Karl Heuer <kwzh@gnu.org>
parents: 6707
diff changeset
270 whatever what matched the Nth `\\(...\\)' in REGEXP.
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
271
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
272 If `query-replace-interactive' is non-nil, the last incremental search
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
273 regexp is used as REGEXP--you don't have to specify it with the minibuffer.
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
274
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
275 This function is usually the wrong thing to use in a Lisp program.
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
276 What you probably want is a loop like this:
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
277 (while (re-search-forward REGEXP nil t)
6707
31fce442168a Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 6635
diff changeset
278 (replace-match TO-STRING nil nil))
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
279 which will run faster and will not set the mark or print anything."
8935
0e9e6ff083e8 (query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents: 8664
diff changeset
280 (interactive (query-replace-read-args "Replace regexp" t))
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
281 (perform-replace regexp to-string start end nil t delimited))
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
282
2408
a9c05a12b615 (regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents: 2327
diff changeset
283
a9c05a12b615 (regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents: 2327
diff changeset
284 (defvar regexp-history nil
a9c05a12b615 (regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents: 2327
diff changeset
285 "History list for some commands that read regular expressions.")
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
286
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
287
2571
b65cf676a09b All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2408
diff changeset
288 (defalias 'delete-non-matching-lines 'keep-lines)
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
289 (defalias 'delete-matching-lines 'flush-lines)
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
290 (defalias 'count-matches 'how-many)
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
291
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
292
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
293 (defun keep-lines-read-args (prompt)
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
294 "Read arguments for `keep-lines' and friends.
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
295 Prompt for a regexp with PROMPT.
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
296
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
297 Value is a list (REGEXP START END).
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
298
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
299 If in Transient Mark node, and the mark is active, START is the
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
300 start of the region, and end is a marker for the end of the region.
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
301 Otherwise, START is the current point, and END is `point-max-marker'."
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
302 (let ((regexp (read-from-minibuffer prompt nil nil nil
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
303 'regexp-history nil t))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
304 start end)
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
305 (if (and transient-mark-mode mark-active)
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
306 (setq start (region-beginning)
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
307 end (save-excursion (goto-char (region-end)) (point-marker)))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
308 (setq start (point)
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
309 end (point-max-marker)))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
310 (list regexp start end)))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
311
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
312
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
313 (defun keep-lines (regexp &optional rstart rend)
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
314 "Delete all lines except those containing matches for REGEXP.
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
315 A match split across lines preserves all the lines it lies in.
23457
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
316 Applies to all lines after point.
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
317
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
318 If REGEXP contains upper case characters (excluding those preceded by `\\'),
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
319 the matching is case-sensitive.
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
320
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
321 Second and third arg RSTART and REND specify the region to operate on.
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
322
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
323 In Transient Mark mode, if the mark is active, operate on the contents
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
324 of the region. Otherwise, operate from point to the end of the buffer."
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
325 (interactive
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
326 (keep-lines-read-args "Keep lines (containing match for regexp): "))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
327 (if rstart
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
328 (goto-char (min rstart rend))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
329 (setq rstart (point) rend (point-max-marker)))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
330 (save-excursion
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
331 (or (bolp) (forward-line 1))
23457
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
332 (let ((start (point))
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
333 (case-fold-search (and case-fold-search
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
334 (isearch-no-upper-case-p regexp t))))
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
335 (while (< (point) rend)
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336 ;; Start is first char not preserved by previous match.
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
337 (if (not (re-search-forward regexp rend 'move))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
338 (delete-region start rend)
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339 (let ((end (save-excursion (goto-char (match-beginning 0))
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340 (beginning-of-line)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
341 (point))))
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
342 ;; Now end is first char preserved by the new match.
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
343 (if (< start end)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
344 (delete-region start end))))
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
345
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
346 (setq start (save-excursion (forward-line 1) (point)))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347 ;; If the match was empty, avoid matching again at same place.
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
348 (and (< (point) rend)
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
349 (= (match-beginning 0) (match-end 0))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
350 (forward-char 1))))))
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
351
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
352
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
353 (defun flush-lines (regexp &optional rstart rend)
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
354 "Delete lines containing matches for REGEXP.
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
355 If a match is split across lines, all the lines it lies in are deleted.
23457
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
356 Applies to lines after point.
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
357
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
358 If REGEXP contains upper case characters (excluding those preceded by `\\'),
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
359 the matching is case-sensitive.
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
360
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
361 Second and third arg RSTART and REND specify the region to operate on.
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
362
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
363 In Transient Mark mode, if the mark is active, operate on the contents
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
364 of the region. Otherwise, operate from point to the end of the buffer."
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
365 (interactive
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
366 (keep-lines-read-args "Flush lines (containing match for regexp): "))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
367 (if rstart
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
368 (goto-char (min rstart rend))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
369 (setq rstart (point) rend (point-max-marker)))
23457
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
370 (let ((case-fold-search (and case-fold-search
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
371 (isearch-no-upper-case-p regexp t))))
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
372 (save-excursion
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
373 (while (and (< (point) rend)
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
374 (re-search-forward regexp rend t))
23457
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
375 (delete-region (save-excursion (goto-char (match-beginning 0))
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
376 (beginning-of-line)
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
377 (point))
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
378 (progn (forward-line 1) (point)))))))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
379
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
380
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
381 (defun how-many (regexp &optional rstart rend)
23457
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
382 "Print number of matches for REGEXP following point.
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
383
3ca22a873859 (keep-lines, flush-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents: 23384
diff changeset
384 If REGEXP contains upper case characters (excluding those preceded by `\\'),
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
385 the matching is case-sensitive.
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
386
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
387 Second and third arg RSTART and REND specify the region to operate on.
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
388
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
389 In Transient Mark mode, if the mark is active, operate on the contents
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
390 of the region. Otherwise, operate from point to the end of the buffer."
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
391 (interactive
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
392 (keep-lines-read-args "How many matches for (regexp): "))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
393 (if rstart
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
394 (goto-char (min rstart rend))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
395 (setq rstart (point) rend (point-max-marker)))
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
396 (let ((count 0)
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
397 opoint
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
398 (case-fold-search (and case-fold-search
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
399 (isearch-no-upper-case-p regexp t))))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
400 (save-excursion
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
401 (while (and (< (point) rend)
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
402 (progn (setq opoint (point))
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
403 (re-search-forward regexp rend t)))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
404 (if (= opoint (point))
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
405 (forward-char 1)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
406 (setq count (1+ count))))
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
407 (message "%d occurrences" count))))
32036
29b572780dea (keep-lines-read-args): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 30562
diff changeset
408
2408
a9c05a12b615 (regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents: 2327
diff changeset
409
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
410 (defvar occur-mode-map ())
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
411 (if occur-mode-map
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
412 ()
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
413 (setq occur-mode-map (make-sparse-keymap))
6596
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
414 (define-key occur-mode-map [mouse-2] 'occur-mode-mouse-goto)
10266
a44beb55d3e1 (occur-mode-map): Bind C-m and `return' to occur-mode-goto-occurrence.
Richard M. Stallman <rms@gnu.org>
parents: 10157
diff changeset
415 (define-key occur-mode-map "\C-c\C-c" 'occur-mode-goto-occurrence)
16864
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
416 (define-key occur-mode-map "\C-m" 'occur-mode-goto-occurrence)
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
417 (define-key occur-mode-map "\M-n" 'occur-next)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
418 (define-key occur-mode-map "\M-p" 'occur-prev)
16864
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
419 (define-key occur-mode-map "g" 'revert-buffer))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
420
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
421
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
422 (defvar occur-buffer nil
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
423 "Name of buffer for last occur.")
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
424
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
425
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
426 (defvar occur-nlines nil
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
427 "Number of lines of context to show around matching line.")
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
428
16864
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
429 (defvar occur-command-arguments nil
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
430 "Arguments that were given to `occur' when it made this buffer.")
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
431
17655
8e35bb3ec2e2 (occur-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents: 17638
diff changeset
432 (put 'occur-mode 'mode-class 'special)
8e35bb3ec2e2 (occur-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents: 17638
diff changeset
433
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
434 (defun occur-mode ()
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
435 "Major mode for output from \\[occur].
10266
a44beb55d3e1 (occur-mode-map): Bind C-m and `return' to occur-mode-goto-occurrence.
Richard M. Stallman <rms@gnu.org>
parents: 10157
diff changeset
436 \\<occur-mode-map>Move point to one of the items in this buffer, then use
a44beb55d3e1 (occur-mode-map): Bind C-m and `return' to occur-mode-goto-occurrence.
Richard M. Stallman <rms@gnu.org>
parents: 10157
diff changeset
437 \\[occur-mode-goto-occurrence] to go to the occurrence that the item refers to.
a44beb55d3e1 (occur-mode-map): Bind C-m and `return' to occur-mode-goto-occurrence.
Richard M. Stallman <rms@gnu.org>
parents: 10157
diff changeset
438 Alternatively, click \\[occur-mode-mouse-goto] on an item to go to it.
a44beb55d3e1 (occur-mode-map): Bind C-m and `return' to occur-mode-goto-occurrence.
Richard M. Stallman <rms@gnu.org>
parents: 10157
diff changeset
439
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
440 \\{occur-mode-map}"
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
441 (kill-all-local-variables)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
442 (use-local-map occur-mode-map)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
443 (setq major-mode 'occur-mode)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
444 (setq mode-name "Occur")
16864
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
445 (make-local-variable 'revert-buffer-function)
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
446 (setq revert-buffer-function 'occur-revert-function)
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
447 (make-local-variable 'occur-buffer)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
448 (make-local-variable 'occur-nlines)
16864
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
449 (make-local-variable 'occur-command-arguments)
4975
db0c6ed6f145 (occur-mode): Run occur-mode-hook.
Richard M. Stallman <rms@gnu.org>
parents: 4429
diff changeset
450 (run-hooks 'occur-mode-hook))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
451
16864
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
452 (defun occur-revert-function (ignore1 ignore2)
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
453 "Handle revert-buffer for *Occur* buffers."
16864
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
454 (let ((args occur-command-arguments ))
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
455 (save-excursion
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
456 (set-buffer occur-buffer)
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
457 (apply 'occur args))))
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
458
6596
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
459 (defun occur-mode-mouse-goto (event)
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
460 "In Occur mode, go to the occurrence whose line you click on."
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
461 (interactive "e")
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
462 (let (buffer pos)
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
463 (save-excursion
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
464 (set-buffer (window-buffer (posn-window (event-end event))))
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
465 (save-excursion
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
466 (goto-char (posn-point (event-end event)))
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
467 (setq pos (occur-mode-find-occurrence))
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
468 (setq buffer occur-buffer)))
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
469 (pop-to-buffer buffer)
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
470 (goto-char (marker-position pos))))
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
471
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
472 (defun occur-mode-find-occurrence ()
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
473 (if (or (null occur-buffer)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
474 (null (buffer-name occur-buffer)))
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
475 (progn
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
476 (setq occur-buffer nil)
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
477 (error "Buffer in which occurrences were found is deleted")))
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
478 (let ((pos (get-text-property (point) 'occur)))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
479 (if (null pos)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
480 (error "No occurrence on this line")
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
481 pos)))
6596
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
482
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
483 (defun occur-mode-goto-occurrence ()
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
484 "Go to the occurrence the current line describes."
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
485 (interactive)
80df3b456672 (occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 6410
diff changeset
486 (let ((pos (occur-mode-find-occurrence)))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
487 (pop-to-buffer occur-buffer)
6608
e631a154dc3b (occur-mode-goto-occurrence): Delete excess close paren.
Richard M. Stallman <rms@gnu.org>
parents: 6607
diff changeset
488 (goto-char (marker-position pos))))
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
489
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
490 (defun occur-next (&optional n)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
491 "Move to the Nth (default 1) next match in the *Occur* buffer."
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
492 (interactive "p")
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
493 (if (not n) (setq n 1))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
494 (let ((r))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
495 (while (> n 0)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
496 (if (get-text-property (point) 'occur-point)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
497 (forward-char 1))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
498 (setq r (next-single-property-change (point) 'occur-point))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
499 (if r
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
500 (goto-char r)
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
501 (error "No more matches"))
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
502 (setq n (1- n)))))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
503
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
504
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
505
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
506 (defun occur-prev (&optional n)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
507 "Move to the Nth (default 1) previous match in the *Occur* buffer."
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
508 (interactive "p")
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
509 (if (not n) (setq n 1))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
510 (let ((r))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
511 (while (> n 0)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
512
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
513 (setq r (get-text-property (point) 'occur-point))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
514 (if r (forward-char -1))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
515
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
516 (setq r (previous-single-property-change (point) 'occur-point))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
517 (if r
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
518 (goto-char (- r 1))
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
519 (error "No earlier matches"))
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
520
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
521 (setq n (1- n)))))
2408
a9c05a12b615 (regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents: 2327
diff changeset
522
17664
d8cb277f0ce8 Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17655
diff changeset
523 (defcustom list-matching-lines-default-context-lines 0
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
524 "*Default number of context lines included around `list-matching-lines' matches.
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
525 A negative number means to include that many lines before the match.
17664
d8cb277f0ce8 Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17655
diff changeset
526 A positive number means to include that many lines both before and after."
d8cb277f0ce8 Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17655
diff changeset
527 :type 'integer
d8cb277f0ce8 Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17655
diff changeset
528 :group 'matching)
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
529
2571
b65cf676a09b All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2408
diff changeset
530 (defalias 'list-matching-lines 'occur)
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
531
16818
6de559d0b20f (list-matching-lines-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16758
diff changeset
532 (defvar list-matching-lines-face 'bold
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
533 "*Face used by \\[list-matching-lines] to show the text that matches.
16818
6de559d0b20f (list-matching-lines-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16758
diff changeset
534 If the value is nil, don't highlight the matching portions specially.")
6de559d0b20f (list-matching-lines-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16758
diff changeset
535
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
536 (defun occur (regexp &optional nlines)
1427
c49077849583 (occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents: 866
diff changeset
537 "Show all lines in the current buffer containing a match for REGEXP.
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
538
260
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
539 If a match spreads across multiple lines, all those lines are shown.
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
540
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
541 Each line is displayed with NLINES lines before and after, or -NLINES
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
542 before if NLINES is negative.
cbc9580b880f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 73
diff changeset
543 NLINES defaults to `list-matching-lines-default-context-lines'.
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
544 Interactively it is the prefix arg.
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
545
2408
a9c05a12b615 (regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents: 2327
diff changeset
546 The lines are shown in a buffer named `*Occur*'.
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
547 It serves as a menu to find any of the occurrences in this buffer.
17655
8e35bb3ec2e2 (occur-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents: 17638
diff changeset
548 \\<occur-mode-map>\\[describe-mode] in that buffer will explain how.
17638
9ece72836276 (occur): If regexp has uppercase in it, match it case-sensitively.
Richard M. Stallman <rms@gnu.org>
parents: 17211
diff changeset
549
17655
8e35bb3ec2e2 (occur-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents: 17638
diff changeset
550 If REGEXP contains upper case characters (excluding those preceded by `\\'),
8e35bb3ec2e2 (occur-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents: 17638
diff changeset
551 the matching is case-sensitive."
15040
04f81516b6e0 (occur): Fix up interactive code.
Richard M. Stallman <rms@gnu.org>
parents: 14819
diff changeset
552 (interactive
04f81516b6e0 (occur): Fix up interactive code.
Richard M. Stallman <rms@gnu.org>
parents: 14819
diff changeset
553 (list (let* ((default (car regexp-history))
04f81516b6e0 (occur): Fix up interactive code.
Richard M. Stallman <rms@gnu.org>
parents: 14819
diff changeset
554 (input
04f81516b6e0 (occur): Fix up interactive code.
Richard M. Stallman <rms@gnu.org>
parents: 14819
diff changeset
555 (read-from-minibuffer
04f81516b6e0 (occur): Fix up interactive code.
Richard M. Stallman <rms@gnu.org>
parents: 14819
diff changeset
556 (if default
04f81516b6e0 (occur): Fix up interactive code.
Richard M. Stallman <rms@gnu.org>
parents: 14819
diff changeset
557 (format "List lines matching regexp (default `%s'): "
04f81516b6e0 (occur): Fix up interactive code.
Richard M. Stallman <rms@gnu.org>
parents: 14819
diff changeset
558 default)
04f81516b6e0 (occur): Fix up interactive code.
Richard M. Stallman <rms@gnu.org>
parents: 14819
diff changeset
559 "List lines matching regexp: ")
20579
a30c6f1b3335 (occur): Pass default to read-from-minibuffer so that
Richard M. Stallman <rms@gnu.org>
parents: 20248
diff changeset
560 nil nil nil 'regexp-history default t)))
20860
1432a2b3c44e (occur): Apply default by hand after read-from-minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 20806
diff changeset
561 (and (equal input "") default
1432a2b3c44e (occur): Apply default by hand after read-from-minibuffer.
Richard M. Stallman <rms@gnu.org>
parents: 20806
diff changeset
562 (setq input default))
20579
a30c6f1b3335 (occur): Pass default to read-from-minibuffer so that
Richard M. Stallman <rms@gnu.org>
parents: 20248
diff changeset
563 input)
15040
04f81516b6e0 (occur): Fix up interactive code.
Richard M. Stallman <rms@gnu.org>
parents: 14819
diff changeset
564 current-prefix-arg))
30562
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
565 (let* ((nlines (if nlines
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
566 (prefix-numeric-value nlines)
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
567 list-matching-lines-default-context-lines))
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
568 (current-tab-width tab-width)
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
569 ;; Minimum width of line number plus trailing colon.
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
570 (min-line-number-width 6)
34290
2f5e050486ce (occur): Make line-number-width 1 smaller for the
Gerd Moellmann <gerd@gnu.org>
parents: 32036
diff changeset
571 ;; Width of line number prefix without the colon. Choose a
2f5e050486ce (occur): Make line-number-width 1 smaller for the
Gerd Moellmann <gerd@gnu.org>
parents: 32036
diff changeset
572 ;; width that's a multiple of `tab-width' in the original
2f5e050486ce (occur): Make line-number-width 1 smaller for the
Gerd Moellmann <gerd@gnu.org>
parents: 32036
diff changeset
573 ;; buffer so that lines in *Occur* appear right.
2f5e050486ce (occur): Make line-number-width 1 smaller for the
Gerd Moellmann <gerd@gnu.org>
parents: 32036
diff changeset
574 (line-number-width (1- (* (/ (- (+ min-line-number-width
2f5e050486ce (occur): Make line-number-width 1 smaller for the
Gerd Moellmann <gerd@gnu.org>
parents: 32036
diff changeset
575 tab-width)
2f5e050486ce (occur): Make line-number-width 1 smaller for the
Gerd Moellmann <gerd@gnu.org>
parents: 32036
diff changeset
576 1)
2f5e050486ce (occur): Make line-number-width 1 smaller for the
Gerd Moellmann <gerd@gnu.org>
parents: 32036
diff changeset
577 tab-width)
2f5e050486ce (occur): Make line-number-width 1 smaller for the
Gerd Moellmann <gerd@gnu.org>
parents: 32036
diff changeset
578 tab-width)))
30562
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
579 ;; Format string for line numbers.
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
580 (line-number-format (format "%%%dd" line-number-width))
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
581 (empty (make-string line-number-width ?\ ))
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
582 (first t)
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
583 ;;flag to prevent printing separator for first match
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
584 (occur-num-matches 0)
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
585 (buffer (current-buffer))
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
586 (dir default-directory)
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
587 (linenum 1)
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
588 (prevpos
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
589 ;;position of most recent match
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
590 (point-min))
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
591 (case-fold-search (and case-fold-search
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
592 (isearch-no-upper-case-p regexp t)))
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
593 (final-context-start
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
594 ;; Marker to the start of context immediately following
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
595 ;; the matched text in *Occur*.
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
596 (make-marker)))
1427
c49077849583 (occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents: 866
diff changeset
597 ;;; (save-excursion
c49077849583 (occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents: 866
diff changeset
598 ;;; (beginning-of-line)
c49077849583 (occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents: 866
diff changeset
599 ;;; (setq linenum (1+ (count-lines (point-min) (point))))
c49077849583 (occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents: 866
diff changeset
600 ;;; (setq prevpos (point)))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
601 (save-excursion
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
602 (goto-char (point-min))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
603 ;; Check first whether there are any matches at all.
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
604 (if (not (re-search-forward regexp nil t))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
605 (message "No matches for `%s'" regexp)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
606 ;; Back up, so the search loop below will find the first match.
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
607 (goto-char (match-beginning 0))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
608 (with-output-to-temp-buffer "*Occur*"
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
609 (save-excursion
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
610 (set-buffer standard-output)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
611 (setq default-directory dir)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
612 ;; We will insert the number of lines, and "lines", later.
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
613 (insert " matching ")
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
614 (let ((print-escape-newlines t))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
615 (prin1 regexp))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
616 (insert " in buffer " (buffer-name buffer) ?. ?\n)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
617 (occur-mode)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
618 (setq occur-buffer buffer)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
619 (setq occur-nlines nlines)
16864
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
620 (setq occur-command-arguments
59ed508195a4 (occur-mode-map): Bind g to revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 16819
diff changeset
621 (list regexp nlines)))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
622 (if (eq buffer standard-output)
13069
8197923b82ae (occur): Indent better for matches that contain newlines.
Richard M. Stallman <rms@gnu.org>
parents: 12109
diff changeset
623 (goto-char (point-max)))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
624 (save-excursion
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
625 ;; Find next match, but give up if prev match was at end of buffer.
36076
b7b3034a7f6d (occur): Stop at end of buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 34480
diff changeset
626 (while (and (not (eobp))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
627 (re-search-forward regexp nil t))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
628 (goto-char (match-beginning 0))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
629 (beginning-of-line)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
630 (save-match-data
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
631 (setq linenum (+ linenum (count-lines prevpos (point)))))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
632 (setq prevpos (point))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
633 (goto-char (match-end 0))
30562
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
634 (let* (;;start point of text in source buffer to be put
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
635 ;;into *Occur*
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
636 (start (save-excursion
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
637 (goto-char (match-beginning 0))
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
638 (forward-line (if (< nlines 0)
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
639 nlines
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
640 (- nlines)))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
641 (point)))
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
642 ;; end point of text in source buffer to be put
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
643 ;; into *Occur*
30562
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
644 (end (save-excursion
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
645 (goto-char (match-end 0))
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
646 (if (> nlines 0)
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
647 (forward-line (1+ nlines))
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
648 (forward-line 1))
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
649 (point)))
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
650 ;; Amount of context before matching text
30562
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
651 (match-beg (- (match-beginning 0) start))
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
652 ;; Length of matching text
30562
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
653 (match-len (- (match-end 0) (match-beginning 0)))
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
654 (tag (format line-number-format linenum))
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
655 tem
20658
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
656 insertion-start
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
657 ;; Number of lines of context to show for current match.
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
658 occur-marker
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
659 ;; Marker pointing to end of match in source buffer.
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
660 (text-beg
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
661 ;; Marker pointing to start of text for one
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
662 ;; match in *Occur*.
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
663 (make-marker))
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
664 (text-end
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
665 ;; Marker pointing to end of text for one match
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
666 ;; in *Occur*.
30562
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
667 (make-marker)))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
668 (save-excursion
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
669 (setq occur-marker (make-marker))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
670 (set-marker occur-marker (point))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
671 (set-buffer standard-output)
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
672 (setq occur-num-matches (1+ occur-num-matches))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
673 (or first (zerop nlines)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
674 (insert "--------\n"))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
675 (setq first nil)
30562
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
676 (save-excursion
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
677 (set-buffer "*Occur*")
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
678 (setq tab-width current-tab-width))
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
679
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
680 ;; Insert matching text including context lines from
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
681 ;; source buffer into *Occur*
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
682 (set-marker text-beg (point))
20658
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
683 (setq insertion-start (point))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
684 (insert-buffer-substring buffer start end)
20658
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
685 (or (and (/= (+ start match-beg) end)
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
686 (with-current-buffer buffer
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
687 (eq (char-before end) ?\n)))
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
688 (insert "\n"))
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
689 (set-marker final-context-start
20658
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
690 (+ (- (point) (- end (match-end 0)))
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
691 (if (save-excursion
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
692 (set-buffer buffer)
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
693 (save-excursion
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
694 (goto-char (match-end 0))
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
695 (end-of-line)
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
696 (bolp)))
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
697 1 0)))
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
698 (set-marker text-end (point))
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
699
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
700 ;; Highlight text that was matched.
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
701 (if list-matching-lines-face
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
702 (put-text-property
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
703 (+ (marker-position text-beg) match-beg)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
704 (+ (marker-position text-beg) match-beg match-len)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
705 'face list-matching-lines-face))
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
706
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
707 ;; `occur-point' property is used by occur-next and
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
708 ;; occur-prev to move between matching lines.
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
709 (put-text-property
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
710 (+ (marker-position text-beg) match-beg match-len)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
711 (+ (marker-position text-beg) match-beg match-len 1)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
712 'occur-point t)
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
713
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
714 ;; Now go back to the start of the matching text
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
715 ;; adding the space and colon to the start of each line.
20658
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
716 (goto-char insertion-start)
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
717 ;; Insert space and colon for lines of context before match.
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
718 (setq tem (if (< linenum nlines)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
719 (- nlines linenum)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
720 nlines))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
721 (while (> tem 0)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
722 (insert empty ?:)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
723 (forward-line 1)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
724 (setq tem (1- tem)))
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
725
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
726 ;; Insert line number and colon for the lines of
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
727 ;; matching text.
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
728 (let ((this-linenum linenum))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
729 (while (< (point) final-context-start)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
730 (if (null tag)
30562
0551caab4401 (occur): Set tab-width in the *Occur* buffer to the
Gerd Moellmann <gerd@gnu.org>
parents: 29971
diff changeset
731 (setq tag (format line-number-format this-linenum)))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
732 (insert tag ?:)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
733 (forward-line 1)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
734 (setq tag nil)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
735 (setq this-linenum (1+ this-linenum)))
20658
545fec062c8c (occur): If the matching line has no final newline,
Karl Heuer <kwzh@gnu.org>
parents: 20579
diff changeset
736 (while (and (not (eobp)) (<= (point) final-context-start))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
737 (insert empty ?:)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
738 (forward-line 1)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
739 (setq this-linenum (1+ this-linenum))))
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
740
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
741 ;; Insert space and colon for lines of context after match.
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
742 (while (and (< (point) (point-max)) (< tem nlines))
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
743 (insert empty ?:)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
744 (forward-line 1)
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
745 (setq tem (1+ tem)))
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
746
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
747 ;; Add text properties. The `occur' prop is used to
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
748 ;; store the marker of the matching text in the
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
749 ;; source buffer.
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
750 (put-text-property (marker-position text-beg)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
751 (- (marker-position text-end) 1)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
752 'mouse-face 'highlight)
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
753 (put-text-property (marker-position text-beg)
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
754 (marker-position text-end)
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
755 'occur occur-marker)
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
756 (goto-char (point-max)))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
757 (forward-line 1)))
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
758 (set-buffer standard-output)
18991
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
759 ;; Go back to top of *Occur* and finish off by printing the
2cf48aa123b8 (occur): Local variable line-start redundant.
Richard M. Stallman <rms@gnu.org>
parents: 18918
diff changeset
760 ;; number of matching lines.
14819
ece1210e739f (occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 14169
diff changeset
761 (goto-char (point-min))
15328
90dc960355d9 (occur): Avoid "1 lines" in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 15040
diff changeset
762 (let ((message-string
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
763 (if (= occur-num-matches 1)
15328
90dc960355d9 (occur): Avoid "1 lines" in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 15040
diff changeset
764 "1 line"
18918
0e0935f23d39 (occur): Use text property `occur' to store the
Richard M. Stallman <rms@gnu.org>
parents: 18443
diff changeset
765 (format "%d lines" occur-num-matches))))
15328
90dc960355d9 (occur): Avoid "1 lines" in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 15040
diff changeset
766 (insert message-string)
90dc960355d9 (occur): Avoid "1 lines" in echo area.
Richard M. Stallman <rms@gnu.org>
parents: 15040
diff changeset
767 (if (interactive-p)
22531
ab25969db484 (occur): Set buffer-read-only.
Karl Heuer <kwzh@gnu.org>
parents: 22353
diff changeset
768 (message "%s matched" message-string)))
ab25969db484 (occur): Set buffer-read-only.
Karl Heuer <kwzh@gnu.org>
parents: 22353
diff changeset
769 (setq buffer-read-only t)))))))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
770
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
771 ;; It would be nice to use \\[...], but there is no reasonable way
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
772 ;; to make that display both SPC and Y.
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
773 (defconst query-replace-help
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
774 "Type Space or `y' to replace one match, Delete or `n' to skip to next,
5337
0740b2a454d9 (query-replace-map): Don't bind ESC.
Richard M. Stallman <rms@gnu.org>
parents: 5298
diff changeset
775 RET or `q' to exit, Period to replace one match and exit,
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
776 Comma to replace but not move point immediately,
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
777 C-r to enter recursive edit (\\[exit-recursive-edit] to get out again),
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
778 C-w to delete match and recursive edit,
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
779 C-l to clear the screen, redisplay, and offer same replacement again,
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
780 ! to replace all remaining matches with no more questions,
28801
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
781 ^ to move point back to previous match,
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
782 E to edit the replacement string"
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
783 "Help message while in query-replace")
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
784
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
785 (defvar query-replace-map (make-sparse-keymap)
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
786 "Keymap that defines the responses to questions in `query-replace'.
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
787 The \"bindings\" in this map are not commands; they are answers.
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
788 The valid answers include `act', `skip', `act-and-show',
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
789 `exit', `act-and-exit', `edit', `delete-and-edit', `recenter',
10057
460fecc93446 (query-replace-map): Define \e and escape as exit-prefix.
Richard M. Stallman <rms@gnu.org>
parents: 9908
diff changeset
790 `automatic', `backup', `exit-prefix', and `help'.")
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
791
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
792 (define-key query-replace-map " " 'act)
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
793 (define-key query-replace-map "\d" 'skip)
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
794 (define-key query-replace-map [delete] 'skip)
2327
61b35714d880 (query-replace-map): Define backspace like delete.
Richard M. Stallman <rms@gnu.org>
parents: 2315
diff changeset
795 (define-key query-replace-map [backspace] 'skip)
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
796 (define-key query-replace-map "y" 'act)
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
797 (define-key query-replace-map "n" 'skip)
9908
32d20ec5ed51 (query-replace-map): Bind Y and N like y and n.
Richard M. Stallman <rms@gnu.org>
parents: 9847
diff changeset
798 (define-key query-replace-map "Y" 'act)
32d20ec5ed51 (query-replace-map): Bind Y and N like y and n.
Richard M. Stallman <rms@gnu.org>
parents: 9847
diff changeset
799 (define-key query-replace-map "N" 'skip)
29971
939e6ca411e9 (query-replace-map): Bind `e' like `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 29952
diff changeset
800 (define-key query-replace-map "e" 'edit-replacement)
28801
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
801 (define-key query-replace-map "E" 'edit-replacement)
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
802 (define-key query-replace-map "," 'act-and-show)
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
803 (define-key query-replace-map "q" 'exit)
3852
e365900ca7e7 * replace.el (query-replace-map): Make return exit query-replace,
Jim Blandy <jimb@redhat.com>
parents: 2709
diff changeset
804 (define-key query-replace-map "\r" 'exit)
3885
d89645572b0f * replace.el (query-replace-map): Fix typo in binding for [return].
Jim Blandy <jimb@redhat.com>
parents: 3852
diff changeset
805 (define-key query-replace-map [return] 'exit)
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
806 (define-key query-replace-map "." 'act-and-exit)
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
807 (define-key query-replace-map "\C-r" 'edit)
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
808 (define-key query-replace-map "\C-w" 'delete-and-edit)
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
809 (define-key query-replace-map "\C-l" 'recenter)
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
810 (define-key query-replace-map "!" 'automatic)
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
811 (define-key query-replace-map "^" 'backup)
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
812 (define-key query-replace-map "\C-h" 'help)
12109
6be53feb3323 (query-replace-map): Bind f1 and help.
Karl Heuer <kwzh@gnu.org>
parents: 11314
diff changeset
813 (define-key query-replace-map [f1] 'help)
6be53feb3323 (query-replace-map): Bind f1 and help.
Karl Heuer <kwzh@gnu.org>
parents: 11314
diff changeset
814 (define-key query-replace-map [help] 'help)
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
815 (define-key query-replace-map "?" 'help)
2083
ff782069e797 (query-replace-map): Add `quit' bindings. Delete default binding.
Richard M. Stallman <rms@gnu.org>
parents: 2080
diff changeset
816 (define-key query-replace-map "\C-g" 'quit)
ff782069e797 (query-replace-map): Add `quit' bindings. Delete default binding.
Richard M. Stallman <rms@gnu.org>
parents: 2080
diff changeset
817 (define-key query-replace-map "\C-]" 'quit)
10057
460fecc93446 (query-replace-map): Define \e and escape as exit-prefix.
Richard M. Stallman <rms@gnu.org>
parents: 9908
diff changeset
818 (define-key query-replace-map "\e" 'exit-prefix)
460fecc93446 (query-replace-map): Define \e and escape as exit-prefix.
Richard M. Stallman <rms@gnu.org>
parents: 9908
diff changeset
819 (define-key query-replace-map [escape] 'exit-prefix)
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
820
25167
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
821 (defun replace-match-string-symbols (n)
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
822 "Process a list (and any sub-lists), expanding certain symbols.
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
823 Symbol Expands To
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
824 N (match-string N) (where N is a string of digits)
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
825 #N (string-to-number (match-string N))
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
826 & (match-string 0)
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
827 #& (string-to-number (match-string 0))
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
828
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
829 Note that these symbols must be preceeded by a backslash in order to
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
830 type them."
25167
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
831 (while n
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
832 (cond
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
833 ((consp (car n))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
834 (replace-match-string-symbols (car n))) ;Process sub-list
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
835 ((symbolp (car n))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
836 (let ((name (symbol-name (car n))))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
837 (cond
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
838 ((string-match "^[0-9]+$" name)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
839 (setcar n (list 'match-string (string-to-number name))))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
840 ((string-match "^#[0-9]+$" name)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
841 (setcar n (list 'string-to-number
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
842 (list 'match-string
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
843 (string-to-number (substring name 1))))))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
844 ((string= "&" name)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
845 (setcar n '(match-string 0)))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
846 ((string= "#&" name)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
847 (setcar n '(string-to-number (match-string 0))))))))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
848 (setq n (cdr n))))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
849
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
850 (defun replace-eval-replacement (expression replace-count)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
851 (let ((replacement (eval expression)))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
852 (if (stringp replacement)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
853 replacement
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
854 (prin1-to-string replacement t))))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
855
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
856 (defun replace-loop-through-replacements (data replace-count)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
857 ;; DATA is a vector contaning the following values:
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
858 ;; 0 next-rotate-count
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
859 ;; 1 repeat-count
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
860 ;; 2 next-replacement
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
861 ;; 3 replacements
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
862 (if (= (aref data 0) replace-count)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
863 (progn
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
864 (aset data 0 (+ replace-count (aref data 1)))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
865 (let ((next (cdr (aref data 2))))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
866 (aset data 2 (if (consp next) next (aref data 3))))))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
867 (car (aref data 2)))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
868
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
869 (defun perform-replace (from-string replacements start end
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
870 query-flag regexp-flag delimited-flag
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
871 &optional repeat-count map)
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
872 "Subroutine of `query-replace'. Its complexity handles interactive queries.
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
873 Don't use this in your own program unless you want to query and set the mark
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
874 just as `query-replace' does. Instead, write a simple loop like this:
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
875 (while (re-search-forward \"foo[ \t]+bar\" nil t)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
876 (replace-match \"foobar\" nil nil))
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
877 which will run faster and probably do exactly what you want."
2080
6ee99287dbc6 (query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents: 1820
diff changeset
878 (or map (setq map query-replace-map))
16631
024d3847af99 (perform-replace): Obey minibuffer-auto-raise.
Richard M. Stallman <rms@gnu.org>
parents: 16129
diff changeset
879 (and query-flag minibuffer-auto-raise
024d3847af99 (perform-replace): Obey minibuffer-auto-raise.
Richard M. Stallman <rms@gnu.org>
parents: 16129
diff changeset
880 (raise-frame (window-frame (minibuffer-window))))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
881 (let ((nocasify (not (and case-fold-search case-replace
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
882 (string-equal from-string
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
883 (downcase from-string)))))
25039
7a53fe8294bf (perform-replace): Turn off case-fold-search
Karl Heuer <kwzh@gnu.org>
parents: 23457
diff changeset
884 (case-fold-search (and case-fold-search
7a53fe8294bf (perform-replace): Turn off case-fold-search
Karl Heuer <kwzh@gnu.org>
parents: 23457
diff changeset
885 (string-equal from-string
7a53fe8294bf (perform-replace): Turn off case-fold-search
Karl Heuer <kwzh@gnu.org>
parents: 23457
diff changeset
886 (downcase from-string))))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
887 (literal (not regexp-flag))
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
888 (search-function (if regexp-flag 're-search-forward 'search-forward))
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
889 (search-string from-string)
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 658
diff changeset
890 (real-match-data nil) ; the match data for the current match
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
891 (next-replacement nil)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
892 (keep-going t)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
893 (stack nil)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
894 (replace-count 0)
18433
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
895 (nonempty-match nil)
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
896
20248
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
897 ;; If non-nil, it is marker saying where in the buffer to stop.
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
898 (limit nil)
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
899
18433
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
900 ;; Data for the next match. If a cons, it has the same format as
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
901 ;; (match-data); otherwise it is t if a match is possible at point.
16725
cdc897a9054f (perform-replace): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 16713
diff changeset
902 (match-again t)
18433
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
903
7258
68c7b93914fe (perform-replace): Call substitute-command-keys just once
Richard M. Stallman <rms@gnu.org>
parents: 6722
diff changeset
904 (message
68c7b93914fe (perform-replace): Call substitute-command-keys just once
Richard M. Stallman <rms@gnu.org>
parents: 6722
diff changeset
905 (if query-flag
68c7b93914fe (perform-replace): Call substitute-command-keys just once
Richard M. Stallman <rms@gnu.org>
parents: 6722
diff changeset
906 (substitute-command-keys
68c7b93914fe (perform-replace): Call substitute-command-keys just once
Richard M. Stallman <rms@gnu.org>
parents: 6722
diff changeset
907 "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) "))))
20248
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
908
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
909 ;; If region is active, in Transient Mark mode, operate on region.
28706
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
910 (when start
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
911 (setq limit (copy-marker (max start end)))
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
912 (goto-char (min start end))
29790e97da09 (perform-replace): Add parameters START and END. Use
Gerd Moellmann <gerd@gnu.org>
parents: 28502
diff changeset
913 (deactivate-mark))
25167
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
914
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
915 ;; REPLACEMENTS is either a string, a list of strings, or a cons cell
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
916 ;; containing a function and its first argument. The function is
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
917 ;; called to generate each replacement like this:
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
918 ;; (funcall (car replacements) (cdr replacements) replace-count)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
919 ;; It must return a string.
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
920 (cond
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
921 ((stringp replacements)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
922 (setq next-replacement replacements
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
923 replacements nil))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
924 ((stringp (car replacements)) ; If it isn't a string, it must be a cons
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
925 (or repeat-count (setq repeat-count 1))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
926 (setq replacements (cons 'replace-loop-through-replacements
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
927 (vector repeat-count repeat-count
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
928 replacements replacements)))))
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
929
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
930 (if delimited-flag
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
931 (setq search-function 're-search-forward
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
932 search-string (concat "\\b"
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
933 (if regexp-flag from-string
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
934 (regexp-quote from-string))
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
935 "\\b")))
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
936 (push-mark)
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
937 (undo-boundary)
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
938 (unwind-protect
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
939 ;; Loop finding occurrences that perhaps should be replaced.
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
940 (while (and keep-going
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
941 (not (eobp))
18433
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
942 ;; Use the next match if it is already known;
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
943 ;; otherwise, search for a match after moving forward
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
944 ;; one char if progress is required.
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
945 (setq real-match-data
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
946 (if (consp match-again)
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
947 (progn (goto-char (nth 1 match-again))
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
948 match-again)
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
949 (and (or match-again
29952
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
950 ;; MATCH-AGAIN non-nil means we
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
951 ;; accept an adjacent match. If
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
952 ;; we don't, move one char to the
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
953 ;; right. This takes us a
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
954 ;; character too far at the end,
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
955 ;; but this is undone after the
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
956 ;; while-loop.
28502
3e4e6d45a774 (perform-replace): Don't move forward one char
Gerd Moellmann <gerd@gnu.org>
parents: 27391
diff changeset
957 (progn (forward-char 1) (not (eobp))))
20248
b87f3ba0e1d7 (perform-replace): In Transient Mark mode, if
Karl Heuer <kwzh@gnu.org>
parents: 20244
diff changeset
958 (funcall search-function search-string limit t)
18433
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
959 ;; For speed, use only integers and
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
960 ;; reuse the list used last time.
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
961 (match-data t real-match-data)))))
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 658
diff changeset
962
18433
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
963 ;; Record whether the match is nonempty, to avoid an infinite loop
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
964 ;; repeatedly matching the same empty string.
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
965 (setq nonempty-match
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
966 (/= (nth 0 real-match-data) (nth 1 real-match-data)))
16725
cdc897a9054f (perform-replace): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 16713
diff changeset
967
34480
816fa0390935 (perform-replace): Don't use an empty match adjacent
Gerd Moellmann <gerd@gnu.org>
parents: 34290
diff changeset
968 ;; If the match is empty, record that the next one can't be
816fa0390935 (perform-replace): Don't use an empty match adjacent
Gerd Moellmann <gerd@gnu.org>
parents: 34290
diff changeset
969 ;; adjacent.
816fa0390935 (perform-replace): Don't use an empty match adjacent
Gerd Moellmann <gerd@gnu.org>
parents: 34290
diff changeset
970
18433
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
971 ;; Otherwise, if matching a regular expression, do the next
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
972 ;; match now, since the replacement for this match may
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
973 ;; affect whether the next match is adjacent to this one.
34480
816fa0390935 (perform-replace): Don't use an empty match adjacent
Gerd Moellmann <gerd@gnu.org>
parents: 34290
diff changeset
974 ;; If that match is empty, don't use it.
18433
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
975 (setq match-again
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
976 (and nonempty-match
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
977 (or (not regexp-flag)
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
978 (and (looking-at search-string)
34480
816fa0390935 (perform-replace): Don't use an empty match adjacent
Gerd Moellmann <gerd@gnu.org>
parents: 34290
diff changeset
979 (let ((match (match-data)))
816fa0390935 (perform-replace): Don't use an empty match adjacent
Gerd Moellmann <gerd@gnu.org>
parents: 34290
diff changeset
980 (and (/= (nth 0 match) (nth 1 match))
816fa0390935 (perform-replace): Don't use an empty match adjacent
Gerd Moellmann <gerd@gnu.org>
parents: 34290
diff changeset
981 match))))))
18433
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
982
25167
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
983 ;; Calculate the replacement string, if necessary.
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
984 (when replacements
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
985 (set-match-data real-match-data)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
986 (setq next-replacement
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
987 (funcall (car replacements) (cdr replacements)
8a881b02ea7b (query-replace-regexp-eval)
Richard M. Stallman <rms@gnu.org>
parents: 25039
diff changeset
988 replace-count)))
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
989 (if (not query-flag)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
990 (progn
21157
59f75e1f5541 (perform-replace): store-match-data => set-match-data.
Richard M. Stallman <rms@gnu.org>
parents: 20860
diff changeset
991 (set-match-data real-match-data)
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
992 (replace-match next-replacement nocasify literal)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
993 (setq replace-count (1+ replace-count)))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
994 (undo-boundary)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
995 (let (done replaced key def)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
996 ;; Loop reading commands until one of them sets done,
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
997 ;; which means it has finished handling this occurrence.
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
998 (while (not done)
21157
59f75e1f5541 (perform-replace): store-match-data => set-match-data.
Richard M. Stallman <rms@gnu.org>
parents: 20860
diff changeset
999 (set-match-data real-match-data)
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1000 (replace-highlight (match-beginning 0) (match-end 0))
10566
9f018a8f2f67 (perform-replace): Don't log the repetitive prompts.
Karl Heuer <kwzh@gnu.org>
parents: 10267
diff changeset
1001 ;; Bind message-log-max so we don't fill up the message log
9f018a8f2f67 (perform-replace): Don't log the repetitive prompts.
Karl Heuer <kwzh@gnu.org>
parents: 10267
diff changeset
1002 ;; with a bunch of identical messages.
9f018a8f2f67 (perform-replace): Don't log the repetitive prompts.
Karl Heuer <kwzh@gnu.org>
parents: 10267
diff changeset
1003 (let ((message-log-max nil))
9f018a8f2f67 (perform-replace): Don't log the repetitive prompts.
Karl Heuer <kwzh@gnu.org>
parents: 10267
diff changeset
1004 (message message from-string next-replacement))
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1005 (setq key (read-event))
17933
a7579056d62e (perform-replace): Restore match data after read-event.
Richard M. Stallman <rms@gnu.org>
parents: 17664
diff changeset
1006 ;; Necessary in case something happens during read-event
a7579056d62e (perform-replace): Restore match data after read-event.
Richard M. Stallman <rms@gnu.org>
parents: 17664
diff changeset
1007 ;; that clobbers the match data.
21157
59f75e1f5541 (perform-replace): store-match-data => set-match-data.
Richard M. Stallman <rms@gnu.org>
parents: 20860
diff changeset
1008 (set-match-data real-match-data)
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1009 (setq key (vector key))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1010 (setq def (lookup-key map key))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1011 ;; Restore the match data while we process the command.
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1012 (cond ((eq def 'help)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1013 (with-output-to-temp-buffer "*Help*"
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1014 (princ
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1015 (concat "Query replacing "
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1016 (if regexp-flag "regexp " "")
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1017 from-string " with "
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1018 next-replacement ".\n\n"
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1019 (substitute-command-keys
9847
dc6c0b5fa4f0 (perform-replace): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents: 8935
diff changeset
1020 query-replace-help)))
dc6c0b5fa4f0 (perform-replace): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents: 8935
diff changeset
1021 (save-excursion
dc6c0b5fa4f0 (perform-replace): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents: 8935
diff changeset
1022 (set-buffer standard-output)
dc6c0b5fa4f0 (perform-replace): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents: 8935
diff changeset
1023 (help-mode))))
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1024 ((eq def 'exit)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1025 (setq keep-going nil)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1026 (setq done t))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1027 ((eq def 'backup)
5905
a068f8b61f2a (perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents: 5393
diff changeset
1028 (if stack
a068f8b61f2a (perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents: 5393
diff changeset
1029 (let ((elt (car stack)))
a068f8b61f2a (perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents: 5393
diff changeset
1030 (goto-char (car elt))
a068f8b61f2a (perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents: 5393
diff changeset
1031 (setq replaced (eq t (cdr elt)))
a068f8b61f2a (perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents: 5393
diff changeset
1032 (or replaced
21157
59f75e1f5541 (perform-replace): store-match-data => set-match-data.
Richard M. Stallman <rms@gnu.org>
parents: 20860
diff changeset
1033 (set-match-data (cdr elt)))
5905
a068f8b61f2a (perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents: 5393
diff changeset
1034 (setq stack (cdr stack)))
a068f8b61f2a (perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents: 5393
diff changeset
1035 (message "No previous match")
a068f8b61f2a (perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents: 5393
diff changeset
1036 (ding 'no-terminate)
a068f8b61f2a (perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents: 5393
diff changeset
1037 (sit-for 1)))
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1038 ((eq def 'act)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1039 (or replaced
16129
f6c51da4c4e3 (perform-replace): Increment replace-count
Richard M. Stallman <rms@gnu.org>
parents: 15328
diff changeset
1040 (progn
f6c51da4c4e3 (perform-replace): Increment replace-count
Richard M. Stallman <rms@gnu.org>
parents: 15328
diff changeset
1041 (replace-match next-replacement nocasify literal)
f6c51da4c4e3 (perform-replace): Increment replace-count
Richard M. Stallman <rms@gnu.org>
parents: 15328
diff changeset
1042 (setq replace-count (1+ replace-count))))
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1043 (setq done t replaced t))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1044 ((eq def 'act-and-exit)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1045 (or replaced
16129
f6c51da4c4e3 (perform-replace): Increment replace-count
Richard M. Stallman <rms@gnu.org>
parents: 15328
diff changeset
1046 (progn
f6c51da4c4e3 (perform-replace): Increment replace-count
Richard M. Stallman <rms@gnu.org>
parents: 15328
diff changeset
1047 (replace-match next-replacement nocasify literal)
f6c51da4c4e3 (perform-replace): Increment replace-count
Richard M. Stallman <rms@gnu.org>
parents: 15328
diff changeset
1048 (setq replace-count (1+ replace-count))))
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1049 (setq keep-going nil)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1050 (setq done t replaced t))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1051 ((eq def 'act-and-show)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1052 (if (not replaced)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1053 (progn
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1054 (replace-match next-replacement nocasify literal)
16129
f6c51da4c4e3 (perform-replace): Increment replace-count
Richard M. Stallman <rms@gnu.org>
parents: 15328
diff changeset
1055 (setq replace-count (1+ replace-count))
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1056 (setq replaced t))))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1057 ((eq def 'automatic)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1058 (or replaced
16129
f6c51da4c4e3 (perform-replace): Increment replace-count
Richard M. Stallman <rms@gnu.org>
parents: 15328
diff changeset
1059 (progn
f6c51da4c4e3 (perform-replace): Increment replace-count
Richard M. Stallman <rms@gnu.org>
parents: 15328
diff changeset
1060 (replace-match next-replacement nocasify literal)
f6c51da4c4e3 (perform-replace): Increment replace-count
Richard M. Stallman <rms@gnu.org>
parents: 15328
diff changeset
1061 (setq replace-count (1+ replace-count))))
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1062 (setq done t query-flag nil replaced t))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1063 ((eq def 'skip)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1064 (setq done t))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1065 ((eq def 'recenter)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1066 (recenter nil))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1067 ((eq def 'edit)
23384
a194e59ab82c (perform-replace): Position point properly
Karl Heuer <kwzh@gnu.org>
parents: 22972
diff changeset
1068 (let ((opos (point-marker)))
a194e59ab82c (perform-replace): Position point properly
Karl Heuer <kwzh@gnu.org>
parents: 22972
diff changeset
1069 (goto-char (match-beginning 0))
a194e59ab82c (perform-replace): Position point properly
Karl Heuer <kwzh@gnu.org>
parents: 22972
diff changeset
1070 (save-excursion
a194e59ab82c (perform-replace): Position point properly
Karl Heuer <kwzh@gnu.org>
parents: 22972
diff changeset
1071 (funcall search-function search-string limit t)
a194e59ab82c (perform-replace): Position point properly
Karl Heuer <kwzh@gnu.org>
parents: 22972
diff changeset
1072 (setq real-match-data (match-data)))
a194e59ab82c (perform-replace): Position point properly
Karl Heuer <kwzh@gnu.org>
parents: 22972
diff changeset
1073 (save-excursion (recursive-edit))
a194e59ab82c (perform-replace): Position point properly
Karl Heuer <kwzh@gnu.org>
parents: 22972
diff changeset
1074 (goto-char opos))
21294
e010f1191668 (perform-replace): Before recursive edit,
Richard M. Stallman <rms@gnu.org>
parents: 21157
diff changeset
1075 (set-match-data real-match-data)
16725
cdc897a9054f (perform-replace): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 16713
diff changeset
1076 ;; Before we make the replacement,
cdc897a9054f (perform-replace): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 16713
diff changeset
1077 ;; decide whether the search string
cdc897a9054f (perform-replace): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 16713
diff changeset
1078 ;; can match again just after this match.
18433
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
1079 (if (and regexp-flag nonempty-match)
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
1080 (setq match-again (and (looking-at search-string)
18443
393843d18bec (perform-replace): When matching lookahead, use markers rather than
Paul Eggert <eggert@twinsun.com>
parents: 18433
diff changeset
1081 (match-data)))))
28801
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
1082
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
1083 ;; Edit replacement.
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
1084 ((eq def 'edit-replacement)
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
1085 (setq next-replacement
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
1086 (read-input "Edit replacement string: "
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
1087 next-replacement))
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
1088 (or replaced
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
1089 (replace-match next-replacement nocasify literal))
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
1090 (setq done t))
be3f5fa41e90 (query-replace-map): Add binding for `E'.
Gerd Moellmann <gerd@gnu.org>
parents: 28706
diff changeset
1091
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1092 ((eq def 'delete-and-edit)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1093 (delete-region (match-beginning 0) (match-end 0))
21157
59f75e1f5541 (perform-replace): store-match-data => set-match-data.
Richard M. Stallman <rms@gnu.org>
parents: 20860
diff changeset
1094 (set-match-data
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1095 (prog1 (match-data)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1096 (save-excursion (recursive-edit))))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1097 (setq replaced t))
10057
460fecc93446 (query-replace-map): Define \e and escape as exit-prefix.
Richard M. Stallman <rms@gnu.org>
parents: 9908
diff changeset
1098 ;; Note: we do not need to treat `exit-prefix'
460fecc93446 (query-replace-map): Define \e and escape as exit-prefix.
Richard M. Stallman <rms@gnu.org>
parents: 9908
diff changeset
1099 ;; specially here, since we reread
460fecc93446 (query-replace-map): Define \e and escape as exit-prefix.
Richard M. Stallman <rms@gnu.org>
parents: 9908
diff changeset
1100 ;; any unrecognized character.
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1101 (t
10057
460fecc93446 (query-replace-map): Define \e and escape as exit-prefix.
Richard M. Stallman <rms@gnu.org>
parents: 9908
diff changeset
1102 (setq this-command 'mode-exited)
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1103 (setq keep-going nil)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1104 (setq unread-command-events
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1105 (append (listify-key-sequence key)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1106 unread-command-events))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1107 (setq done t))))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1108 ;; Record previous position for ^ when we move on.
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1109 ;; Change markers to numbers in the match data
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1110 ;; since lots of markers slow down editing.
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1111 (setq stack
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1112 (cons (cons (point)
16758
bbe21b1c17a7 (perform-replace): Request integers from match-data,
Richard M. Stallman <rms@gnu.org>
parents: 16725
diff changeset
1113 (or replaced (match-data t)))
18433
1de7cef26431 (perform-replace): When matching regexps, if the next match is
Paul Eggert <eggert@twinsun.com>
parents: 17933
diff changeset
1114 stack)))))
29952
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
1115
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
1116 ;; The code preventing adjacent regexp matches in the condition
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
1117 ;; of the while-loop above will haven taken us one character
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
1118 ;; beyond the last replacement. Undo that.
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
1119 (when (and regexp-flag (not match-again) (> replace-count 0))
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
1120 (backward-char 1))
3e2589e69a8a (perform-replace): Undo change of 2000-04-04.
Gerd Moellmann <gerd@gnu.org>
parents: 29051
diff changeset
1121
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1122 (replace-dehighlight))
10157
7953cde9d951 (perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents: 10155
diff changeset
1123 (or unread-command-events
7953cde9d951 (perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents: 10155
diff changeset
1124 (message "Replaced %d occurrence%s"
7953cde9d951 (perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents: 10155
diff changeset
1125 replace-count
7953cde9d951 (perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents: 10155
diff changeset
1126 (if (= replace-count 1) "" "s")))
7953cde9d951 (perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents: 10155
diff changeset
1127 (and keep-going stack)))
61
20f2a7720e65 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1128
20244
6fbf1436a7f4 (query-replace-highlight): Change default to t.
Karl Heuer <kwzh@gnu.org>
parents: 19551
diff changeset
1129 (defcustom query-replace-highlight t
17664
d8cb277f0ce8 Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17655
diff changeset
1130 "*Non-nil means to highlight words during query replacement."
d8cb277f0ce8 Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17655
diff changeset
1131 :type 'boolean
d8cb277f0ce8 Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17655
diff changeset
1132 :group 'matching)
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1133
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1134 (defvar replace-overlay nil)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1135
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1136 (defun replace-dehighlight ()
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1137 (and replace-overlay
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1138 (progn
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1139 (delete-overlay replace-overlay)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1140 (setq replace-overlay nil))))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1141
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1142 (defun replace-highlight (start end)
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1143 (and query-replace-highlight
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1144 (progn
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1145 (or replace-overlay
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1146 (progn
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1147 (setq replace-overlay (make-overlay start end))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1148 (overlay-put replace-overlay 'face
29051
c45f6793d6ab Doc and error message fixes.
Dave Love <fx@gnu.org>
parents: 28801
diff changeset
1149 (if (facep 'query-replace)
5393
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1150 'query-replace 'region))))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1151 (move-overlay replace-overlay start end (current-buffer)))))
cfd16a1af914 (query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5337
diff changeset
1152
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 324
diff changeset
1153 ;;; replace.el ends here