Mercurial > emacs
annotate src/search.c @ 7056:0a18af7eb587
Implement special frames for specified buffers.
(Vspecial_display_buffer_names, Vspecial_display_regexps)
(Vspecial_display_function): New variables.
(syms_of_window): Set up Lisp variables.
(Fdisplay_buffer): Handle them.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 23 Apr 1994 21:37:15 +0000 |
parents | 490b7e2db978 |
children | cd81dba38a49 |
rev | line source |
---|---|
603 | 1 /* String search routines for GNU Emacs. |
2961 | 2 Copyright (C) 1985, 1986, 1987, 1993 Free Software Foundation, Inc. |
603 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 1, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4635
diff
changeset
|
21 #include <config.h> |
603 | 22 #include "lisp.h" |
23 #include "syntax.h" | |
24 #include "buffer.h" | |
25 #include "commands.h" | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2393
diff
changeset
|
26 #include "blockinput.h" |
621 | 27 |
603 | 28 #include <sys/types.h> |
29 #include "regex.h" | |
30 | |
31 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
32 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
33 | |
34 /* We compile regexps into this buffer and then use it for searching. */ | |
35 | |
36 struct re_pattern_buffer searchbuf; | |
37 | |
38 char search_fastmap[0400]; | |
39 | |
40 /* Last regexp we compiled */ | |
41 | |
42 Lisp_Object last_regexp; | |
43 | |
621 | 44 /* Every call to re_match, etc., must pass &search_regs as the regs |
45 argument unless you can show it is unnecessary (i.e., if re_match | |
46 is certainly going to be called again before region-around-match | |
47 can be called). | |
48 | |
49 Since the registers are now dynamically allocated, we need to make | |
50 sure not to refer to the Nth register before checking that it has | |
708 | 51 been allocated by checking search_regs.num_regs. |
603 | 52 |
708 | 53 The regex code keeps track of whether it has allocated the search |
54 buffer using bits in searchbuf. This means that whenever you | |
55 compile a new pattern, it completely forgets whether it has | |
56 allocated any registers, and will allocate new registers the next | |
57 time you call a searching or matching function. Therefore, we need | |
58 to call re_set_registers after compiling a new pattern or after | |
59 setting the match registers, so that the regex functions will be | |
60 able to free or re-allocate it properly. */ | |
603 | 61 static struct re_registers search_regs; |
62 | |
727 | 63 /* The buffer in which the last search was performed, or |
64 Qt if the last search was done in a string; | |
65 Qnil if no searching has been done yet. */ | |
66 static Lisp_Object last_thing_searched; | |
603 | 67 |
68 /* error condition signalled when regexp compile_pattern fails */ | |
69 | |
70 Lisp_Object Qinvalid_regexp; | |
71 | |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
72 static void set_search_regs (); |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
73 |
603 | 74 static void |
75 matcher_overflow () | |
76 { | |
77 error ("Stack overflow in regexp matcher"); | |
78 } | |
79 | |
80 #ifdef __STDC__ | |
81 #define CONST const | |
82 #else | |
83 #define CONST | |
84 #endif | |
85 | |
86 /* Compile a regexp and signal a Lisp error if anything goes wrong. */ | |
87 | |
708 | 88 compile_pattern (pattern, bufp, regp, translate) |
603 | 89 Lisp_Object pattern; |
90 struct re_pattern_buffer *bufp; | |
708 | 91 struct re_registers *regp; |
603 | 92 char *translate; |
93 { | |
94 CONST char *val; | |
95 Lisp_Object dummy; | |
96 | |
97 if (EQ (pattern, last_regexp) | |
98 && translate == bufp->translate) | |
99 return; | |
708 | 100 |
603 | 101 last_regexp = Qnil; |
102 bufp->translate = translate; | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2393
diff
changeset
|
103 BLOCK_INPUT; |
4635
ad4add779dac
(compile_pattern): Cast result of re_compile_pattern.
Richard M. Stallman <rms@gnu.org>
parents:
4299
diff
changeset
|
104 val = (CONST char *) re_compile_pattern ((char *) XSTRING (pattern)->data, |
ad4add779dac
(compile_pattern): Cast result of re_compile_pattern.
Richard M. Stallman <rms@gnu.org>
parents:
4299
diff
changeset
|
105 XSTRING (pattern)->size, bufp); |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2393
diff
changeset
|
106 UNBLOCK_INPUT; |
603 | 107 if (val) |
108 { | |
109 dummy = build_string (val); | |
110 while (1) | |
111 Fsignal (Qinvalid_regexp, Fcons (dummy, Qnil)); | |
112 } | |
708 | 113 |
603 | 114 last_regexp = pattern; |
708 | 115 |
116 /* Advise the searching functions about the space we have allocated | |
117 for register data. */ | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2393
diff
changeset
|
118 BLOCK_INPUT; |
808 | 119 if (regp) |
120 re_set_registers (bufp, regp, regp->num_regs, regp->start, regp->end); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2393
diff
changeset
|
121 UNBLOCK_INPUT; |
708 | 122 |
603 | 123 return; |
124 } | |
125 | |
126 /* Error condition used for failing searches */ | |
127 Lisp_Object Qsearch_failed; | |
128 | |
129 Lisp_Object | |
130 signal_failure (arg) | |
131 Lisp_Object arg; | |
132 { | |
133 Fsignal (Qsearch_failed, Fcons (arg, Qnil)); | |
134 return Qnil; | |
135 } | |
136 | |
137 DEFUN ("looking-at", Flooking_at, Slooking_at, 1, 1, 0, | |
638 | 138 "Return t if text after point matches regular expression PAT.\n\ |
139 This function modifies the match data that `match-beginning',\n\ | |
140 `match-end' and `match-data' access; save and restore the match\n\ | |
635
197f38dd0105
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
621
diff
changeset
|
141 data if you want to preserve them.") |
603 | 142 (string) |
143 Lisp_Object string; | |
144 { | |
145 Lisp_Object val; | |
146 unsigned char *p1, *p2; | |
147 int s1, s2; | |
148 register int i; | |
149 | |
150 CHECK_STRING (string, 0); | |
708 | 151 compile_pattern (string, &searchbuf, &search_regs, |
603 | 152 !NILP (current_buffer->case_fold_search) ? DOWNCASE_TABLE : 0); |
153 | |
154 immediate_quit = 1; | |
155 QUIT; /* Do a pending quit right away, to avoid paradoxical behavior */ | |
156 | |
157 /* Get pointers and sizes of the two strings | |
158 that make up the visible portion of the buffer. */ | |
159 | |
160 p1 = BEGV_ADDR; | |
161 s1 = GPT - BEGV; | |
162 p2 = GAP_END_ADDR; | |
163 s2 = ZV - GPT; | |
164 if (s1 < 0) | |
165 { | |
166 p2 = p1; | |
167 s2 = ZV - BEGV; | |
168 s1 = 0; | |
169 } | |
170 if (s2 < 0) | |
171 { | |
172 s1 = ZV - BEGV; | |
173 s2 = 0; | |
174 } | |
175 | |
176 i = re_match_2 (&searchbuf, (char *) p1, s1, (char *) p2, s2, | |
177 point - BEGV, &search_regs, | |
178 ZV - BEGV); | |
179 if (i == -2) | |
180 matcher_overflow (); | |
181 | |
182 val = (0 <= i ? Qt : Qnil); | |
621 | 183 for (i = 0; i < search_regs.num_regs; i++) |
603 | 184 if (search_regs.start[i] >= 0) |
185 { | |
186 search_regs.start[i] += BEGV; | |
187 search_regs.end[i] += BEGV; | |
188 } | |
727 | 189 XSET (last_thing_searched, Lisp_Buffer, current_buffer); |
603 | 190 immediate_quit = 0; |
191 return val; | |
192 } | |
193 | |
194 DEFUN ("string-match", Fstring_match, Sstring_match, 2, 3, 0, | |
195 "Return index of start of first match for REGEXP in STRING, or nil.\n\ | |
196 If third arg START is non-nil, start search at that index in STRING.\n\ | |
197 For index of first char beyond the match, do (match-end 0).\n\ | |
198 `match-end' and `match-beginning' also give indices of substrings\n\ | |
199 matched by parenthesis constructs in the pattern.") | |
200 (regexp, string, start) | |
201 Lisp_Object regexp, string, start; | |
202 { | |
203 int val; | |
204 int s; | |
205 | |
206 CHECK_STRING (regexp, 0); | |
207 CHECK_STRING (string, 1); | |
208 | |
209 if (NILP (start)) | |
210 s = 0; | |
211 else | |
212 { | |
213 int len = XSTRING (string)->size; | |
214 | |
215 CHECK_NUMBER (start, 2); | |
216 s = XINT (start); | |
217 if (s < 0 && -s <= len) | |
218 s = len - s; | |
219 else if (0 > s || s > len) | |
220 args_out_of_range (string, start); | |
221 } | |
222 | |
708 | 223 compile_pattern (regexp, &searchbuf, &search_regs, |
603 | 224 !NILP (current_buffer->case_fold_search) ? DOWNCASE_TABLE : 0); |
225 immediate_quit = 1; | |
226 val = re_search (&searchbuf, (char *) XSTRING (string)->data, | |
227 XSTRING (string)->size, s, XSTRING (string)->size - s, | |
228 &search_regs); | |
229 immediate_quit = 0; | |
727 | 230 last_thing_searched = Qt; |
603 | 231 if (val == -2) |
232 matcher_overflow (); | |
233 if (val < 0) return Qnil; | |
234 return make_number (val); | |
235 } | |
842 | 236 |
237 /* Match REGEXP against STRING, searching all of STRING, | |
238 and return the index of the match, or negative on failure. | |
239 This does not clobber the match data. */ | |
240 | |
241 int | |
242 fast_string_match (regexp, string) | |
243 Lisp_Object regexp, string; | |
244 { | |
245 int val; | |
246 | |
247 compile_pattern (regexp, &searchbuf, 0, 0); | |
248 immediate_quit = 1; | |
249 val = re_search (&searchbuf, (char *) XSTRING (string)->data, | |
250 XSTRING (string)->size, 0, XSTRING (string)->size, | |
251 0); | |
252 immediate_quit = 0; | |
253 return val; | |
254 } | |
603 | 255 |
648 | 256 /* Search for COUNT instances of the character TARGET, starting at START. |
257 If COUNT is negative, search backwards. | |
258 | |
259 If we find COUNT instances, set *SHORTAGE to zero, and return the | |
1413 | 260 position after the COUNTth match. Note that for reverse motion |
261 this is not the same as the usual convention for Emacs motion commands. | |
648 | 262 |
263 If we don't find COUNT instances before reaching the end of the | |
264 buffer (or the beginning, if scanning backwards), set *SHORTAGE to | |
265 the number of TARGETs left unfound, and return the end of the | |
5756
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
266 buffer we bumped up against. |
648 | 267 |
5756
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
268 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do |
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
269 except when inside redisplay. */ |
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
270 |
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
271 scan_buffer (target, start, count, shortage, allow_quit) |
648 | 272 int *shortage, start; |
273 register int count, target; | |
5756
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
274 int allow_quit; |
603 | 275 { |
648 | 276 int limit = ((count > 0) ? ZV - 1 : BEGV); |
277 int direction = ((count > 0) ? 1 : -1); | |
278 | |
279 register unsigned char *cursor; | |
603 | 280 unsigned char *base; |
648 | 281 |
282 register int ceiling; | |
283 register unsigned char *ceiling_addr; | |
603 | 284 |
285 if (shortage != 0) | |
286 *shortage = 0; | |
287 | |
5756
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
288 immediate_quit = allow_quit; |
603 | 289 |
648 | 290 if (count > 0) |
291 while (start != limit + 1) | |
603 | 292 { |
648 | 293 ceiling = BUFFER_CEILING_OF (start); |
294 ceiling = min (limit, ceiling); | |
295 ceiling_addr = &FETCH_CHAR (ceiling) + 1; | |
296 base = (cursor = &FETCH_CHAR (start)); | |
603 | 297 while (1) |
298 { | |
648 | 299 while (*cursor != target && ++cursor != ceiling_addr) |
603 | 300 ; |
648 | 301 if (cursor != ceiling_addr) |
603 | 302 { |
648 | 303 if (--count == 0) |
603 | 304 { |
305 immediate_quit = 0; | |
648 | 306 return (start + cursor - base + 1); |
603 | 307 } |
308 else | |
648 | 309 if (++cursor == ceiling_addr) |
603 | 310 break; |
311 } | |
312 else | |
313 break; | |
314 } | |
648 | 315 start += cursor - base; |
603 | 316 } |
317 else | |
318 { | |
648 | 319 start--; /* first character we scan */ |
320 while (start > limit - 1) | |
321 { /* we WILL scan under start */ | |
322 ceiling = BUFFER_FLOOR_OF (start); | |
323 ceiling = max (limit, ceiling); | |
324 ceiling_addr = &FETCH_CHAR (ceiling) - 1; | |
325 base = (cursor = &FETCH_CHAR (start)); | |
603 | 326 cursor++; |
327 while (1) | |
328 { | |
648 | 329 while (--cursor != ceiling_addr && *cursor != target) |
603 | 330 ; |
648 | 331 if (cursor != ceiling_addr) |
603 | 332 { |
648 | 333 if (++count == 0) |
603 | 334 { |
335 immediate_quit = 0; | |
648 | 336 return (start + cursor - base + 1); |
603 | 337 } |
338 } | |
339 else | |
340 break; | |
341 } | |
648 | 342 start += cursor - base; |
603 | 343 } |
344 } | |
345 immediate_quit = 0; | |
346 if (shortage != 0) | |
648 | 347 *shortage = count * direction; |
348 return (start + ((direction == 1 ? 0 : 1))); | |
603 | 349 } |
350 | |
351 int | |
352 find_next_newline (from, cnt) | |
353 register int from, cnt; | |
354 { | |
5756
a54c236b43c6
(scan_buffer): New arg ALLOW_QUIT.
Richard M. Stallman <rms@gnu.org>
parents:
5556
diff
changeset
|
355 return scan_buffer ('\n', from, cnt, (int *) 0, 1); |
603 | 356 } |
357 | |
1684
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
358 Lisp_Object skip_chars (); |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
359 |
603 | 360 DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0, |
4954
dc4d4f874b5c
(Fskip_chars_backward, Fskip_chars_forward): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4951
diff
changeset
|
361 "Move point forward, stopping before a char not in STRING, or at pos LIM.\n\ |
dc4d4f874b5c
(Fskip_chars_backward, Fskip_chars_forward): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4951
diff
changeset
|
362 STRING is like the inside of a `[...]' in a regular expression\n\ |
603 | 363 except that `]' is never special and `\\' quotes `^', `-' or `\\'.\n\ |
364 Thus, with arg \"a-zA-Z\", this skips letters stopping before first nonletter.\n\ | |
1684
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
365 With arg \"^a-zA-Z\", skips nonletters stopping before first letter.\n\ |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
366 Returns the distance traveled, either zero or positive.") |
603 | 367 (string, lim) |
368 Lisp_Object string, lim; | |
369 { | |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
370 return skip_chars (1, 0, string, lim); |
603 | 371 } |
372 | |
373 DEFUN ("skip-chars-backward", Fskip_chars_backward, Sskip_chars_backward, 1, 2, 0, | |
4954
dc4d4f874b5c
(Fskip_chars_backward, Fskip_chars_forward): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4951
diff
changeset
|
374 "Move point backward, stopping after a char not in STRING, or at pos LIM.\n\ |
1684
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
375 See `skip-chars-forward' for details.\n\ |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
376 Returns the distance traveled, either zero or negative.") |
603 | 377 (string, lim) |
378 Lisp_Object string, lim; | |
379 { | |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
380 return skip_chars (0, 0, string, lim); |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
381 } |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
382 |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
383 DEFUN ("skip-syntax-forward", Fskip_syntax_forward, Sskip_syntax_forward, 1, 2, 0, |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
384 "Move point forward across chars in specified syntax classes.\n\ |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
385 SYNTAX is a string of syntax code characters.\n\ |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
386 Stop before a char whose syntax is not in SYNTAX, or at position LIM.\n\ |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
387 If SYNTAX starts with ^, skip characters whose syntax is NOT in SYNTAX.\n\ |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
388 This function returns the distance traveled, either zero or positive.") |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
389 (syntax, lim) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
390 Lisp_Object syntax, lim; |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
391 { |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
392 return skip_chars (1, 1, syntax, lim); |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
393 } |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
394 |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
395 DEFUN ("skip-syntax-backward", Fskip_syntax_backward, Sskip_syntax_backward, 1, 2, 0, |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
396 "Move point backward across chars in specified syntax classes.\n\ |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
397 SYNTAX is a string of syntax code characters.\n\ |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
398 Stop on reaching a char whose syntax is not in SYNTAX, or at position LIM.\n\ |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
399 If SYNTAX starts with ^, skip characters whose syntax is NOT in SYNTAX.\n\ |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
400 This function returns the distance traveled, either zero or negative.") |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
401 (syntax, lim) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
402 Lisp_Object syntax, lim; |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
403 { |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
404 return skip_chars (0, 1, syntax, lim); |
603 | 405 } |
406 | |
1684
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
407 Lisp_Object |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
408 skip_chars (forwardp, syntaxp, string, lim) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
409 int forwardp, syntaxp; |
603 | 410 Lisp_Object string, lim; |
411 { | |
412 register unsigned char *p, *pend; | |
413 register unsigned char c; | |
414 unsigned char fastmap[0400]; | |
415 int negate = 0; | |
416 register int i; | |
417 | |
418 CHECK_STRING (string, 0); | |
419 | |
420 if (NILP (lim)) | |
421 XSET (lim, Lisp_Int, forwardp ? ZV : BEGV); | |
422 else | |
423 CHECK_NUMBER_COERCE_MARKER (lim, 1); | |
424 | |
4831
66a523672100
(skip_chars): Reinstate check for end of buffer, ignoring cryptic
Brian Fox <bfox@gnu.org>
parents:
4713
diff
changeset
|
425 /* In any case, don't allow scan outside bounds of buffer. */ |
4951
be690aaa7194
(skip_chars): Finish reenabling checks for buffer bounds.
Richard M. Stallman <rms@gnu.org>
parents:
4882
diff
changeset
|
426 /* jla turned this off, for no known reason. |
be690aaa7194
(skip_chars): Finish reenabling checks for buffer bounds.
Richard M. Stallman <rms@gnu.org>
parents:
4882
diff
changeset
|
427 bfox turned the ZV part on, and rms turned the |
be690aaa7194
(skip_chars): Finish reenabling checks for buffer bounds.
Richard M. Stallman <rms@gnu.org>
parents:
4882
diff
changeset
|
428 BEGV part back on. */ |
be690aaa7194
(skip_chars): Finish reenabling checks for buffer bounds.
Richard M. Stallman <rms@gnu.org>
parents:
4882
diff
changeset
|
429 if (XINT (lim) > ZV) |
603 | 430 XFASTINT (lim) = ZV; |
4951
be690aaa7194
(skip_chars): Finish reenabling checks for buffer bounds.
Richard M. Stallman <rms@gnu.org>
parents:
4882
diff
changeset
|
431 if (XINT (lim) < BEGV) |
603 | 432 XFASTINT (lim) = BEGV; |
433 | |
434 p = XSTRING (string)->data; | |
435 pend = p + XSTRING (string)->size; | |
436 bzero (fastmap, sizeof fastmap); | |
437 | |
438 if (p != pend && *p == '^') | |
439 { | |
440 negate = 1; p++; | |
441 } | |
442 | |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
443 /* Find the characters specified and set their elements of fastmap. |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
444 If syntaxp, each character counts as itself. |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
445 Otherwise, handle backslashes and ranges specially */ |
603 | 446 |
447 while (p != pend) | |
448 { | |
449 c = *p++; | |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
450 if (syntaxp) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
451 fastmap[c] = 1; |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
452 else |
603 | 453 { |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
454 if (c == '\\') |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
455 { |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
456 if (p == pend) break; |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
457 c = *p++; |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
458 } |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
459 if (p != pend && *p == '-') |
603 | 460 { |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
461 p++; |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
462 if (p == pend) break; |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
463 while (c <= *p) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
464 { |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
465 fastmap[c] = 1; |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
466 c++; |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
467 } |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
468 p++; |
603 | 469 } |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
470 else |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
471 fastmap[c] = 1; |
603 | 472 } |
473 } | |
474 | |
6196
390dfe557c7d
(skip_chars): Treat `-' as alias for space, if syntaxp.
Richard M. Stallman <rms@gnu.org>
parents:
5756
diff
changeset
|
475 if (syntaxp && fastmap['-'] != 0) |
390dfe557c7d
(skip_chars): Treat `-' as alias for space, if syntaxp.
Richard M. Stallman <rms@gnu.org>
parents:
5756
diff
changeset
|
476 fastmap[' '] = 1; |
390dfe557c7d
(skip_chars): Treat `-' as alias for space, if syntaxp.
Richard M. Stallman <rms@gnu.org>
parents:
5756
diff
changeset
|
477 |
603 | 478 /* If ^ was the first character, complement the fastmap. */ |
479 | |
480 if (negate) | |
481 for (i = 0; i < sizeof fastmap; i++) | |
482 fastmap[i] ^= 1; | |
483 | |
1684
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
484 { |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
485 int start_point = point; |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
486 |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
487 immediate_quit = 1; |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
488 if (syntaxp) |
1684
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
489 { |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
490 |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
491 if (forwardp) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
492 { |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
493 while (point < XINT (lim) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
494 && fastmap[(unsigned char) syntax_code_spec[(int) SYNTAX (FETCH_CHAR (point))]]) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
495 SET_PT (point + 1); |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
496 } |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
497 else |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
498 { |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
499 while (point > XINT (lim) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
500 && fastmap[(unsigned char) syntax_code_spec[(int) SYNTAX (FETCH_CHAR (point - 1))]]) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
501 SET_PT (point - 1); |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
502 } |
1684
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
503 } |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
504 else |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
505 { |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
506 if (forwardp) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
507 { |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
508 while (point < XINT (lim) && fastmap[FETCH_CHAR (point)]) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
509 SET_PT (point + 1); |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
510 } |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
511 else |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
512 { |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
513 while (point > XINT (lim) && fastmap[FETCH_CHAR (point - 1)]) |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
514 SET_PT (point - 1); |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
515 } |
1684
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
516 } |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
517 immediate_quit = 0; |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
518 |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
519 return make_number (point - start_point); |
f4d848dea8ff
* search.c (Fskip_chars_forward, Fskip_chars_backward): Return the
Jim Blandy <jimb@redhat.com>
parents:
1523
diff
changeset
|
520 } |
603 | 521 } |
522 | |
523 /* Subroutines of Lisp buffer search functions. */ | |
524 | |
525 static Lisp_Object | |
526 search_command (string, bound, noerror, count, direction, RE) | |
527 Lisp_Object string, bound, noerror, count; | |
528 int direction; | |
529 int RE; | |
530 { | |
531 register int np; | |
532 int lim; | |
533 int n = direction; | |
534 | |
535 if (!NILP (count)) | |
536 { | |
537 CHECK_NUMBER (count, 3); | |
538 n *= XINT (count); | |
539 } | |
540 | |
541 CHECK_STRING (string, 0); | |
542 if (NILP (bound)) | |
543 lim = n > 0 ? ZV : BEGV; | |
544 else | |
545 { | |
546 CHECK_NUMBER_COERCE_MARKER (bound, 1); | |
547 lim = XINT (bound); | |
548 if (n > 0 ? lim < point : lim > point) | |
549 error ("Invalid search bound (wrong side of point)"); | |
550 if (lim > ZV) | |
551 lim = ZV; | |
552 if (lim < BEGV) | |
553 lim = BEGV; | |
554 } | |
555 | |
556 np = search_buffer (string, point, lim, n, RE, | |
557 (!NILP (current_buffer->case_fold_search) | |
558 ? XSTRING (current_buffer->case_canon_table)->data : 0), | |
559 (!NILP (current_buffer->case_fold_search) | |
560 ? XSTRING (current_buffer->case_eqv_table)->data : 0)); | |
561 if (np <= 0) | |
562 { | |
563 if (NILP (noerror)) | |
564 return signal_failure (string); | |
565 if (!EQ (noerror, Qt)) | |
566 { | |
567 if (lim < BEGV || lim > ZV) | |
568 abort (); | |
1878
1c26d0049d4f
(search_command): #if 0 previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1877
diff
changeset
|
569 SET_PT (lim); |
1c26d0049d4f
(search_command): #if 0 previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1877
diff
changeset
|
570 return Qnil; |
1c26d0049d4f
(search_command): #if 0 previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1877
diff
changeset
|
571 #if 0 /* This would be clean, but maybe programs depend on |
1c26d0049d4f
(search_command): #if 0 previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1877
diff
changeset
|
572 a value of nil here. */ |
1877
7786f61ec635
(search_command): When moving to LIM on failure, return LIM.
Richard M. Stallman <rms@gnu.org>
parents:
1684
diff
changeset
|
573 np = lim; |
1878
1c26d0049d4f
(search_command): #if 0 previous change.
Richard M. Stallman <rms@gnu.org>
parents:
1877
diff
changeset
|
574 #endif |
603 | 575 } |
1877
7786f61ec635
(search_command): When moving to LIM on failure, return LIM.
Richard M. Stallman <rms@gnu.org>
parents:
1684
diff
changeset
|
576 else |
7786f61ec635
(search_command): When moving to LIM on failure, return LIM.
Richard M. Stallman <rms@gnu.org>
parents:
1684
diff
changeset
|
577 return Qnil; |
603 | 578 } |
579 | |
580 if (np < BEGV || np > ZV) | |
581 abort (); | |
582 | |
583 SET_PT (np); | |
584 | |
585 return make_number (np); | |
586 } | |
587 | |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
588 /* Search for the n'th occurrence of STRING in the current buffer, |
603 | 589 starting at position POS and stopping at position LIM, |
590 treating PAT as a literal string if RE is false or as | |
591 a regular expression if RE is true. | |
592 | |
593 If N is positive, searching is forward and LIM must be greater than POS. | |
594 If N is negative, searching is backward and LIM must be less than POS. | |
595 | |
596 Returns -x if only N-x occurrences found (x > 0), | |
597 or else the position at the beginning of the Nth occurrence | |
598 (if searching backward) or the end (if searching forward). */ | |
599 | |
600 search_buffer (string, pos, lim, n, RE, trt, inverse_trt) | |
601 Lisp_Object string; | |
602 int pos; | |
603 int lim; | |
604 int n; | |
605 int RE; | |
606 register unsigned char *trt; | |
607 register unsigned char *inverse_trt; | |
608 { | |
609 int len = XSTRING (string)->size; | |
610 unsigned char *base_pat = XSTRING (string)->data; | |
611 register int *BM_tab; | |
612 int *BM_tab_base; | |
613 register int direction = ((n > 0) ? 1 : -1); | |
614 register int dirlen; | |
615 int infinity, limit, k, stride_for_teases; | |
616 register unsigned char *pat, *cursor, *p_limit; | |
617 register int i, j; | |
618 unsigned char *p1, *p2; | |
619 int s1, s2; | |
620 | |
621 /* Null string is found at starting position. */ | |
4299
7a2e1d7362c5
(search_buffer): If n is 0, just return POS.
Richard M. Stallman <rms@gnu.org>
parents:
3615
diff
changeset
|
622 if (len == 0) |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
623 { |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
624 set_search_regs (pos, 0); |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
625 return pos; |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
626 } |
4299
7a2e1d7362c5
(search_buffer): If n is 0, just return POS.
Richard M. Stallman <rms@gnu.org>
parents:
3615
diff
changeset
|
627 |
7a2e1d7362c5
(search_buffer): If n is 0, just return POS.
Richard M. Stallman <rms@gnu.org>
parents:
3615
diff
changeset
|
628 /* Searching 0 times means don't move. */ |
7a2e1d7362c5
(search_buffer): If n is 0, just return POS.
Richard M. Stallman <rms@gnu.org>
parents:
3615
diff
changeset
|
629 if (n == 0) |
603 | 630 return pos; |
631 | |
632 if (RE) | |
708 | 633 compile_pattern (string, &searchbuf, &search_regs, (char *) trt); |
603 | 634 |
635 if (RE /* Here we detect whether the */ | |
636 /* generality of an RE search is */ | |
637 /* really needed. */ | |
638 /* first item is "exact match" */ | |
621 | 639 && *(searchbuf.buffer) == (char) RE_EXACTN_VALUE |
603 | 640 && searchbuf.buffer[1] + 2 == searchbuf.used) /*first is ONLY item */ |
641 { | |
642 RE = 0; /* can do straight (non RE) search */ | |
643 pat = (base_pat = (unsigned char *) searchbuf.buffer + 2); | |
644 /* trt already applied */ | |
645 len = searchbuf.used - 2; | |
646 } | |
647 else if (!RE) | |
648 { | |
649 pat = (unsigned char *) alloca (len); | |
650 | |
651 for (i = len; i--;) /* Copy the pattern; apply trt */ | |
652 *pat++ = (((int) trt) ? trt [*base_pat++] : *base_pat++); | |
653 pat -= len; base_pat = pat; | |
654 } | |
655 | |
656 if (RE) | |
657 { | |
658 immediate_quit = 1; /* Quit immediately if user types ^G, | |
659 because letting this function finish | |
660 can take too long. */ | |
661 QUIT; /* Do a pending quit right away, | |
662 to avoid paradoxical behavior */ | |
663 /* Get pointers and sizes of the two strings | |
664 that make up the visible portion of the buffer. */ | |
665 | |
666 p1 = BEGV_ADDR; | |
667 s1 = GPT - BEGV; | |
668 p2 = GAP_END_ADDR; | |
669 s2 = ZV - GPT; | |
670 if (s1 < 0) | |
671 { | |
672 p2 = p1; | |
673 s2 = ZV - BEGV; | |
674 s1 = 0; | |
675 } | |
676 if (s2 < 0) | |
677 { | |
678 s1 = ZV - BEGV; | |
679 s2 = 0; | |
680 } | |
681 while (n < 0) | |
682 { | |
2475
052bbdf1b817
(search_buffer): Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
683 int val; |
052bbdf1b817
(search_buffer): Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
684 val = re_search_2 (&searchbuf, (char *) p1, s1, (char *) p2, s2, |
052bbdf1b817
(search_buffer): Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
685 pos - BEGV, lim - pos, &search_regs, |
052bbdf1b817
(search_buffer): Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
686 /* Don't allow match past current point */ |
052bbdf1b817
(search_buffer): Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
687 pos - BEGV); |
603 | 688 if (val == -2) |
689 matcher_overflow (); | |
690 if (val >= 0) | |
691 { | |
692 j = BEGV; | |
621 | 693 for (i = 0; i < search_regs.num_regs; i++) |
603 | 694 if (search_regs.start[i] >= 0) |
695 { | |
696 search_regs.start[i] += j; | |
697 search_regs.end[i] += j; | |
698 } | |
727 | 699 XSET (last_thing_searched, Lisp_Buffer, current_buffer); |
603 | 700 /* Set pos to the new position. */ |
701 pos = search_regs.start[0]; | |
702 } | |
703 else | |
704 { | |
705 immediate_quit = 0; | |
706 return (n); | |
707 } | |
708 n++; | |
709 } | |
710 while (n > 0) | |
711 { | |
2475
052bbdf1b817
(search_buffer): Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
712 int val; |
052bbdf1b817
(search_buffer): Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
713 val = re_search_2 (&searchbuf, (char *) p1, s1, (char *) p2, s2, |
052bbdf1b817
(search_buffer): Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
714 pos - BEGV, lim - pos, &search_regs, |
052bbdf1b817
(search_buffer): Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
2439
diff
changeset
|
715 lim - BEGV); |
603 | 716 if (val == -2) |
717 matcher_overflow (); | |
718 if (val >= 0) | |
719 { | |
720 j = BEGV; | |
621 | 721 for (i = 0; i < search_regs.num_regs; i++) |
603 | 722 if (search_regs.start[i] >= 0) |
723 { | |
724 search_regs.start[i] += j; | |
725 search_regs.end[i] += j; | |
726 } | |
727 | 727 XSET (last_thing_searched, Lisp_Buffer, current_buffer); |
603 | 728 pos = search_regs.end[0]; |
729 } | |
730 else | |
731 { | |
732 immediate_quit = 0; | |
733 return (0 - n); | |
734 } | |
735 n--; | |
736 } | |
737 immediate_quit = 0; | |
738 return (pos); | |
739 } | |
740 else /* non-RE case */ | |
741 { | |
742 #ifdef C_ALLOCA | |
743 int BM_tab_space[0400]; | |
744 BM_tab = &BM_tab_space[0]; | |
745 #else | |
746 BM_tab = (int *) alloca (0400 * sizeof (int)); | |
747 #endif | |
748 /* The general approach is that we are going to maintain that we know */ | |
749 /* the first (closest to the present position, in whatever direction */ | |
750 /* we're searching) character that could possibly be the last */ | |
751 /* (furthest from present position) character of a valid match. We */ | |
752 /* advance the state of our knowledge by looking at that character */ | |
753 /* and seeing whether it indeed matches the last character of the */ | |
754 /* pattern. If it does, we take a closer look. If it does not, we */ | |
755 /* move our pointer (to putative last characters) as far as is */ | |
756 /* logically possible. This amount of movement, which I call a */ | |
757 /* stride, will be the length of the pattern if the actual character */ | |
758 /* appears nowhere in the pattern, otherwise it will be the distance */ | |
759 /* from the last occurrence of that character to the end of the */ | |
760 /* pattern. */ | |
761 /* As a coding trick, an enormous stride is coded into the table for */ | |
762 /* characters that match the last character. This allows use of only */ | |
763 /* a single test, a test for having gone past the end of the */ | |
764 /* permissible match region, to test for both possible matches (when */ | |
765 /* the stride goes past the end immediately) and failure to */ | |
766 /* match (where you get nudged past the end one stride at a time). */ | |
767 | |
768 /* Here we make a "mickey mouse" BM table. The stride of the search */ | |
769 /* is determined only by the last character of the putative match. */ | |
770 /* If that character does not match, we will stride the proper */ | |
771 /* distance to propose a match that superimposes it on the last */ | |
772 /* instance of a character that matches it (per trt), or misses */ | |
773 /* it entirely if there is none. */ | |
774 | |
775 dirlen = len * direction; | |
776 infinity = dirlen - (lim + pos + len + len) * direction; | |
777 if (direction < 0) | |
778 pat = (base_pat += len - 1); | |
779 BM_tab_base = BM_tab; | |
780 BM_tab += 0400; | |
781 j = dirlen; /* to get it in a register */ | |
782 /* A character that does not appear in the pattern induces a */ | |
783 /* stride equal to the pattern length. */ | |
784 while (BM_tab_base != BM_tab) | |
785 { | |
786 *--BM_tab = j; | |
787 *--BM_tab = j; | |
788 *--BM_tab = j; | |
789 *--BM_tab = j; | |
790 } | |
791 i = 0; | |
792 while (i != infinity) | |
793 { | |
794 j = pat[i]; i += direction; | |
795 if (i == dirlen) i = infinity; | |
796 if ((int) trt) | |
797 { | |
798 k = (j = trt[j]); | |
799 if (i == infinity) | |
800 stride_for_teases = BM_tab[j]; | |
801 BM_tab[j] = dirlen - i; | |
802 /* A translation table is accompanied by its inverse -- see */ | |
803 /* comment following downcase_table for details */ | |
804 while ((j = inverse_trt[j]) != k) | |
805 BM_tab[j] = dirlen - i; | |
806 } | |
807 else | |
808 { | |
809 if (i == infinity) | |
810 stride_for_teases = BM_tab[j]; | |
811 BM_tab[j] = dirlen - i; | |
812 } | |
813 /* stride_for_teases tells how much to stride if we get a */ | |
814 /* match on the far character but are subsequently */ | |
815 /* disappointed, by recording what the stride would have been */ | |
816 /* for that character if the last character had been */ | |
817 /* different. */ | |
818 } | |
819 infinity = dirlen - infinity; | |
820 pos += dirlen - ((direction > 0) ? direction : 0); | |
821 /* loop invariant - pos points at where last char (first char if reverse) | |
822 of pattern would align in a possible match. */ | |
823 while (n != 0) | |
824 { | |
6343
372613d5970b
(search_buffer): Avoid boolean/integer mixing that confuses some compilers.
Karl Heuer <kwzh@gnu.org>
parents:
6297
diff
changeset
|
825 /* It's been reported that some (broken) compiler thinks that |
372613d5970b
(search_buffer): Avoid boolean/integer mixing that confuses some compilers.
Karl Heuer <kwzh@gnu.org>
parents:
6297
diff
changeset
|
826 Boolean expressions in an arithmetic context are unsigned. |
372613d5970b
(search_buffer): Avoid boolean/integer mixing that confuses some compilers.
Karl Heuer <kwzh@gnu.org>
parents:
6297
diff
changeset
|
827 Using an explicit ?1:0 prevents this. */ |
372613d5970b
(search_buffer): Avoid boolean/integer mixing that confuses some compilers.
Karl Heuer <kwzh@gnu.org>
parents:
6297
diff
changeset
|
828 if ((lim - pos - ((direction > 0) ? 1 : 0)) * direction < 0) |
603 | 829 return (n * (0 - direction)); |
830 /* First we do the part we can by pointers (maybe nothing) */ | |
831 QUIT; | |
832 pat = base_pat; | |
833 limit = pos - dirlen + direction; | |
834 limit = ((direction > 0) | |
835 ? BUFFER_CEILING_OF (limit) | |
836 : BUFFER_FLOOR_OF (limit)); | |
837 /* LIMIT is now the last (not beyond-last!) value | |
838 POS can take on without hitting edge of buffer or the gap. */ | |
839 limit = ((direction > 0) | |
840 ? min (lim - 1, min (limit, pos + 20000)) | |
841 : max (lim, max (limit, pos - 20000))); | |
842 if ((limit - pos) * direction > 20) | |
843 { | |
844 p_limit = &FETCH_CHAR (limit); | |
845 p2 = (cursor = &FETCH_CHAR (pos)); | |
846 /* In this loop, pos + cursor - p2 is the surrogate for pos */ | |
847 while (1) /* use one cursor setting as long as i can */ | |
848 { | |
849 if (direction > 0) /* worth duplicating */ | |
850 { | |
851 /* Use signed comparison if appropriate | |
852 to make cursor+infinity sure to be > p_limit. | |
853 Assuming that the buffer lies in a range of addresses | |
854 that are all "positive" (as ints) or all "negative", | |
855 either kind of comparison will work as long | |
856 as we don't step by infinity. So pick the kind | |
857 that works when we do step by infinity. */ | |
858 if ((int) (p_limit + infinity) > (int) p_limit) | |
859 while ((int) cursor <= (int) p_limit) | |
860 cursor += BM_tab[*cursor]; | |
861 else | |
862 while ((unsigned int) cursor <= (unsigned int) p_limit) | |
863 cursor += BM_tab[*cursor]; | |
864 } | |
865 else | |
866 { | |
867 if ((int) (p_limit + infinity) < (int) p_limit) | |
868 while ((int) cursor >= (int) p_limit) | |
869 cursor += BM_tab[*cursor]; | |
870 else | |
871 while ((unsigned int) cursor >= (unsigned int) p_limit) | |
872 cursor += BM_tab[*cursor]; | |
873 } | |
874 /* If you are here, cursor is beyond the end of the searched region. */ | |
875 /* This can happen if you match on the far character of the pattern, */ | |
876 /* because the "stride" of that character is infinity, a number able */ | |
877 /* to throw you well beyond the end of the search. It can also */ | |
878 /* happen if you fail to match within the permitted region and would */ | |
879 /* otherwise try a character beyond that region */ | |
880 if ((cursor - p_limit) * direction <= len) | |
881 break; /* a small overrun is genuine */ | |
882 cursor -= infinity; /* large overrun = hit */ | |
883 i = dirlen - direction; | |
884 if ((int) trt) | |
885 { | |
886 while ((i -= direction) + direction != 0) | |
887 if (pat[i] != trt[*(cursor -= direction)]) | |
888 break; | |
889 } | |
890 else | |
891 { | |
892 while ((i -= direction) + direction != 0) | |
893 if (pat[i] != *(cursor -= direction)) | |
894 break; | |
895 } | |
896 cursor += dirlen - i - direction; /* fix cursor */ | |
897 if (i + direction == 0) | |
898 { | |
899 cursor -= direction; | |
708 | 900 |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
901 set_search_regs (pos + cursor - p2 + ((direction > 0) |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
902 ? 1 - len : 0), |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
903 len); |
708 | 904 |
603 | 905 if ((n -= direction) != 0) |
906 cursor += dirlen; /* to resume search */ | |
907 else | |
908 return ((direction > 0) | |
909 ? search_regs.end[0] : search_regs.start[0]); | |
910 } | |
911 else | |
912 cursor += stride_for_teases; /* <sigh> we lose - */ | |
913 } | |
914 pos += cursor - p2; | |
915 } | |
916 else | |
917 /* Now we'll pick up a clump that has to be done the hard */ | |
918 /* way because it covers a discontinuity */ | |
919 { | |
920 limit = ((direction > 0) | |
921 ? BUFFER_CEILING_OF (pos - dirlen + 1) | |
922 : BUFFER_FLOOR_OF (pos - dirlen - 1)); | |
923 limit = ((direction > 0) | |
924 ? min (limit + len, lim - 1) | |
925 : max (limit - len, lim)); | |
926 /* LIMIT is now the last value POS can have | |
927 and still be valid for a possible match. */ | |
928 while (1) | |
929 { | |
930 /* This loop can be coded for space rather than */ | |
931 /* speed because it will usually run only once. */ | |
932 /* (the reach is at most len + 21, and typically */ | |
933 /* does not exceed len) */ | |
934 while ((limit - pos) * direction >= 0) | |
935 pos += BM_tab[FETCH_CHAR(pos)]; | |
936 /* now run the same tests to distinguish going off the */ | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
937 /* end, a match or a phony match. */ |
603 | 938 if ((pos - limit) * direction <= len) |
939 break; /* ran off the end */ | |
940 /* Found what might be a match. | |
941 Set POS back to last (first if reverse) char pos. */ | |
942 pos -= infinity; | |
943 i = dirlen - direction; | |
944 while ((i -= direction) + direction != 0) | |
945 { | |
946 pos -= direction; | |
947 if (pat[i] != (((int) trt) | |
948 ? trt[FETCH_CHAR(pos)] | |
949 : FETCH_CHAR (pos))) | |
950 break; | |
951 } | |
952 /* Above loop has moved POS part or all the way | |
953 back to the first char pos (last char pos if reverse). | |
954 Set it once again at the last (first if reverse) char. */ | |
955 pos += dirlen - i- direction; | |
956 if (i + direction == 0) | |
957 { | |
958 pos -= direction; | |
708 | 959 |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
960 set_search_regs (pos + ((direction > 0) ? 1 - len : 0), |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
961 len); |
708 | 962 |
603 | 963 if ((n -= direction) != 0) |
964 pos += dirlen; /* to resume search */ | |
965 else | |
966 return ((direction > 0) | |
967 ? search_regs.end[0] : search_regs.start[0]); | |
968 } | |
969 else | |
970 pos += stride_for_teases; | |
971 } | |
972 } | |
973 /* We have done one clump. Can we continue? */ | |
974 if ((lim - pos) * direction < 0) | |
975 return ((0 - n) * direction); | |
976 } | |
977 return pos; | |
978 } | |
979 } | |
5556
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
980 |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
981 /* Record beginning BEG and end BEG + LEN |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
982 for a match just found in the current buffer. */ |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
983 |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
984 static void |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
985 set_search_regs (beg, len) |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
986 int beg, len; |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
987 { |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
988 /* Make sure we have registers in which to store |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
989 the match position. */ |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
990 if (search_regs.num_regs == 0) |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
991 { |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
992 regoff_t *starts, *ends; |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
993 |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
994 starts = (regoff_t *) xmalloc (2 * sizeof (regoff_t)); |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
995 ends = (regoff_t *) xmalloc (2 * sizeof (regoff_t)); |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
996 BLOCK_INPUT; |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
997 re_set_registers (&searchbuf, |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
998 &search_regs, |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
999 2, starts, ends); |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
1000 UNBLOCK_INPUT; |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
1001 } |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
1002 |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
1003 search_regs.start[0] = beg; |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
1004 search_regs.end[0] = beg + len; |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
1005 XSET (last_thing_searched, Lisp_Buffer, current_buffer); |
14161cfec24a
(set_search_regs): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
4954
diff
changeset
|
1006 } |
603 | 1007 |
1008 /* Given a string of words separated by word delimiters, | |
1009 compute a regexp that matches those exact words | |
1010 separated by arbitrary punctuation. */ | |
1011 | |
1012 static Lisp_Object | |
1013 wordify (string) | |
1014 Lisp_Object string; | |
1015 { | |
1016 register unsigned char *p, *o; | |
1017 register int i, len, punct_count = 0, word_count = 0; | |
1018 Lisp_Object val; | |
1019 | |
1020 CHECK_STRING (string, 0); | |
1021 p = XSTRING (string)->data; | |
1022 len = XSTRING (string)->size; | |
1023 | |
1024 for (i = 0; i < len; i++) | |
1025 if (SYNTAX (p[i]) != Sword) | |
1026 { | |
1027 punct_count++; | |
1028 if (i > 0 && SYNTAX (p[i-1]) == Sword) word_count++; | |
1029 } | |
1030 if (SYNTAX (p[len-1]) == Sword) word_count++; | |
1031 if (!word_count) return build_string (""); | |
1032 | |
1033 val = make_string (p, len - punct_count + 5 * (word_count - 1) + 4); | |
1034 | |
1035 o = XSTRING (val)->data; | |
1036 *o++ = '\\'; | |
1037 *o++ = 'b'; | |
1038 | |
1039 for (i = 0; i < len; i++) | |
1040 if (SYNTAX (p[i]) == Sword) | |
1041 *o++ = p[i]; | |
1042 else if (i > 0 && SYNTAX (p[i-1]) == Sword && --word_count) | |
1043 { | |
1044 *o++ = '\\'; | |
1045 *o++ = 'W'; | |
1046 *o++ = '\\'; | |
1047 *o++ = 'W'; | |
1048 *o++ = '*'; | |
1049 } | |
1050 | |
1051 *o++ = '\\'; | |
1052 *o++ = 'b'; | |
1053 | |
1054 return val; | |
1055 } | |
1056 | |
1057 DEFUN ("search-backward", Fsearch_backward, Ssearch_backward, 1, 4, | |
1058 "sSearch backward: ", | |
1059 "Search backward from point for STRING.\n\ | |
1060 Set point to the beginning of the occurrence found, and return point.\n\ | |
1061 An optional second argument bounds the search; it is a buffer position.\n\ | |
1062 The match found must not extend before that position.\n\ | |
1063 Optional third argument, if t, means if fail just return nil (no error).\n\ | |
1064 If not nil and not t, position at limit of search and return nil.\n\ | |
1065 Optional fourth argument is repeat count--search for successive occurrences.\n\ | |
1066 See also the functions `match-beginning', `match-end' and `replace-match'.") | |
1067 (string, bound, noerror, count) | |
1068 Lisp_Object string, bound, noerror, count; | |
1069 { | |
1070 return search_command (string, bound, noerror, count, -1, 0); | |
1071 } | |
1072 | |
1073 DEFUN ("search-forward", Fsearch_forward, Ssearch_forward, 1, 4, "sSearch: ", | |
1074 "Search forward from point for STRING.\n\ | |
1075 Set point to the end of the occurrence found, and return point.\n\ | |
1076 An optional second argument bounds the search; it is a buffer position.\n\ | |
1077 The match found must not extend after that position. nil is equivalent\n\ | |
1078 to (point-max).\n\ | |
1079 Optional third argument, if t, means if fail just return nil (no error).\n\ | |
1080 If not nil and not t, move to limit of search and return nil.\n\ | |
1081 Optional fourth argument is repeat count--search for successive occurrences.\n\ | |
1082 See also the functions `match-beginning', `match-end' and `replace-match'.") | |
1083 (string, bound, noerror, count) | |
1084 Lisp_Object string, bound, noerror, count; | |
1085 { | |
1086 return search_command (string, bound, noerror, count, 1, 0); | |
1087 } | |
1088 | |
1089 DEFUN ("word-search-backward", Fword_search_backward, Sword_search_backward, 1, 4, | |
1090 "sWord search backward: ", | |
1091 "Search backward from point for STRING, ignoring differences in punctuation.\n\ | |
1092 Set point to the beginning of the occurrence found, and return point.\n\ | |
1093 An optional second argument bounds the search; it is a buffer position.\n\ | |
1094 The match found must not extend before that position.\n\ | |
1095 Optional third argument, if t, means if fail just return nil (no error).\n\ | |
1096 If not nil and not t, move to limit of search and return nil.\n\ | |
1097 Optional fourth argument is repeat count--search for successive occurrences.") | |
1098 (string, bound, noerror, count) | |
1099 Lisp_Object string, bound, noerror, count; | |
1100 { | |
1101 return search_command (wordify (string), bound, noerror, count, -1, 1); | |
1102 } | |
1103 | |
1104 DEFUN ("word-search-forward", Fword_search_forward, Sword_search_forward, 1, 4, | |
1105 "sWord search: ", | |
1106 "Search forward from point for STRING, ignoring differences in punctuation.\n\ | |
1107 Set point to the end of the occurrence found, and return point.\n\ | |
1108 An optional second argument bounds the search; it is a buffer position.\n\ | |
1109 The match found must not extend after that position.\n\ | |
1110 Optional third argument, if t, means if fail just return nil (no error).\n\ | |
1111 If not nil and not t, move to limit of search and return nil.\n\ | |
1112 Optional fourth argument is repeat count--search for successive occurrences.") | |
1113 (string, bound, noerror, count) | |
1114 Lisp_Object string, bound, noerror, count; | |
1115 { | |
1116 return search_command (wordify (string), bound, noerror, count, 1, 1); | |
1117 } | |
1118 | |
1119 DEFUN ("re-search-backward", Fre_search_backward, Sre_search_backward, 1, 4, | |
1120 "sRE search backward: ", | |
1121 "Search backward from point for match for regular expression REGEXP.\n\ | |
1122 Set point to the beginning of the match, and return point.\n\ | |
1123 The match found is the one starting last in the buffer\n\ | |
6297
b44907fd0ff0
(Fre_search_forward, Fre_search_backward): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
6196
diff
changeset
|
1124 and yet ending before the origin of the search.\n\ |
603 | 1125 An optional second argument bounds the search; it is a buffer position.\n\ |
1126 The match found must start at or after that position.\n\ | |
1127 Optional third argument, if t, means if fail just return nil (no error).\n\ | |
1128 If not nil and not t, move to limit of search and return nil.\n\ | |
1129 Optional fourth argument is repeat count--search for successive occurrences.\n\ | |
1130 See also the functions `match-beginning', `match-end' and `replace-match'.") | |
6297
b44907fd0ff0
(Fre_search_forward, Fre_search_backward): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
6196
diff
changeset
|
1131 (regexp, bound, noerror, count) |
b44907fd0ff0
(Fre_search_forward, Fre_search_backward): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
6196
diff
changeset
|
1132 Lisp_Object regexp, bound, noerror, count; |
603 | 1133 { |
6297
b44907fd0ff0
(Fre_search_forward, Fre_search_backward): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
6196
diff
changeset
|
1134 return search_command (regexp, bound, noerror, count, -1, 1); |
603 | 1135 } |
1136 | |
1137 DEFUN ("re-search-forward", Fre_search_forward, Sre_search_forward, 1, 4, | |
1138 "sRE search: ", | |
1139 "Search forward from point for regular expression REGEXP.\n\ | |
1140 Set point to the end of the occurrence found, and return point.\n\ | |
1141 An optional second argument bounds the search; it is a buffer position.\n\ | |
1142 The match found must not extend after that position.\n\ | |
1143 Optional third argument, if t, means if fail just return nil (no error).\n\ | |
1144 If not nil and not t, move to limit of search and return nil.\n\ | |
1145 Optional fourth argument is repeat count--search for successive occurrences.\n\ | |
1146 See also the functions `match-beginning', `match-end' and `replace-match'.") | |
6297
b44907fd0ff0
(Fre_search_forward, Fre_search_backward): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
6196
diff
changeset
|
1147 (regexp, bound, noerror, count) |
b44907fd0ff0
(Fre_search_forward, Fre_search_backward): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
6196
diff
changeset
|
1148 Lisp_Object regexp, bound, noerror, count; |
603 | 1149 { |
6297
b44907fd0ff0
(Fre_search_forward, Fre_search_backward): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
6196
diff
changeset
|
1150 return search_command (regexp, bound, noerror, count, 1, 1); |
603 | 1151 } |
1152 | |
1153 DEFUN ("replace-match", Freplace_match, Sreplace_match, 1, 3, 0, | |
1154 "Replace text matched by last search with NEWTEXT.\n\ | |
1155 If second arg FIXEDCASE is non-nil, do not alter case of replacement text.\n\ | |
6543
33032ee16c7c
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6343
diff
changeset
|
1156 Otherwise maybe capitalize the whole text, or maybe just word initials,\n\ |
33032ee16c7c
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6343
diff
changeset
|
1157 based on the replaced text.\n\ |
33032ee16c7c
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6343
diff
changeset
|
1158 If the replaced text has only capital letters\n\ |
33032ee16c7c
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6343
diff
changeset
|
1159 and has at least one multiletter word, convert NEWTEXT to all caps.\n\ |
33032ee16c7c
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6343
diff
changeset
|
1160 If the replaced text has at least one word starting with a capital letter,\n\ |
33032ee16c7c
(Freplace_match): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6343
diff
changeset
|
1161 then capitalize each word in NEWTEXT.\n\n\ |
603 | 1162 If third arg LITERAL is non-nil, insert NEWTEXT literally.\n\ |
1163 Otherwise treat `\\' as special:\n\ | |
1164 `\\&' in NEWTEXT means substitute original matched text.\n\ | |
1165 `\\N' means substitute what matched the Nth `\\(...\\)'.\n\ | |
1166 If Nth parens didn't match, substitute nothing.\n\ | |
1167 `\\\\' means insert one `\\'.\n\ | |
708 | 1168 FIXEDCASE and LITERAL are optional arguments.\n\ |
603 | 1169 Leaves point at end of replacement text.") |
4882
8c09f87f5087
(Freplace_match): Fix argument names to match doc string.
Brian Fox <bfox@gnu.org>
parents:
4832
diff
changeset
|
1170 (newtext, fixedcase, literal) |
8c09f87f5087
(Freplace_match): Fix argument names to match doc string.
Brian Fox <bfox@gnu.org>
parents:
4832
diff
changeset
|
1171 Lisp_Object newtext, fixedcase, literal; |
603 | 1172 { |
1173 enum { nochange, all_caps, cap_initial } case_action; | |
1174 register int pos, last; | |
1175 int some_multiletter_word; | |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1176 int some_lowercase; |
6679
490b7e2db978
(Freplace_match): Don't capitalize unless all matched words are capitalized.
Karl Heuer <kwzh@gnu.org>
parents:
6543
diff
changeset
|
1177 int some_lowercase_initial; |
603 | 1178 register int c, prevc; |
1179 int inslen; | |
1180 | |
4882
8c09f87f5087
(Freplace_match): Fix argument names to match doc string.
Brian Fox <bfox@gnu.org>
parents:
4832
diff
changeset
|
1181 CHECK_STRING (newtext, 0); |
603 | 1182 |
1183 case_action = nochange; /* We tried an initialization */ | |
1184 /* but some C compilers blew it */ | |
621 | 1185 |
1186 if (search_regs.num_regs <= 0) | |
1187 error ("replace-match called before any match found"); | |
1188 | |
603 | 1189 if (search_regs.start[0] < BEGV |
1190 || search_regs.start[0] > search_regs.end[0] | |
1191 || search_regs.end[0] > ZV) | |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1192 args_out_of_range (make_number (search_regs.start[0]), |
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1193 make_number (search_regs.end[0])); |
603 | 1194 |
1195 if (NILP (fixedcase)) | |
1196 { | |
1197 /* Decide how to casify by examining the matched text. */ | |
1198 | |
1199 last = search_regs.end[0]; | |
1200 prevc = '\n'; | |
1201 case_action = all_caps; | |
1202 | |
1203 /* some_multiletter_word is set nonzero if any original word | |
1204 is more than one letter long. */ | |
1205 some_multiletter_word = 0; | |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1206 some_lowercase = 0; |
6679
490b7e2db978
(Freplace_match): Don't capitalize unless all matched words are capitalized.
Karl Heuer <kwzh@gnu.org>
parents:
6543
diff
changeset
|
1207 some_lowercase_initial = 0; |
603 | 1208 |
1209 for (pos = search_regs.start[0]; pos < last; pos++) | |
1210 { | |
1211 c = FETCH_CHAR (pos); | |
1212 if (LOWERCASEP (c)) | |
1213 { | |
1214 /* Cannot be all caps if any original char is lower case */ | |
1215 | |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1216 some_lowercase = 1; |
603 | 1217 if (SYNTAX (prevc) != Sword) |
6679
490b7e2db978
(Freplace_match): Don't capitalize unless all matched words are capitalized.
Karl Heuer <kwzh@gnu.org>
parents:
6543
diff
changeset
|
1218 some_lowercase_initial = 1; |
603 | 1219 else |
1220 some_multiletter_word = 1; | |
1221 } | |
1222 else if (!NOCASEP (c)) | |
1223 { | |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1224 if (SYNTAX (prevc) != Sword) |
6679
490b7e2db978
(Freplace_match): Don't capitalize unless all matched words are capitalized.
Karl Heuer <kwzh@gnu.org>
parents:
6543
diff
changeset
|
1225 ; |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1226 else |
603 | 1227 some_multiletter_word = 1; |
1228 } | |
1229 | |
1230 prevc = c; | |
1231 } | |
1232 | |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1233 /* Convert to all caps if the old text is all caps |
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1234 and has at least one multiletter word. */ |
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1235 if (! some_lowercase && some_multiletter_word) |
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1236 case_action = all_caps; |
6679
490b7e2db978
(Freplace_match): Don't capitalize unless all matched words are capitalized.
Karl Heuer <kwzh@gnu.org>
parents:
6543
diff
changeset
|
1237 /* Capitalize each word, if the old text has all capitalized words. */ |
490b7e2db978
(Freplace_match): Don't capitalize unless all matched words are capitalized.
Karl Heuer <kwzh@gnu.org>
parents:
6543
diff
changeset
|
1238 else if (!some_lowercase_initial && some_multiletter_word) |
603 | 1239 case_action = cap_initial; |
2393
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1240 else |
a35d2c5cbb3b
(Freplace_match): Clean up criterion about converting case.
Richard M. Stallman <rms@gnu.org>
parents:
1926
diff
changeset
|
1241 case_action = nochange; |
603 | 1242 } |
1243 | |
2655
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1244 /* We insert the replacement text before the old text, and then |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1245 delete the original text. This means that markers at the |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1246 beginning or end of the original will float to the corresponding |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1247 position in the replacement. */ |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1248 SET_PT (search_regs.start[0]); |
603 | 1249 if (!NILP (literal)) |
4882
8c09f87f5087
(Freplace_match): Fix argument names to match doc string.
Brian Fox <bfox@gnu.org>
parents:
4832
diff
changeset
|
1250 Finsert_and_inherit (1, &newtext); |
603 | 1251 else |
1252 { | |
1253 struct gcpro gcpro1; | |
4882
8c09f87f5087
(Freplace_match): Fix argument names to match doc string.
Brian Fox <bfox@gnu.org>
parents:
4832
diff
changeset
|
1254 GCPRO1 (newtext); |
603 | 1255 |
4882
8c09f87f5087
(Freplace_match): Fix argument names to match doc string.
Brian Fox <bfox@gnu.org>
parents:
4832
diff
changeset
|
1256 for (pos = 0; pos < XSTRING (newtext)->size; pos++) |
603 | 1257 { |
2655
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1258 int offset = point - search_regs.start[0]; |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1259 |
4882
8c09f87f5087
(Freplace_match): Fix argument names to match doc string.
Brian Fox <bfox@gnu.org>
parents:
4832
diff
changeset
|
1260 c = XSTRING (newtext)->data[pos]; |
603 | 1261 if (c == '\\') |
1262 { | |
4882
8c09f87f5087
(Freplace_match): Fix argument names to match doc string.
Brian Fox <bfox@gnu.org>
parents:
4832
diff
changeset
|
1263 c = XSTRING (newtext)->data[++pos]; |
603 | 1264 if (c == '&') |
2655
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1265 Finsert_buffer_substring |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1266 (Fcurrent_buffer (), |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1267 make_number (search_regs.start[0] + offset), |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1268 make_number (search_regs.end[0] + offset)); |
621 | 1269 else if (c >= '1' && c <= search_regs.num_regs + '0') |
603 | 1270 { |
1271 if (search_regs.start[c - '0'] >= 1) | |
2655
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1272 Finsert_buffer_substring |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1273 (Fcurrent_buffer (), |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1274 make_number (search_regs.start[c - '0'] + offset), |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1275 make_number (search_regs.end[c - '0'] + offset)); |
603 | 1276 } |
1277 else | |
1278 insert_char (c); | |
1279 } | |
1280 else | |
1281 insert_char (c); | |
1282 } | |
1283 UNGCPRO; | |
1284 } | |
1285 | |
2655
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1286 inslen = point - (search_regs.start[0]); |
594a33ffed85
* search.c (Freplace_match): Arrange for markers sitting at the
Jim Blandy <jimb@redhat.com>
parents:
2475
diff
changeset
|
1287 del_range (search_regs.start[0] + inslen, search_regs.end[0] + inslen); |
603 | 1288 |
1289 if (case_action == all_caps) | |
1290 Fupcase_region (make_number (point - inslen), make_number (point)); | |
1291 else if (case_action == cap_initial) | |
1292 upcase_initials_region (make_number (point - inslen), make_number (point)); | |
1293 return Qnil; | |
1294 } | |
1295 | |
1296 static Lisp_Object | |
1297 match_limit (num, beginningp) | |
1298 Lisp_Object num; | |
1299 int beginningp; | |
1300 { | |
1301 register int n; | |
1302 | |
1303 CHECK_NUMBER (num, 0); | |
1304 n = XINT (num); | |
621 | 1305 if (n < 0 || n >= search_regs.num_regs) |
1306 args_out_of_range (num, make_number (search_regs.num_regs)); | |
1307 if (search_regs.num_regs <= 0 | |
1308 || search_regs.start[n] < 0) | |
603 | 1309 return Qnil; |
1310 return (make_number ((beginningp) ? search_regs.start[n] | |
1311 : search_regs.end[n])); | |
1312 } | |
1313 | |
1314 DEFUN ("match-beginning", Fmatch_beginning, Smatch_beginning, 1, 1, 0, | |
1315 "Return position of start of text matched by last search.\n\ | |
4882
8c09f87f5087
(Freplace_match): Fix argument names to match doc string.
Brian Fox <bfox@gnu.org>
parents:
4832
diff
changeset
|
1316 NUM specifies which parenthesized expression in the last regexp.\n\ |
8c09f87f5087
(Freplace_match): Fix argument names to match doc string.
Brian Fox <bfox@gnu.org>
parents:
4832
diff
changeset
|
1317 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.\n\ |
603 | 1318 Zero means the entire text matched by the whole regexp or whole string.") |
1319 (num) | |
1320 Lisp_Object num; | |
1321 { | |
1322 return match_limit (num, 1); | |
1323 } | |
1324 | |
1325 DEFUN ("match-end", Fmatch_end, Smatch_end, 1, 1, 0, | |
1326 "Return position of end of text matched by last search.\n\ | |
1327 ARG, a number, specifies which parenthesized expression in the last regexp.\n\ | |
1328 Value is nil if ARGth pair didn't match, or there were less than ARG pairs.\n\ | |
1329 Zero means the entire text matched by the whole regexp or whole string.") | |
1330 (num) | |
1331 Lisp_Object num; | |
1332 { | |
1333 return match_limit (num, 0); | |
1334 } | |
1335 | |
1336 DEFUN ("match-data", Fmatch_data, Smatch_data, 0, 0, 0, | |
1337 "Return a list containing all info on what the last search matched.\n\ | |
1338 Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.\n\ | |
1339 All the elements are markers or nil (nil if the Nth pair didn't match)\n\ | |
1340 if the last match was on a buffer; integers or nil if a string was matched.\n\ | |
1341 Use `store-match-data' to reinstate the data in this list.") | |
1342 () | |
1343 { | |
621 | 1344 Lisp_Object *data; |
603 | 1345 int i, len; |
1346 | |
727 | 1347 if (NILP (last_thing_searched)) |
1348 error ("match-data called before any match found"); | |
1349 | |
621 | 1350 data = (Lisp_Object *) alloca ((2 * search_regs.num_regs) |
1351 * sizeof (Lisp_Object)); | |
1352 | |
603 | 1353 len = -1; |
621 | 1354 for (i = 0; i < search_regs.num_regs; i++) |
603 | 1355 { |
1356 int start = search_regs.start[i]; | |
1357 if (start >= 0) | |
1358 { | |
727 | 1359 if (EQ (last_thing_searched, Qt)) |
603 | 1360 { |
1361 XFASTINT (data[2 * i]) = start; | |
1362 XFASTINT (data[2 * i + 1]) = search_regs.end[i]; | |
1363 } | |
727 | 1364 else if (XTYPE (last_thing_searched) == Lisp_Buffer) |
603 | 1365 { |
1366 data[2 * i] = Fmake_marker (); | |
727 | 1367 Fset_marker (data[2 * i], |
1368 make_number (start), | |
1369 last_thing_searched); | |
603 | 1370 data[2 * i + 1] = Fmake_marker (); |
1371 Fset_marker (data[2 * i + 1], | |
727 | 1372 make_number (search_regs.end[i]), |
1373 last_thing_searched); | |
603 | 1374 } |
727 | 1375 else |
1376 /* last_thing_searched must always be Qt, a buffer, or Qnil. */ | |
1377 abort (); | |
1378 | |
603 | 1379 len = i; |
1380 } | |
1381 else | |
1382 data[2 * i] = data [2 * i + 1] = Qnil; | |
1383 } | |
1384 return Flist (2 * len + 2, data); | |
1385 } | |
1386 | |
1387 | |
1388 DEFUN ("store-match-data", Fstore_match_data, Sstore_match_data, 1, 1, 0, | |
1389 "Set internal data on last search match from elements of LIST.\n\ | |
1390 LIST should have been created by calling `match-data' previously.") | |
1391 (list) | |
1392 register Lisp_Object list; | |
1393 { | |
1394 register int i; | |
1395 register Lisp_Object marker; | |
1396 | |
1397 if (!CONSP (list) && !NILP (list)) | |
1926
952f2a18f83d
* callint.c (Fcall_interactively): Pass the correct number of
Jim Blandy <jimb@redhat.com>
parents:
1896
diff
changeset
|
1398 list = wrong_type_argument (Qconsp, list); |
603 | 1399 |
727 | 1400 /* Unless we find a marker with a buffer in LIST, assume that this |
1401 match data came from a string. */ | |
1402 last_thing_searched = Qt; | |
1403 | |
621 | 1404 /* Allocate registers if they don't already exist. */ |
1405 { | |
1523
bd61aaa7828b
* search.c (Fstore_match_data): Don't assume Flength returns an
Jim Blandy <jimb@redhat.com>
parents:
1413
diff
changeset
|
1406 int length = XFASTINT (Flength (list)) / 2; |
621 | 1407 |
1408 if (length > search_regs.num_regs) | |
1409 { | |
708 | 1410 if (search_regs.num_regs == 0) |
1411 { | |
1412 search_regs.start | |
1413 = (regoff_t *) xmalloc (length * sizeof (regoff_t)); | |
1414 search_regs.end | |
1415 = (regoff_t *) xmalloc (length * sizeof (regoff_t)); | |
1416 } | |
621 | 1417 else |
708 | 1418 { |
1419 search_regs.start | |
1420 = (regoff_t *) xrealloc (search_regs.start, | |
1421 length * sizeof (regoff_t)); | |
1422 search_regs.end | |
1423 = (regoff_t *) xrealloc (search_regs.end, | |
1424 length * sizeof (regoff_t)); | |
1425 } | |
621 | 1426 |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2393
diff
changeset
|
1427 BLOCK_INPUT; |
708 | 1428 re_set_registers (&searchbuf, &search_regs, length, |
1429 search_regs.start, search_regs.end); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2393
diff
changeset
|
1430 UNBLOCK_INPUT; |
621 | 1431 } |
1432 } | |
1433 | |
1434 for (i = 0; i < search_regs.num_regs; i++) | |
603 | 1435 { |
1436 marker = Fcar (list); | |
1437 if (NILP (marker)) | |
1438 { | |
1439 search_regs.start[i] = -1; | |
1440 list = Fcdr (list); | |
1441 } | |
1442 else | |
1443 { | |
727 | 1444 if (XTYPE (marker) == Lisp_Marker) |
1445 { | |
1446 if (XMARKER (marker)->buffer == 0) | |
1447 XFASTINT (marker) = 0; | |
1448 else | |
1449 XSET (last_thing_searched, Lisp_Buffer, | |
1450 XMARKER (marker)->buffer); | |
1451 } | |
603 | 1452 |
1453 CHECK_NUMBER_COERCE_MARKER (marker, 0); | |
1454 search_regs.start[i] = XINT (marker); | |
1455 list = Fcdr (list); | |
1456 | |
1457 marker = Fcar (list); | |
1458 if (XTYPE (marker) == Lisp_Marker | |
1459 && XMARKER (marker)->buffer == 0) | |
1460 XFASTINT (marker) = 0; | |
1461 | |
1462 CHECK_NUMBER_COERCE_MARKER (marker, 0); | |
1463 search_regs.end[i] = XINT (marker); | |
1464 } | |
1465 list = Fcdr (list); | |
1466 } | |
1467 | |
1468 return Qnil; | |
1469 } | |
1470 | |
1471 /* Quote a string to inactivate reg-expr chars */ | |
1472 | |
1473 DEFUN ("regexp-quote", Fregexp_quote, Sregexp_quote, 1, 1, 0, | |
1474 "Return a regexp string which matches exactly STRING and nothing else.") | |
1475 (str) | |
1476 Lisp_Object str; | |
1477 { | |
1478 register unsigned char *in, *out, *end; | |
1479 register unsigned char *temp; | |
1480 | |
1481 CHECK_STRING (str, 0); | |
1482 | |
1483 temp = (unsigned char *) alloca (XSTRING (str)->size * 2); | |
1484 | |
1485 /* Now copy the data into the new string, inserting escapes. */ | |
1486 | |
1487 in = XSTRING (str)->data; | |
1488 end = in + XSTRING (str)->size; | |
1489 out = temp; | |
1490 | |
1491 for (; in != end; in++) | |
1492 { | |
1493 if (*in == '[' || *in == ']' | |
1494 || *in == '*' || *in == '.' || *in == '\\' | |
1495 || *in == '?' || *in == '+' | |
1496 || *in == '^' || *in == '$') | |
1497 *out++ = '\\'; | |
1498 *out++ = *in; | |
1499 } | |
1500 | |
1501 return make_string (temp, out - temp); | |
1502 } | |
1503 | |
1504 syms_of_search () | |
1505 { | |
1506 register int i; | |
1507 | |
1508 searchbuf.allocated = 100; | |
605 | 1509 searchbuf.buffer = (unsigned char *) malloc (searchbuf.allocated); |
603 | 1510 searchbuf.fastmap = search_fastmap; |
1511 | |
1512 Qsearch_failed = intern ("search-failed"); | |
1513 staticpro (&Qsearch_failed); | |
1514 Qinvalid_regexp = intern ("invalid-regexp"); | |
1515 staticpro (&Qinvalid_regexp); | |
1516 | |
1517 Fput (Qsearch_failed, Qerror_conditions, | |
1518 Fcons (Qsearch_failed, Fcons (Qerror, Qnil))); | |
1519 Fput (Qsearch_failed, Qerror_message, | |
1520 build_string ("Search failed")); | |
1521 | |
1522 Fput (Qinvalid_regexp, Qerror_conditions, | |
1523 Fcons (Qinvalid_regexp, Fcons (Qerror, Qnil))); | |
1524 Fput (Qinvalid_regexp, Qerror_message, | |
1525 build_string ("Invalid regexp")); | |
1526 | |
1527 last_regexp = Qnil; | |
1528 staticpro (&last_regexp); | |
1529 | |
727 | 1530 last_thing_searched = Qnil; |
1531 staticpro (&last_thing_searched); | |
1532 | |
603 | 1533 defsubr (&Sstring_match); |
1534 defsubr (&Slooking_at); | |
1535 defsubr (&Sskip_chars_forward); | |
1536 defsubr (&Sskip_chars_backward); | |
1896
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
1537 defsubr (&Sskip_syntax_forward); |
10895ac08bc6
(Fskip_syntax_backward): New function.
Richard M. Stallman <rms@gnu.org>
parents:
1878
diff
changeset
|
1538 defsubr (&Sskip_syntax_backward); |
603 | 1539 defsubr (&Ssearch_forward); |
1540 defsubr (&Ssearch_backward); | |
1541 defsubr (&Sword_search_forward); | |
1542 defsubr (&Sword_search_backward); | |
1543 defsubr (&Sre_search_forward); | |
1544 defsubr (&Sre_search_backward); | |
1545 defsubr (&Sreplace_match); | |
1546 defsubr (&Smatch_beginning); | |
1547 defsubr (&Smatch_end); | |
1548 defsubr (&Smatch_data); | |
1549 defsubr (&Sstore_match_data); | |
1550 defsubr (&Sregexp_quote); | |
1551 } |