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