Mercurial > emacs
annotate lisp/replace.el @ 5433:7ac1e6f1565f
Don't include syntax.h.
(Qget_file_buffer): New variable.
(syms_of_buffer): Set up Qget_file_buffer.
(Fget_file_buffer): For magic file names, run the handler.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 04 Jan 1994 06:38:43 +0000 |
parents | cfd16a1af914 |
children | a068f8b61f2a |
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 |
862
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1987, 1992 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 | |
18 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
20 | |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2156
diff
changeset
|
21 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2156
diff
changeset
|
22 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2156
diff
changeset
|
23 ;; 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
|
24 ;; documented in the Emacs user's manual. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2156
diff
changeset
|
25 |
788
c8d4eb38ebfc
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
26 ;;; Code: |
61 | 27 |
268 | 28 (defconst case-replace t "\ |
29 *Non-nil means query-replace should preserve case in replacements.") | |
264 | 30 |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
31 (defvar query-replace-history nil) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
32 |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
33 (defun query-replace-read-args (string) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
34 (let (from to) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
35 (setq from (read-from-minibuffer (format "%s: " string) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
36 nil nil nil |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
37 'query-replace-history)) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
38 (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
|
39 nil nil nil |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
40 'query-replace-history)) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
41 (list from to current-prefix-arg))) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
42 |
260 | 43 (defun query-replace (from-string to-string &optional arg) |
44 "Replace some occurrences of FROM-STRING with TO-STRING. | |
45 As each match is found, the user must type a character saying | |
46 what to do with it. For directions, type \\[help-command] at that time. | |
47 | |
48 Preserves case in each replacement if case-replace and case-fold-search | |
49 are non-nil and FROM-STRING has no uppercase letters. | |
50 Third arg DELIMITED (prefix arg if interactive) non-nil means replace | |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
51 only matches surrounded by word boundaries. |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
52 |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
53 To customize possible responses, change the \"bindings\" in `query-replace-map'." |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
54 (interactive (query-replace-read-args "Query replace")) |
260 | 55 (perform-replace from-string to-string t nil arg) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
56 (or unread-command-events (message "Done"))) |
268 | 57 (define-key esc-map "%" 'query-replace) |
260 | 58 |
59 (defun query-replace-regexp (regexp to-string &optional arg) | |
60 "Replace some things after point matching REGEXP with TO-STRING. | |
61 As each match is found, the user must type a character saying | |
62 what to do with it. For directions, type \\[help-command] at that time. | |
63 | |
64 Preserves case in each replacement if case-replace and case-fold-search | |
65 are non-nil and REGEXP has no uppercase letters. | |
66 Third arg DELIMITED (prefix arg if interactive) non-nil means replace | |
67 only matches surrounded by word boundaries. | |
68 In TO-STRING, \\& means insert what matched REGEXP, | |
69 and \\=\\<n> means insert what matched <n>th \\(...\\) in REGEXP." | |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
70 (interactive (query-replace-read-args "Query replace regexp")) |
260 | 71 (perform-replace regexp to-string t t arg) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
72 (or unread-command-events (message "Done"))) |
260 | 73 |
74 (defun map-query-replace-regexp (regexp to-strings &optional arg) | |
75 "Replace some matches for REGEXP with various strings, in rotation. | |
76 The second argument TO-STRINGS contains the replacement strings, separated | |
77 by spaces. This command works like `query-replace-regexp' except | |
78 that each successive replacement uses the next successive replacement string, | |
79 wrapping around from the last such string to the first. | |
80 | |
81 Non-interactively, TO-STRINGS may be a list of replacement strings. | |
82 | |
83 A prefix argument N says to use each replacement string N times | |
84 before rotating to the next." | |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
85 (interactive |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
86 (let (from to) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
87 (setq from (read-from-minibuffer "Map query replace (regexp): " |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
88 nil nil nil |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
89 'query-replace-history)) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
90 (setq to (read-from-minibuffer |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
91 (format "Query replace %s with (space-separated strings): " |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
92 from) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
93 nil nil nil |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
94 'query-replace-history)) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
95 (list from to current-prefix-arg))) |
260 | 96 (let (replacements) |
97 (if (listp to-strings) | |
98 (setq replacements to-strings) | |
99 (while (/= (length to-strings) 0) | |
100 (if (string-match " " to-strings) | |
101 (setq replacements | |
102 (append replacements | |
103 (list (substring to-strings 0 | |
104 (string-match " " to-strings)))) | |
105 to-strings (substring to-strings | |
106 (1+ (string-match " " to-strings)))) | |
107 (setq replacements (append replacements (list to-strings)) | |
108 to-strings "")))) | |
109 (perform-replace regexp replacements t t nil arg)) | |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
110 (or unread-command-events (message "Done"))) |
260 | 111 |
112 (defun replace-string (from-string to-string &optional delimited) | |
113 "Replace occurrences of FROM-STRING with TO-STRING. | |
114 Preserve case in each match if `case-replace' and `case-fold-search' | |
115 are non-nil and FROM-STRING has no uppercase letters. | |
116 Third arg DELIMITED (prefix arg if interactive) non-nil means replace | |
117 only matches surrounded by word boundaries. | |
118 | |
119 This function is usually the wrong thing to use in a Lisp program. | |
120 What you probably want is a loop like this: | |
121 (while (search-forward OLD-STRING nil t) | |
122 (replace-match REPLACEMENT nil t)) | |
123 which will run faster and will not set the mark or print anything." | |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
124 (interactive (query-replace-read-args "Replace string")) |
260 | 125 (perform-replace from-string to-string nil nil delimited) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
126 (or unread-command-events (message "Done"))) |
260 | 127 |
128 (defun replace-regexp (regexp to-string &optional delimited) | |
129 "Replace things after point matching REGEXP with TO-STRING. | |
130 Preserve case in each match if case-replace and case-fold-search | |
131 are non-nil and REGEXP has no uppercase letters. | |
132 Third arg DELIMITED (prefix arg if interactive) non-nil means replace | |
133 only matches surrounded by word boundaries. | |
134 In TO-STRING, \\& means insert what matched REGEXP, | |
135 and \\=\\<n> means insert what matched <n>th \\(...\\) in REGEXP. | |
136 | |
137 This function is usually the wrong thing to use in a Lisp program. | |
138 What you probably want is a loop like this: | |
139 (while (re-search-forward REGEXP nil t) | |
140 (replace-match REPLACEMENT nil nil)) | |
141 which will run faster and will not set the mark or print anything." | |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
862
diff
changeset
|
142 (interactive (query-replace-read-args "Replace regexp")) |
260 | 143 (perform-replace regexp to-string nil t delimited) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
144 (or unread-command-events (message "Done"))) |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
145 |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
146 (defvar regexp-history nil |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
147 "History list for some commands that read regular expressions.") |
260 | 148 |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2408
diff
changeset
|
149 (defalias 'delete-non-matching-lines 'keep-lines) |
61 | 150 (defun keep-lines (regexp) |
151 "Delete all lines except those containing matches for REGEXP. | |
152 A match split across lines preserves all the lines it lies in. | |
153 Applies to all lines after point." | |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
154 (interactive (list (read-from-minibuffer |
2685
b8c5199f31af
(flush-lines, keep-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
155 "Keep lines (containing match for regexp): " |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
156 nil nil nil 'regexp-history))) |
61 | 157 (save-excursion |
158 (or (bolp) (forward-line 1)) | |
159 (let ((start (point))) | |
160 (while (not (eobp)) | |
161 ;; Start is first char not preserved by previous match. | |
162 (if (not (re-search-forward regexp nil 'move)) | |
163 (delete-region start (point-max)) | |
164 (let ((end (save-excursion (goto-char (match-beginning 0)) | |
165 (beginning-of-line) | |
166 (point)))) | |
167 ;; Now end is first char preserved by the new match. | |
168 (if (< start end) | |
169 (delete-region start end)))) | |
170 (setq start (save-excursion (forward-line 1) | |
171 (point))) | |
172 ;; If the match was empty, avoid matching again at same place. | |
173 (and (not (eobp)) (= (match-beginning 0) (match-end 0)) | |
174 (forward-char 1)))))) | |
175 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2408
diff
changeset
|
176 (defalias 'delete-matching-lines 'flush-lines) |
61 | 177 (defun flush-lines (regexp) |
178 "Delete lines containing matches for REGEXP. | |
179 If a match is split across lines, all the lines it lies in are deleted. | |
180 Applies to lines after point." | |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
181 (interactive (list (read-from-minibuffer |
2685
b8c5199f31af
(flush-lines, keep-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
182 "Flush lines (containing match for regexp): " |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
183 nil nil nil 'regexp-history))) |
61 | 184 (save-excursion |
185 (while (and (not (eobp)) | |
186 (re-search-forward regexp nil t)) | |
187 (delete-region (save-excursion (goto-char (match-beginning 0)) | |
188 (beginning-of-line) | |
189 (point)) | |
190 (progn (forward-line 1) (point)))))) | |
191 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2408
diff
changeset
|
192 (defalias 'count-matches 'how-many) |
61 | 193 (defun how-many (regexp) |
194 "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
|
195 (interactive (list (read-from-minibuffer |
2685
b8c5199f31af
(flush-lines, keep-lines, how-many):
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
196 "How many matches for (regexp): " |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
197 nil nil nil 'regexp-history))) |
61 | 198 (let ((count 0) opoint) |
199 (save-excursion | |
200 (while (and (not (eobp)) | |
201 (progn (setq opoint (point)) | |
202 (re-search-forward regexp nil t))) | |
203 (if (= opoint (point)) | |
204 (forward-char 1) | |
205 (setq count (1+ count)))) | |
206 (message "%d occurrences" count)))) | |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
207 |
61 | 208 (defvar occur-mode-map ()) |
209 (if occur-mode-map | |
210 () | |
211 (setq occur-mode-map (make-sparse-keymap)) | |
212 (define-key occur-mode-map "\C-c\C-c" 'occur-mode-goto-occurrence)) | |
213 | |
214 (defvar occur-buffer nil) | |
215 (defvar occur-nlines nil) | |
216 (defvar occur-pos-list nil) | |
217 | |
218 (defun occur-mode () | |
219 "Major mode for output from \\[occur]. | |
220 Move point to one of the occurrences in this buffer, | |
221 then use \\[occur-mode-goto-occurrence] to go to the same occurrence | |
222 in the buffer that the occurrences were found in. | |
223 \\{occur-mode-map}" | |
224 (kill-all-local-variables) | |
225 (use-local-map occur-mode-map) | |
226 (setq major-mode 'occur-mode) | |
227 (setq mode-name "Occur") | |
228 (make-local-variable 'occur-buffer) | |
229 (make-local-variable 'occur-nlines) | |
4975
db0c6ed6f145
(occur-mode): Run occur-mode-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4429
diff
changeset
|
230 (make-local-variable 'occur-pos-list) |
db0c6ed6f145
(occur-mode): Run occur-mode-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4429
diff
changeset
|
231 (run-hooks 'occur-mode-hook)) |
61 | 232 |
233 (defun occur-mode-goto-occurrence () | |
234 "Go to the line this occurrence was found in, in the buffer it was found in." | |
235 (interactive) | |
236 (if (or (null occur-buffer) | |
237 (null (buffer-name occur-buffer))) | |
238 (progn | |
239 (setq occur-buffer nil | |
240 occur-pos-list nil) | |
241 (error "Buffer in which occurrences were found is deleted"))) | |
242 (let* ((occur-number (save-excursion | |
243 (beginning-of-line) | |
244 (/ (1- (count-lines (point-min) | |
245 (save-excursion | |
246 (beginning-of-line) | |
247 (point)))) | |
248 (cond ((< occur-nlines 0) | |
249 (- 2 occur-nlines)) | |
250 ((> occur-nlines 0) | |
251 (+ 2 (* 2 occur-nlines))) | |
252 (t 1))))) | |
253 (pos (nth occur-number occur-pos-list))) | |
4429
847ef9a62e5d
(occur-mode-goto-occurrence): Give meaningful error
Richard M. Stallman <rms@gnu.org>
parents:
4262
diff
changeset
|
254 (or pos |
847ef9a62e5d
(occur-mode-goto-occurrence): Give meaningful error
Richard M. Stallman <rms@gnu.org>
parents:
4262
diff
changeset
|
255 (error "No occurrence on this line")) |
61 | 256 (pop-to-buffer occur-buffer) |
257 (goto-char (marker-position pos)))) | |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
258 |
61 | 259 (defvar list-matching-lines-default-context-lines 0 |
260 | 260 "*Default number of context lines to include around a `list-matching-lines' |
61 | 261 match. A negative number means to include that many lines before the match. |
262 A positive number means to include that many lines both before and after.") | |
263 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2408
diff
changeset
|
264 (defalias 'list-matching-lines 'occur) |
61 | 265 |
266 (defun occur (regexp &optional nlines) | |
1427
c49077849583
(occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents:
866
diff
changeset
|
267 "Show all lines in the current buffer containing a match for REGEXP. |
61 | 268 |
260 | 269 If a match spreads across multiple lines, all those lines are shown. |
270 | |
271 Each line is displayed with NLINES lines before and after, or -NLINES | |
272 before if NLINES is negative. | |
273 NLINES defaults to `list-matching-lines-default-context-lines'. | |
61 | 274 Interactively it is the prefix arg. |
275 | |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
276 The lines are shown in a buffer named `*Occur*'. |
61 | 277 It serves as a menu to find any of the occurrences in this buffer. |
278 \\[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
|
279 (interactive (list (let* ((default (car regexp-history)) |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
280 (input |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
281 (read-from-minibuffer |
4262
bc0af06c6e3c
(occur): If no default, don't mention one.
Richard M. Stallman <rms@gnu.org>
parents:
3885
diff
changeset
|
282 (if default |
bc0af06c6e3c
(occur): If no default, don't mention one.
Richard M. Stallman <rms@gnu.org>
parents:
3885
diff
changeset
|
283 (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
|
284 "List lines matching regexp: ") |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
285 nil nil nil |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
286 'regexp-history))) |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
287 (if (> (length input) 0) input |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
288 (setcar regexp-history default))) |
73 | 289 current-prefix-arg)) |
61 | 290 (setq nlines (if nlines (prefix-numeric-value nlines) |
291 list-matching-lines-default-context-lines)) | |
292 (let ((first t) | |
293 (buffer (current-buffer)) | |
294 (linenum 1) | |
324 | 295 (prevpos (point-min)) |
296 (final-context-start (make-marker))) | |
1427
c49077849583
(occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents:
866
diff
changeset
|
297 ;;; (save-excursion |
c49077849583
(occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents:
866
diff
changeset
|
298 ;;; (beginning-of-line) |
c49077849583
(occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents:
866
diff
changeset
|
299 ;;; (setq linenum (1+ (count-lines (point-min) (point)))) |
c49077849583
(occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents:
866
diff
changeset
|
300 ;;; (setq prevpos (point))) |
61 | 301 (with-output-to-temp-buffer "*Occur*" |
302 (save-excursion | |
303 (set-buffer standard-output) | |
304 (insert "Lines matching ") | |
305 (prin1 regexp) | |
306 (insert " in buffer " (buffer-name buffer) ?. ?\n) | |
307 (occur-mode) | |
308 (setq occur-buffer buffer) | |
309 (setq occur-nlines nlines) | |
310 (setq occur-pos-list ())) | |
311 (if (eq buffer standard-output) | |
312 (goto-char (point-max))) | |
313 (save-excursion | |
1427
c49077849583
(occur): Always search entire buffer.
Richard M. Stallman <rms@gnu.org>
parents:
866
diff
changeset
|
314 (beginning-of-buffer) |
61 | 315 ;; Find next match, but give up if prev match was at end of buffer. |
316 (while (and (not (= prevpos (point-max))) | |
317 (re-search-forward regexp nil t)) | |
260 | 318 (goto-char (match-beginning 0)) |
61 | 319 (beginning-of-line) |
2408
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
320 (save-match-data |
a9c05a12b615
(regexp-history): New history list.
Richard M. Stallman <rms@gnu.org>
parents:
2327
diff
changeset
|
321 (setq linenum (+ linenum (count-lines prevpos (point))))) |
61 | 322 (setq prevpos (point)) |
260 | 323 (goto-char (match-end 0)) |
61 | 324 (let* ((start (save-excursion |
260 | 325 (goto-char (match-beginning 0)) |
61 | 326 (forward-line (if (< nlines 0) nlines (- nlines))) |
327 (point))) | |
328 (end (save-excursion | |
260 | 329 (goto-char (match-end 0)) |
61 | 330 (if (> nlines 0) |
331 (forward-line (1+ nlines)) | |
332 (forward-line 1)) | |
333 (point))) | |
334 (tag (format "%3d" linenum)) | |
335 (empty (make-string (length tag) ?\ )) | |
336 tem) | |
337 (save-excursion | |
324 | 338 (setq tem (make-marker)) |
339 (set-marker tem (point)) | |
61 | 340 (set-buffer standard-output) |
341 (setq occur-pos-list (cons tem occur-pos-list)) | |
342 (or first (zerop nlines) | |
343 (insert "--------\n")) | |
344 (setq first nil) | |
345 (insert-buffer-substring buffer start end) | |
346 (backward-char (- end start)) | |
260 | 347 (setq tem nlines) |
61 | 348 (while (> tem 0) |
349 (insert empty ?:) | |
350 (forward-line 1) | |
351 (setq tem (1- tem))) | |
324 | 352 (let ((this-linenum linenum)) |
260 | 353 (set-marker final-context-start |
354 (+ (point) (- (match-end 0) (match-beginning 0)))) | |
355 (while (< (point) final-context-start) | |
356 (if (null tag) | |
357 (setq tag (format "%3d" this-linenum))) | |
358 (insert tag ?:) | |
359 (setq tag nil) | |
360 (forward-line 1) | |
361 (setq this-linenum (1+ this-linenum)))) | |
61 | 362 (while (< tem nlines) |
363 (insert empty ?:) | |
364 (forward-line 1) | |
365 (setq tem (1+ tem)))) | |
366 (forward-line 1))) | |
367 (set-buffer standard-output) | |
368 ;; Put positions in increasing order to go with buffer. | |
369 (setq occur-pos-list (nreverse occur-pos-list)) | |
370 (if (interactive-p) | |
371 (message "%d matching lines." (length occur-pos-list))))))) | |
372 | |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
373 ;; 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
|
374 ;; to make that display both SPC and Y. |
61 | 375 (defconst query-replace-help |
376 "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
|
377 RET or `q' to exit, Period to replace one match and exit, |
61 | 378 Comma to replace but not move point immediately, |
379 C-r to enter recursive edit (\\[exit-recursive-edit] to get out again), | |
380 C-w to delete match and recursive edit, | |
381 C-l to clear the screen, redisplay, and offer same replacement again, | |
382 ! to replace all remaining matches with no more questions, | |
383 ^ to move point back to previous match." | |
384 "Help message while in query-replace") | |
385 | |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
386 (defvar query-replace-map (make-sparse-keymap) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
387 "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
|
388 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
|
389 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
|
390 `exit', `act-and-exit', `edit', `delete-and-edit', `recenter', |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
391 `automatic', `backup', and `help'.") |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
392 |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
393 (define-key query-replace-map " " 'act) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
394 (define-key query-replace-map "\d" 'skip) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
395 (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
|
396 (define-key query-replace-map [backspace] 'skip) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
397 (define-key query-replace-map "y" 'act) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
398 (define-key query-replace-map "n" 'skip) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
399 (define-key query-replace-map "," 'act-and-show) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
400 (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
|
401 (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
|
402 (define-key query-replace-map [return] 'exit) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
403 (define-key query-replace-map "." 'act-and-exit) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
404 (define-key query-replace-map "\C-r" 'edit) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
405 (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
|
406 (define-key query-replace-map "\C-l" 'recenter) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
407 (define-key query-replace-map "!" 'automatic) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
408 (define-key query-replace-map "^" 'backup) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
409 (define-key query-replace-map "\C-h" 'help) |
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
410 (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
|
411 (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
|
412 (define-key query-replace-map "\C-]" 'quit) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
413 |
61 | 414 (defun perform-replace (from-string replacements |
415 query-flag regexp-flag delimited-flag | |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
416 &optional repeat-count map) |
61 | 417 "Subroutine of `query-replace'. Its complexity handles interactive queries. |
418 Don't use this in your own program unless you want to query and set the mark | |
419 just as `query-replace' does. Instead, write a simple loop like this: | |
420 (while (re-search-forward \"foo[ \t]+bar\" nil t) | |
421 (replace-match \"foobar\" nil nil)) | |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
422 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
|
423 (or map (setq map query-replace-map)) |
61 | 424 (let ((nocasify (not (and case-fold-search case-replace |
425 (string-equal from-string | |
426 (downcase from-string))))) | |
427 (literal (not regexp-flag)) | |
428 (search-function (if regexp-flag 're-search-forward 'search-forward)) | |
429 (search-string from-string) | |
732 | 430 (real-match-data nil) ; the match data for the current match |
61 | 431 (next-replacement nil) |
432 (replacement-index 0) | |
433 (keep-going t) | |
434 (stack nil) | |
435 (next-rotate-count 0) | |
436 (replace-count 0) | |
260 | 437 (lastrepl nil) ;Position after last match considered. |
862
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
438 (match-again t)) |
61 | 439 (if (stringp replacements) |
440 (setq next-replacement replacements) | |
441 (or repeat-count (setq repeat-count 1))) | |
442 (if delimited-flag | |
443 (setq search-function 're-search-forward | |
444 search-string (concat "\\b" | |
445 (if regexp-flag from-string | |
446 (regexp-quote from-string)) | |
447 "\\b"))) | |
448 (push-mark) | |
449 (undo-boundary) | |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
450 (unwind-protect |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
451 ;; Loop finding occurrences that perhaps should be replaced. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
452 (while (and keep-going |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
453 (not (eobp)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
454 (funcall search-function search-string nil t) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
455 ;; If the search string matches immediately after |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
456 ;; 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
|
457 ;; before the replacement was done, ignore the match. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
458 (if (or (eq lastrepl (point)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
459 (and regexp-flag |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
460 (eq lastrepl (match-beginning 0)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
461 (not match-again))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
462 (if (eobp) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
463 nil |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
464 ;; Don't replace the null string |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
465 ;; right after end of previous replacement. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
466 (forward-char 1) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
467 (funcall search-function search-string nil t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
468 t)) |
732 | 469 |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
470 ;; Save the data associated with the real match. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
471 (setq real-match-data (match-data)) |
732 | 472 |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
473 ;; 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
|
474 ;; can match again just after this match. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
475 (if regexp-flag |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
476 (setq match-again (looking-at search-string))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
477 ;; 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
|
478 (if (and (listp replacements) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
479 (= next-rotate-count replace-count)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
480 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
481 (setq next-rotate-count |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
482 (+ next-rotate-count repeat-count)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
483 (setq next-replacement (nth replacement-index replacements)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
484 (setq replacement-index (% (1+ replacement-index) (length replacements))))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
485 (if (not query-flag) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
486 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
487 (store-match-data real-match-data) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
488 (replace-match next-replacement nocasify literal) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
489 (setq replace-count (1+ replace-count))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
490 (undo-boundary) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
491 (let (done replaced key def) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
492 ;; 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
|
493 ;; which means it has finished handling this occurrence. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
494 (while (not done) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
495 (replace-highlight (match-beginning 0) (match-end 0)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
496 (message (substitute-command-keys |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
497 "Query replacing %s with %s: (\\<query-replace-map>\\[help] for help) ") |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
498 from-string next-replacement) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
499 (setq key (read-event)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
500 (setq key (vector key)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
501 (setq def (lookup-key map key)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
502 ;; 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
|
503 (store-match-data real-match-data) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
504 (cond ((eq def 'help) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
505 (with-output-to-temp-buffer "*Help*" |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
506 (princ |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
507 (concat "Query replacing " |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
508 (if regexp-flag "regexp " "") |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
509 from-string " with " |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
510 next-replacement ".\n\n" |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
511 (substitute-command-keys |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
512 query-replace-help))))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
513 ((eq def 'exit) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
514 (setq keep-going nil) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
515 (setq done t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
516 ((eq def 'backup) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
517 (let ((elt (car stack))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
518 (goto-char (car elt)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
519 (setq replaced (eq t (cdr elt))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
520 (or replaced |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
521 (store-match-data (cdr elt))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
522 (setq stack (cdr stack)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
523 ((eq def 'act) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
524 (or replaced |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
525 (replace-match next-replacement nocasify literal)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
526 (setq done t replaced t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
527 ((eq def 'act-and-exit) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
528 (or replaced |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
529 (replace-match next-replacement nocasify literal)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
530 (setq keep-going nil) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
531 (setq done t replaced t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
532 ((eq def 'act-and-show) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
533 (if (not replaced) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
534 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
535 (replace-match next-replacement nocasify literal) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
536 (setq replaced t)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
537 ((eq def 'automatic) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
538 (or replaced |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
539 (replace-match next-replacement nocasify literal)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
540 (setq done t query-flag nil replaced t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
541 ((eq def 'skip) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
542 (setq done t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
543 ((eq def 'recenter) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
544 (recenter nil)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
545 ((eq def 'edit) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
546 (store-match-data |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
547 (prog1 (match-data) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
548 (save-excursion (recursive-edit)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
549 ;; Before we make the replacement, |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
550 ;; decide whether the search string |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
551 ;; can match again just after this match. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
552 (if regexp-flag |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
553 (setq match-again (looking-at search-string)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
554 ((eq def 'delete-and-edit) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
555 (delete-region (match-beginning 0) (match-end 0)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
556 (store-match-data |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
557 (prog1 (match-data) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
558 (save-excursion (recursive-edit)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
559 (setq replaced t)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
560 (t |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
561 (setq keep-going nil) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
562 (setq unread-command-events |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
563 (append (listify-key-sequence key) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
564 unread-command-events)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
565 (setq done t)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
566 ;; Record previous position for ^ when we move on. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
567 ;; Change markers to numbers in the match data |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
568 ;; since lots of markers slow down editing. |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
569 (setq stack |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
570 (cons (cons (point) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
571 (or replaced |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
572 (mapcar |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
573 (function (lambda (elt) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
574 (and elt |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
575 (marker-position elt)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
576 (match-data)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
577 stack)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
578 (if replaced (setq replace-count (1+ replace-count))))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
579 (setq lastrepl (point))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
580 (replace-dehighlight)) |
2080
6ee99287dbc6
(query-replace-map): New keymap.
Richard M. Stallman <rms@gnu.org>
parents:
1820
diff
changeset
|
581 (and keep-going stack))) |
61 | 582 |
5393
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
583 (defvar query-replace-highlight nil |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
584 "*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
|
585 |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
586 (defvar replace-overlay nil) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
587 |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
588 (defun replace-dehighlight () |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
589 (and replace-overlay |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
590 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
591 (delete-overlay replace-overlay) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
592 (setq replace-overlay nil)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
593 |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
594 (defun replace-highlight (start end) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
595 (and query-replace-highlight |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
596 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
597 (or replace-overlay |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
598 (progn |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
599 (setq replace-overlay (make-overlay start end)) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
600 (overlay-put replace-overlay 'face |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
601 (if (internal-find-face 'query-replace) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
602 'query-replace 'region)))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
603 (move-overlay replace-overlay start end (current-buffer))))) |
cfd16a1af914
(query-replace-highlight): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5337
diff
changeset
|
604 |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
324
diff
changeset
|
605 ;;; replace.el ends here |