annotate lisp/replace.el @ 21669:9861518505cb

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