Mercurial > emacs
annotate lisp/replace.el @ 14870:c51cef393dae
(timer-set-time): Don't set usecs to nil.
(timer-duration): Return nil if junk at end of string.
Handle just a number--treat it as number of seconds.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 24 Mar 1996 02:05:38 +0000 |
parents | ece1210e739f |
children | 04f81516b6e0 |
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 |
14819
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1987, 1992, 1994, 1996 Free Software Foundation, Inc. |
61 | 4 |
5 ;; This file is part of GNU Emacs. | |
6 | |
7 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
8 ;; it under the terms of the GNU General Public License as published by | |
732 | 9 ;; the Free Software Foundation; either version 2, or (at your option) |
61 | 10 ;; any later version. |
11 | |
12 ;; GNU Emacs is distributed in the hope that it will be useful, | |
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 ;; GNU General Public License for more details. | |
16 | |
17 ;; You should have received a copy of the GNU General Public License | |
14169 | 18 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
19 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 ;; Boston, MA 02111-1307, USA. | |
61 | 21 |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2156
diff
changeset
|
22 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2156
diff
changeset
|
23 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2156
diff
changeset
|
24 ;; 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
|
25 ;; documented in the Emacs user's manual. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2156
diff
changeset
|
26 |
788
c8d4eb38ebfc
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
27 ;;; Code: |
61 | 28 |
268 | 29 (defconst case-replace t "\ |
30 *Non-nil means query-replace should preserve case in replacements.") | |
264 | 31 |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
32 (defvar query-replace-history nil) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
33 |
8935
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
34 (defvar query-replace-interactive nil |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
35 "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
|
36 That becomes the \"string to replace\".") |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
37 |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
38 (defun query-replace-read-args (string regexp-flag) |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
39 (let (from to) |
8935
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
40 (if query-replace-interactive |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
41 (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
|
42 (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
|
43 nil nil nil |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
44 'query-replace-history))) |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
45 (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
|
46 nil nil nil |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
47 'query-replace-history)) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
48 (list from to current-prefix-arg))) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
49 |
260 | 50 (defun query-replace (from-string to-string &optional arg) |
51 "Replace some occurrences of FROM-STRING with TO-STRING. | |
52 As each match is found, the user must type a character saying | |
53 what to do with it. For directions, type \\[help-command] at that time. | |
54 | |
8935
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
55 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
|
56 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
|
57 minibuffer. |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
58 |
6707 | 59 Preserves case in each replacement if `case-replace' and `case-fold-search' |
260 | 60 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
|
61 \(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
|
62 then its replacement is upcased or capitalized.) |
8a04af3511c1
(replace-string, query-replace): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10069
diff
changeset
|
63 |
6707 | 64 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
|
65 only matches surrounded by word boundaries. |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
66 |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
67 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
|
68 (interactive (query-replace-read-args "Query replace" nil)) |
10157
7953cde9d951
(perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents:
10155
diff
changeset
|
69 (perform-replace from-string to-string t nil arg)) |
268 | 70 (define-key esc-map "%" 'query-replace) |
260 | 71 |
72 (defun query-replace-regexp (regexp to-string &optional arg) | |
73 "Replace some things after point matching REGEXP with TO-STRING. | |
74 As each match is found, the user must type a character saying | |
75 what to do with it. For directions, type \\[help-command] at that time. | |
76 | |
8935
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
77 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
|
78 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
|
79 minibuffer. |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
80 |
6707 | 81 Preserves case in each replacement if `case-replace' and `case-fold-search' |
260 | 82 are non-nil and REGEXP has no uppercase letters. |
6707 | 83 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace |
260 | 84 only matches surrounded by word boundaries. |
6707 | 85 In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP, |
86 and `\\=\\N' (where N is a digit) stands for | |
87 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
|
88 (interactive (query-replace-read-args "Query replace regexp" t)) |
10157
7953cde9d951
(perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents:
10155
diff
changeset
|
89 (perform-replace regexp to-string t t arg)) |
260 | 90 |
91 (defun map-query-replace-regexp (regexp to-strings &optional arg) | |
92 "Replace some matches for REGEXP with various strings, in rotation. | |
93 The second argument TO-STRINGS contains the replacement strings, separated | |
94 by spaces. This command works like `query-replace-regexp' except | |
95 that each successive replacement uses the next successive replacement string, | |
96 wrapping around from the last such string to the first. | |
97 | |
98 Non-interactively, TO-STRINGS may be a list of replacement strings. | |
99 | |
8935
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
100 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
|
101 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
|
102 |
260 | 103 A prefix argument N says to use each replacement string N times |
104 before rotating to the next." | |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
105 (interactive |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
106 (let (from to) |
8935
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
107 (setq from (if query-replace-interactive |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
108 (car regexp-search-ring) |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
109 (read-from-minibuffer "Map query replace (regexp): " |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
110 nil nil nil |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
111 'query-replace-history))) |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
112 (setq to (read-from-minibuffer |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
113 (format "Query replace %s with (space-separated strings): " |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
114 from) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
115 nil nil nil |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
116 'query-replace-history)) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
117 (list from to current-prefix-arg))) |
260 | 118 (let (replacements) |
119 (if (listp to-strings) | |
120 (setq replacements to-strings) | |
121 (while (/= (length to-strings) 0) | |
122 (if (string-match " " to-strings) | |
123 (setq replacements | |
124 (append replacements | |
125 (list (substring to-strings 0 | |
126 (string-match " " to-strings)))) | |
127 to-strings (substring to-strings | |
128 (1+ (string-match " " to-strings)))) | |
129 (setq replacements (append replacements (list to-strings)) | |
130 to-strings "")))) | |
10157
7953cde9d951
(perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents:
10155
diff
changeset
|
131 (perform-replace regexp replacements t t nil arg))) |
260 | 132 |
133 (defun replace-string (from-string to-string &optional delimited) | |
134 "Replace occurrences of FROM-STRING with TO-STRING. | |
135 Preserve case in each match if `case-replace' and `case-fold-search' | |
136 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
|
137 \(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
|
138 then its replacement is upcased or capitalized.) |
8a04af3511c1
(replace-string, query-replace): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
10069
diff
changeset
|
139 |
6707 | 140 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace |
260 | 141 only matches surrounded by word boundaries. |
142 | |
8935
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
143 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
|
144 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
|
145 minibuffer. |
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
146 |
260 | 147 This function is usually the wrong thing to use in a Lisp program. |
148 What you probably want is a loop like this: | |
6707 | 149 (while (search-forward FROM-STRING nil t) |
150 (replace-match TO-STRING nil t)) | |
260 | 151 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
|
152 (interactive (query-replace-read-args "Replace string" nil)) |
10157
7953cde9d951
(perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents:
10155
diff
changeset
|
153 (perform-replace from-string to-string nil nil delimited)) |
260 | 154 |
155 (defun replace-regexp (regexp to-string &optional delimited) | |
156 "Replace things after point matching REGEXP with TO-STRING. | |
6707 | 157 Preserve case in each match if `case-replace' and `case-fold-search' |
260 | 158 are non-nil and REGEXP has no uppercase letters. |
6707 | 159 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace |
260 | 160 only matches surrounded by word boundaries. |
6707 | 161 In TO-STRING, `\\&' stands for whatever matched the whole of REGEXP, |
162 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
|
163 whatever what matched the Nth `\\(...\\)' in REGEXP. |
260 | 164 |
8935
0e9e6ff083e8
(query-replace-interactive): New user option.
Richard M. Stallman <rms@gnu.org>
parents:
8664
diff
changeset
|
165 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
|
166 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
|
167 |
260 | 168 This function is usually the wrong thing to use in a Lisp program. |
169 What you probably want is a loop like this: | |
170 (while (re-search-forward REGEXP nil t) | |
6707 | 171 (replace-match TO-STRING nil nil)) |
260 | 172 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
|
173 (interactive (query-replace-read-args "Replace regexp" t)) |
10157
7953cde9d951
(perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents:
10155
diff
changeset
|
174 (perform-replace regexp to-string nil t delimited)) |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
175 |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
176 (defvar regexp-history nil |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
177 "History list for some commands that read regular expressions.") |
260 | 178 |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2408
diff
changeset
|
179 (defalias 'delete-non-matching-lines 'keep-lines) |
61 | 180 (defun keep-lines (regexp) |
181 "Delete all lines except those containing matches for REGEXP. | |
182 A match split across lines preserves all the lines it lies in. | |
183 Applies to all lines after point." | |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
184 (interactive (list (read-from-minibuffer |
2685
b8c5199f31af
(flush-lines, keep-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
185 "Keep lines (containing match for regexp): " |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
186 nil nil nil 'regexp-history))) |
61 | 187 (save-excursion |
188 (or (bolp) (forward-line 1)) | |
189 (let ((start (point))) | |
190 (while (not (eobp)) | |
191 ;; Start is first char not preserved by previous match. | |
192 (if (not (re-search-forward regexp nil 'move)) | |
193 (delete-region start (point-max)) | |
194 (let ((end (save-excursion (goto-char (match-beginning 0)) | |
195 (beginning-of-line) | |
196 (point)))) | |
197 ;; Now end is first char preserved by the new match. | |
198 (if (< start end) | |
199 (delete-region start end)))) | |
200 (setq start (save-excursion (forward-line 1) | |
201 (point))) | |
202 ;; If the match was empty, avoid matching again at same place. | |
203 (and (not (eobp)) (= (match-beginning 0) (match-end 0)) | |
204 (forward-char 1)))))) | |
205 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2408
diff
changeset
|
206 (defalias 'delete-matching-lines 'flush-lines) |
61 | 207 (defun flush-lines (regexp) |
208 "Delete lines containing matches for REGEXP. | |
209 If a match is split across lines, all the lines it lies in are deleted. | |
210 Applies to lines after point." | |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
211 (interactive (list (read-from-minibuffer |
2685
b8c5199f31af
(flush-lines, keep-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
212 "Flush lines (containing match for regexp): " |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
213 nil nil nil 'regexp-history))) |
61 | 214 (save-excursion |
215 (while (and (not (eobp)) | |
216 (re-search-forward regexp nil t)) | |
217 (delete-region (save-excursion (goto-char (match-beginning 0)) | |
218 (beginning-of-line) | |
219 (point)) | |
220 (progn (forward-line 1) (point)))))) | |
221 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2408
diff
changeset
|
222 (defalias 'count-matches 'how-many) |
61 | 223 (defun how-many (regexp) |
224 "Print number of matches for REGEXP following point." | |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
225 (interactive (list (read-from-minibuffer |
2685
b8c5199f31af
(flush-lines, keep-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
226 "How many matches for (regexp): " |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
227 nil nil nil 'regexp-history))) |
61 | 228 (let ((count 0) opoint) |
229 (save-excursion | |
230 (while (and (not (eobp)) | |
231 (progn (setq opoint (point)) | |
232 (re-search-forward regexp nil t))) | |
233 (if (= opoint (point)) | |
234 (forward-char 1) | |
235 (setq count (1+ count)))) | |
236 (message "%d occurrences" count)))) | |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
237 |
61 | 238 (defvar occur-mode-map ()) |
239 (if occur-mode-map | |
240 () | |
241 (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
|
242 (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
|
243 (define-key occur-mode-map "\C-c\C-c" 'occur-mode-goto-occurrence) |
10267 | 244 (define-key occur-mode-map "\C-m" 'occur-mode-goto-occurrence)) |
61 | 245 |
246 (defvar occur-buffer nil) | |
247 (defvar occur-nlines nil) | |
248 (defvar occur-pos-list nil) | |
249 | |
250 (defun occur-mode () | |
251 "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
|
252 \\<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
|
253 \\[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
|
254 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
|
255 |
61 | 256 \\{occur-mode-map}" |
257 (kill-all-local-variables) | |
258 (use-local-map occur-mode-map) | |
259 (setq major-mode 'occur-mode) | |
260 (setq mode-name "Occur") | |
261 (make-local-variable 'occur-buffer) | |
262 (make-local-variable 'occur-nlines) | |
4975
db0c6ed6f145
(occur-mode): Run occur-mode-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4429
diff
changeset
|
263 (make-local-variable 'occur-pos-list) |
db0c6ed6f145
(occur-mode): Run occur-mode-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4429
diff
changeset
|
264 (run-hooks 'occur-mode-hook)) |
61 | 265 |
6596
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
266 (defun occur-mode-mouse-goto (event) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
267 "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
|
268 (interactive "e") |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
269 (let (buffer pos) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
270 (save-excursion |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
271 (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
|
272 (save-excursion |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
273 (goto-char (posn-point (event-end event))) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
274 (setq pos (occur-mode-find-occurrence)) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
275 (setq buffer occur-buffer))) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
276 (pop-to-buffer buffer) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
277 (goto-char (marker-position pos)))) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
278 |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
279 (defun occur-mode-find-occurrence () |
61 | 280 (if (or (null occur-buffer) |
281 (null (buffer-name occur-buffer))) | |
282 (progn | |
283 (setq occur-buffer nil | |
284 occur-pos-list nil) | |
285 (error "Buffer in which occurrences were found is deleted"))) | |
6596
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
286 (let* ((line-count |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
287 (count-lines (point-min) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
288 (save-excursion |
61 | 289 (beginning-of-line) |
6596
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
290 (point)))) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
291 (occur-number (save-excursion |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
292 (beginning-of-line) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
293 (/ (1- line-count) |
61 | 294 (cond ((< occur-nlines 0) |
295 (- 2 occur-nlines)) | |
296 ((> occur-nlines 0) | |
297 (+ 2 (* 2 occur-nlines))) | |
298 (t 1))))) | |
299 (pos (nth occur-number occur-pos-list))) | |
6596
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
300 (if (< line-count 1) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
301 (error "No occurrence on this line")) |
4429
847ef9a62e5d
(occur-mode-goto-occurrence): Give meaningful error
Richard M. Stallman <rms@gnu.org>
parents:
4262
diff
changeset
|
302 (or pos |
847ef9a62e5d
(occur-mode-goto-occurrence): Give meaningful error
Richard M. Stallman <rms@gnu.org>
parents:
4262
diff
changeset
|
303 (error "No occurrence on this line")) |
6596
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
304 pos)) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
305 |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
306 (defun occur-mode-goto-occurrence () |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
307 "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
|
308 (interactive) |
80df3b456672
(occur-mode-find-occurrence): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
6410
diff
changeset
|
309 (let ((pos (occur-mode-find-occurrence))) |
61 | 310 (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
|
311 (goto-char (marker-position pos)))) |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
312 |
61 | 313 (defvar list-matching-lines-default-context-lines 0 |
260 | 314 "*Default number of context lines to include around a `list-matching-lines' |
61 | 315 match. A negative number means to include that many lines before the match. |
316 A positive number means to include that many lines both before and after.") | |
317 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2408
diff
changeset
|
318 (defalias 'list-matching-lines 'occur) |
61 | 319 |
320 (defun occur (regexp &optional nlines) | |
1427
c49077849583
(occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents:
866
diff
changeset
|
321 "Show all lines in the current buffer containing a match for REGEXP. |
61 | 322 |
260 | 323 If a match spreads across multiple lines, all those lines are shown. |
324 | |
325 Each line is displayed with NLINES lines before and after, or -NLINES | |
326 before if NLINES is negative. | |
327 NLINES defaults to `list-matching-lines-default-context-lines'. | |
61 | 328 Interactively it is the prefix arg. |
329 | |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
330 The lines are shown in a buffer named `*Occur*'. |
61 | 331 It serves as a menu to find any of the occurrences in this buffer. |
332 \\[describe-mode] in that buffer will explain how." | |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
333 (interactive (list (let* ((default (car regexp-history)) |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
334 (input |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
335 (read-from-minibuffer |
4262
bc0af06c6e3c
(occur): If no default, don't mention one.
Richard M. Stallman <rms@gnu.org>
parents:
3885
diff
changeset
|
336 (if default |
bc0af06c6e3c
(occur): If no default, don't mention one.
Richard M. Stallman <rms@gnu.org>
parents:
3885
diff
changeset
|
337 (format "List lines matching regexp (default `%s'): " default) |
bc0af06c6e3c
(occur): If no default, don't mention one.
Richard M. Stallman <rms@gnu.org>
parents:
3885
diff
changeset
|
338 "List lines matching regexp: ") |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
339 nil nil nil |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
340 'regexp-history))) |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
341 (if (> (length input) 0) input |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
342 (setcar regexp-history default))) |
73 | 343 current-prefix-arg)) |
61 | 344 (setq nlines (if nlines (prefix-numeric-value nlines) |
345 list-matching-lines-default-context-lines)) | |
346 (let ((first t) | |
347 (buffer (current-buffer)) | |
11075
e1b564b50569
(occur): Copy default-directory to *Occur* buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10566
diff
changeset
|
348 (dir default-directory) |
61 | 349 (linenum 1) |
324 | 350 (prevpos (point-min)) |
351 (final-context-start (make-marker))) | |
1427
c49077849583
(occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents:
866
diff
changeset
|
352 ;;; (save-excursion |
c49077849583
(occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents:
866
diff
changeset
|
353 ;;; (beginning-of-line) |
c49077849583
(occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents:
866
diff
changeset
|
354 ;;; (setq linenum (1+ (count-lines (point-min) (point)))) |
c49077849583
(occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents:
866
diff
changeset
|
355 ;;; (setq prevpos (point))) |
14819
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
356 (save-excursion |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
357 (goto-char (point-min)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
358 ;; 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
|
359 (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
|
360 (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
|
361 ;; 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
|
362 (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
|
363 (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
|
364 (save-excursion |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
365 (set-buffer standard-output) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
366 (setq default-directory dir) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
367 ;; 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
|
368 (insert " matching ") |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
369 (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
|
370 (prin1 regexp)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
371 (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
|
372 (occur-mode) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
373 (setq occur-buffer buffer) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
374 (setq occur-nlines nlines) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
375 (setq occur-pos-list ())) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
376 (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
|
377 (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
|
378 (save-excursion |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
379 ;; Find next match, but give up if prev match was at end of buffer. |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
380 (while (and (not (= prevpos (point-max))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
381 (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
|
382 (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
|
383 (beginning-of-line) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
384 (save-match-data |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
385 (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
|
386 (setq prevpos (point)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
387 (goto-char (match-end 0)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
388 (let* ((start (save-excursion |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
389 (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
|
390 (forward-line (if (< nlines 0) nlines (- nlines))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
391 (point))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
392 (end (save-excursion |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
393 (goto-char (match-end 0)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
394 (if (> nlines 0) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
395 (forward-line (1+ nlines)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
396 (forward-line 1)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
397 (point))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
398 (tag (format "%5d" linenum)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
399 (empty (make-string (length tag) ?\ )) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
400 tem) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
401 (save-excursion |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
402 (setq tem (make-marker)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
403 (set-marker tem (point)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
404 (set-buffer standard-output) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
405 (setq occur-pos-list (cons tem occur-pos-list)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
406 (or first (zerop nlines) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
407 (insert "--------\n")) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
408 (setq first nil) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
409 (insert-buffer-substring buffer start end) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
410 (set-marker final-context-start |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
411 (- (point) (- end (match-end 0)))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
412 (backward-char (- end start)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
413 (setq tem nlines) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
414 (while (> tem 0) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
415 (insert empty ?:) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
416 (forward-line 1) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
417 (setq tem (1- tem))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
418 (let ((this-linenum linenum)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
419 (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
|
420 (if (null tag) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
421 (setq tag (format "%5d" this-linenum))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
422 (insert tag ?:) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
423 (put-text-property (save-excursion |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
424 (beginning-of-line) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
425 (point)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
426 (save-excursion |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
427 (end-of-line) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
428 (point)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
429 'mouse-face 'highlight) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
430 (forward-line 1) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
431 (setq tag nil) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
432 (setq this-linenum (1+ this-linenum))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
433 (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
|
434 (insert empty ?:) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
435 (forward-line 1) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
436 (setq this-linenum (1+ this-linenum)))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
437 (while (< tem nlines) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
438 (insert empty ?:) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
439 (forward-line 1) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
440 (setq tem (1+ tem))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
441 (goto-char (point-max))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
442 (forward-line 1))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
443 (set-buffer standard-output) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
444 ;; Put positions in increasing order to go with buffer. |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
445 (setq occur-pos-list (nreverse occur-pos-list)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
446 (goto-char (point-min)) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
447 (if (= (length occur-pos-list) 1) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
448 (insert "1 line") |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
449 (insert (format "%d lines" (length occur-pos-list)))) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
450 (if (interactive-p) |
ece1210e739f
(occur): If no matches, just display in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
451 (message "%d matching lines." (length occur-pos-list))))))))) |
61 | 452 |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
453 ;; 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
|
454 ;; to make that display both SPC and Y. |
61 | 455 (defconst query-replace-help |
456 "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
|
457 RET or `q' to exit, Period to replace one match and exit, |
61 | 458 Comma to replace but not move point immediately, |
459 C-r to enter recursive edit (\\[exit-recursive-edit] to get out again), | |
460 C-w to delete match and recursive edit, | |
461 C-l to clear the screen, redisplay, and offer same replacement again, | |
462 ! to replace all remaining matches with no more questions, | |
463 ^ to move point back to previous match." | |
464 "Help message while in query-replace") | |
465 | |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
466 (defvar query-replace-map (make-sparse-keymap) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
467 "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
|
468 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
|
469 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
|
470 `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
|
471 `automatic', `backup', `exit-prefix', and `help'.") |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
472 |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
473 (define-key query-replace-map " " 'act) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
474 (define-key query-replace-map "\d" 'skip) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
475 (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
|
476 (define-key query-replace-map [backspace] 'skip) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
477 (define-key query-replace-map "y" 'act) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
478 (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
|
479 (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
|
480 (define-key query-replace-map "N" 'skip) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
481 (define-key query-replace-map "," 'act-and-show) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
482 (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
|
483 (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
|
484 (define-key query-replace-map [return] 'exit) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
485 (define-key query-replace-map "." 'act-and-exit) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
486 (define-key query-replace-map "\C-r" 'edit) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
487 (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
|
488 (define-key query-replace-map "\C-l" 'recenter) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
489 (define-key query-replace-map "!" 'automatic) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
490 (define-key query-replace-map "^" 'backup) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
491 (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
|
492 (define-key query-replace-map [f1] 'help) |
6be53feb3323
(query-replace-map): Bind f1 and help.
Karl Heuer <kwzh@gnu.org>
parents:
11314
diff
changeset
|
493 (define-key query-replace-map [help] 'help) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
494 (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
|
495 (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
|
496 (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
|
497 (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
|
498 (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
|
499 |
61 | 500 (defun perform-replace (from-string replacements |
501 query-flag regexp-flag delimited-flag | |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
502 &optional repeat-count map) |
61 | 503 "Subroutine of `query-replace'. Its complexity handles interactive queries. |
504 Don't use this in your own program unless you want to query and set the mark | |
505 just as `query-replace' does. Instead, write a simple loop like this: | |
506 (while (re-search-forward \"foo[ \t]+bar\" nil t) | |
507 (replace-match \"foobar\" nil nil)) | |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
508 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
|
509 (or map (setq map query-replace-map)) |
61 | 510 (let ((nocasify (not (and case-fold-search case-replace |
511 (string-equal from-string | |
512 (downcase from-string))))) | |
513 (literal (not regexp-flag)) | |
514 (search-function (if regexp-flag 're-search-forward 'search-forward)) | |
515 (search-string from-string) | |
732 | 516 (real-match-data nil) ; the match data for the current match |
61 | 517 (next-replacement nil) |
518 (replacement-index 0) | |
519 (keep-going t) | |
520 (stack nil) | |
521 (next-rotate-count 0) | |
522 (replace-count 0) | |
260 | 523 (lastrepl nil) ;Position after last match considered. |
7258
68c7b93914fe
(perform-replace): Call substitute-command-keys just once
Richard M. Stallman <rms@gnu.org>
parents:
6722
diff
changeset
|
524 (match-again t) |
68c7b93914fe
(perform-replace): Call substitute-command-keys just once
Richard M. Stallman <rms@gnu.org>
parents:
6722
diff
changeset
|
525 (message |
68c7b93914fe
(perform-replace): Call substitute-command-keys just once
Richard M. Stallman <rms@gnu.org>
parents:
6722
diff
changeset
|
526 (if query-flag |
68c7b93914fe
(perform-replace): Call substitute-command-keys just once
Richard M. Stallman <rms@gnu.org>
parents:
6722
diff
changeset
|
527 (substitute-command-keys |
68c7b93914fe
(perform-replace): Call substitute-command-keys just once
Richard M. Stallman <rms@gnu.org>
parents:
6722
diff
changeset
|
528 "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) ")))) |
61 | 529 (if (stringp replacements) |
530 (setq next-replacement replacements) | |
531 (or repeat-count (setq repeat-count 1))) | |
532 (if delimited-flag | |
533 (setq search-function 're-search-forward | |
534 search-string (concat "\\b" | |
535 (if regexp-flag from-string | |
536 (regexp-quote from-string)) | |
537 "\\b"))) | |
538 (push-mark) | |
539 (undo-boundary) | |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
540 (unwind-protect |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
541 ;; Loop finding occurrences that perhaps should be replaced. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
542 (while (and keep-going |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
543 (not (eobp)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
544 (funcall search-function search-string nil t) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
545 ;; If the search string matches immediately after |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
546 ;; the previous match, but it did not match there |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
547 ;; before the replacement was done, ignore the match. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
548 (if (or (eq lastrepl (point)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
549 (and regexp-flag |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
550 (eq lastrepl (match-beginning 0)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
551 (not match-again))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
552 (if (eobp) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
553 nil |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
554 ;; Don't replace the null string |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
555 ;; right after end of previous replacement. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
556 (forward-char 1) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
557 (funcall search-function search-string nil t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
558 t)) |
732 | 559 |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
560 ;; Save the data associated with the real match. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
561 (setq real-match-data (match-data)) |
732 | 562 |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
563 ;; Before we make the replacement, decide whether the search string |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
564 ;; can match again just after this match. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
565 (if regexp-flag |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
566 (setq match-again (looking-at search-string))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
567 ;; If time for a change, advance to next replacement string. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
568 (if (and (listp replacements) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
569 (= next-rotate-count replace-count)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
570 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
571 (setq next-rotate-count |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
572 (+ next-rotate-count repeat-count)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
573 (setq next-replacement (nth replacement-index replacements)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
574 (setq replacement-index (% (1+ replacement-index) (length replacements))))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
575 (if (not query-flag) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
576 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
577 (store-match-data real-match-data) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
578 (replace-match next-replacement nocasify literal) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
579 (setq replace-count (1+ replace-count))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
580 (undo-boundary) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
581 (let (done replaced key def) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
582 ;; 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
|
583 ;; which means it has finished handling this occurrence. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
584 (while (not done) |
8664
341906b946dd
(perform-replace): Restore match data before highlighting.
Richard M. Stallman <rms@gnu.org>
parents:
7258
diff
changeset
|
585 (store-match-data real-match-data) |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
586 (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
|
587 ;; 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
|
588 ;; with a bunch of identical messages. |
9f018a8f2f67
(perform-replace): Don't log the repetitive prompts.
Karl Heuer <kwzh@gnu.org>
parents:
10267
diff
changeset
|
589 (let ((message-log-max nil)) |
9f018a8f2f67
(perform-replace): Don't log the repetitive prompts.
Karl Heuer <kwzh@gnu.org>
parents:
10267
diff
changeset
|
590 (message message from-string next-replacement)) |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
591 (setq key (read-event)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
592 (setq key (vector key)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
593 (setq def (lookup-key map key)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
594 ;; 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
|
595 (cond ((eq def 'help) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
596 (with-output-to-temp-buffer "*Help*" |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
597 (princ |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
598 (concat "Query replacing " |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
599 (if regexp-flag "regexp " "") |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
600 from-string " with " |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
601 next-replacement ".\n\n" |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
602 (substitute-command-keys |
9847
dc6c0b5fa4f0
(perform-replace): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
8935
diff
changeset
|
603 query-replace-help))) |
dc6c0b5fa4f0
(perform-replace): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
8935
diff
changeset
|
604 (save-excursion |
dc6c0b5fa4f0
(perform-replace): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
8935
diff
changeset
|
605 (set-buffer standard-output) |
dc6c0b5fa4f0
(perform-replace): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
8935
diff
changeset
|
606 (help-mode)))) |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
607 ((eq def 'exit) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
608 (setq keep-going nil) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
609 (setq done t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
610 ((eq def 'backup) |
5905
a068f8b61f2a
(perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents:
5393
diff
changeset
|
611 (if stack |
a068f8b61f2a
(perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents:
5393
diff
changeset
|
612 (let ((elt (car stack))) |
a068f8b61f2a
(perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents:
5393
diff
changeset
|
613 (goto-char (car elt)) |
a068f8b61f2a
(perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents:
5393
diff
changeset
|
614 (setq replaced (eq t (cdr elt))) |
a068f8b61f2a
(perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents:
5393
diff
changeset
|
615 (or replaced |
a068f8b61f2a
(perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents:
5393
diff
changeset
|
616 (store-match-data (cdr elt))) |
a068f8b61f2a
(perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents:
5393
diff
changeset
|
617 (setq stack (cdr stack))) |
a068f8b61f2a
(perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents:
5393
diff
changeset
|
618 (message "No previous match") |
a068f8b61f2a
(perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents:
5393
diff
changeset
|
619 (ding 'no-terminate) |
a068f8b61f2a
(perform-replace): Check for empty stack.
Karl Heuer <kwzh@gnu.org>
parents:
5393
diff
changeset
|
620 (sit-for 1))) |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
621 ((eq def 'act) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
622 (or replaced |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
623 (replace-match next-replacement nocasify literal)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
624 (setq done t replaced t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
625 ((eq def 'act-and-exit) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
626 (or replaced |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
627 (replace-match next-replacement nocasify literal)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
628 (setq keep-going nil) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
629 (setq done t replaced t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
630 ((eq def 'act-and-show) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
631 (if (not replaced) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
632 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
633 (replace-match next-replacement nocasify literal) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
634 (setq replaced t)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
635 ((eq def 'automatic) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
636 (or replaced |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
637 (replace-match next-replacement nocasify literal)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
638 (setq done t query-flag nil replaced t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
639 ((eq def 'skip) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
640 (setq done t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
641 ((eq def 'recenter) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
642 (recenter nil)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
643 ((eq def 'edit) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
644 (store-match-data |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
645 (prog1 (match-data) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
646 (save-excursion (recursive-edit)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
647 ;; Before we make the replacement, |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
648 ;; decide whether the search string |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
649 ;; can match again just after this match. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
650 (if regexp-flag |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
651 (setq match-again (looking-at search-string)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
652 ((eq def 'delete-and-edit) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
653 (delete-region (match-beginning 0) (match-end 0)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
654 (store-match-data |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
655 (prog1 (match-data) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
656 (save-excursion (recursive-edit)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
657 (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
|
658 ;; 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
|
659 ;; 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
|
660 ;; any unrecognized character. |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
661 (t |
10057
460fecc93446
(query-replace-map): Define \e and escape as exit-prefix.
Richard M. Stallman <rms@gnu.org>
parents:
9908
diff
changeset
|
662 (setq this-command 'mode-exited) |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
663 (setq keep-going nil) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
664 (setq unread-command-events |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
665 (append (listify-key-sequence key) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
666 unread-command-events)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
667 (setq done t)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
668 ;; Record previous position for ^ when we move on. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
669 ;; Change markers to numbers in the match data |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
670 ;; since lots of markers slow down editing. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
671 (setq stack |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
672 (cons (cons (point) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
673 (or replaced |
6410
3989978f6631
(perform-replace): Set match-data markers to nil before discarding them.
Roland McGrath <roland@gnu.org>
parents:
5905
diff
changeset
|
674 (mapcar (lambda (elt) |
3989978f6631
(perform-replace): Set match-data markers to nil before discarding them.
Roland McGrath <roland@gnu.org>
parents:
5905
diff
changeset
|
675 (and elt |
3989978f6631
(perform-replace): Set match-data markers to nil before discarding them.
Roland McGrath <roland@gnu.org>
parents:
5905
diff
changeset
|
676 (prog1 (marker-position elt) |
3989978f6631
(perform-replace): Set match-data markers to nil before discarding them.
Roland McGrath <roland@gnu.org>
parents:
5905
diff
changeset
|
677 (set-marker elt nil)))) |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
678 (match-data)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
679 stack)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
680 (if replaced (setq replace-count (1+ replace-count))))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
681 (setq lastrepl (point))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
682 (replace-dehighlight)) |
10157
7953cde9d951
(perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents:
10155
diff
changeset
|
683 (or unread-command-events |
7953cde9d951
(perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents:
10155
diff
changeset
|
684 (message "Replaced %d occurrence%s" |
7953cde9d951
(perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents:
10155
diff
changeset
|
685 replace-count |
7953cde9d951
(perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents:
10155
diff
changeset
|
686 (if (= replace-count 1) "" "s"))) |
7953cde9d951
(perform-replace): Report number of replacements when done.
Richard M. Stallman <rms@gnu.org>
parents:
10155
diff
changeset
|
687 (and keep-going stack))) |
61 | 688 |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
689 (defvar query-replace-highlight nil |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
690 "*Non-nil means to highlight words during query replacement.") |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
691 |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
692 (defvar replace-overlay nil) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
693 |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
694 (defun replace-dehighlight () |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
695 (and replace-overlay |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
696 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
697 (delete-overlay replace-overlay) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
698 (setq replace-overlay nil)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
699 |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
700 (defun replace-highlight (start end) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
701 (and query-replace-highlight |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
702 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
703 (or replace-overlay |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
704 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
705 (setq replace-overlay (make-overlay start end)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
706 (overlay-put replace-overlay 'face |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
707 (if (internal-find-face 'query-replace) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
708 'query-replace 'region)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
709 (move-overlay replace-overlay start end (current-buffer))))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
710 |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
324
diff
changeset
|
711 ;;; replace.el ends here |