Convert old-style definitions
[bpt/emacs.git] / src / search.c
CommitLineData
ca1d1d23 1/* String search routines for GNU Emacs.
429ab54e 2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1997, 1998, 1999, 2001, 2002,
114f9c96 3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
8cabe764 4 Free Software Foundation, Inc.
ca1d1d23
JB
5
6This file is part of GNU Emacs.
7
9ec0b715 8GNU Emacs is free software: you can redistribute it and/or modify
ca1d1d23 9it under the terms of the GNU General Public License as published by
9ec0b715
GM
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
ca1d1d23
JB
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
9ec0b715 19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
ca1d1d23
JB
20
21
18160b98 22#include <config.h>
d7306fe6 23#include <setjmp.h>
ca1d1d23
JB
24#include "lisp.h"
25#include "syntax.h"
5679531d 26#include "category.h"
ca1d1d23 27#include "buffer.h"
76eb0881 28#include "character.h"
89ad6492 29#include "charset.h"
9169c321 30#include "region-cache.h"
ca1d1d23 31#include "commands.h"
9ac0d9e0 32#include "blockinput.h"
bf1760bb 33#include "intervals.h"
4746118a 34
ca1d1d23
JB
35#include <sys/types.h>
36#include "regex.h"
37
1d288aef 38#define REGEXP_CACHE_SIZE 20
ca1d1d23 39
487282dc
KH
40/* If the regexp is non-nil, then the buffer contains the compiled form
41 of that regexp, suitable for searching. */
1d288aef
RS
42struct regexp_cache
43{
487282dc 44 struct regexp_cache *next;
ecdb561e 45 Lisp_Object regexp, whitespace_regexp;
b69e3c18 46 /* Syntax table for which the regexp applies. We need this because
58e95211
SM
47 of character classes. If this is t, then the compiled pattern is valid
48 for any syntax-table. */
b69e3c18 49 Lisp_Object syntax_table;
487282dc
KH
50 struct re_pattern_buffer buf;
51 char fastmap[0400];
b819a390
RS
52 /* Nonzero means regexp was compiled to do full POSIX backtracking. */
53 char posix;
487282dc 54};
ca1d1d23 55
487282dc
KH
56/* The instances of that struct. */
57struct regexp_cache searchbufs[REGEXP_CACHE_SIZE];
ca1d1d23 58
487282dc
KH
59/* The head of the linked list; points to the most recently used buffer. */
60struct regexp_cache *searchbuf_head;
ca1d1d23 61
ca1d1d23 62
4746118a
JB
63/* Every call to re_match, etc., must pass &search_regs as the regs
64 argument unless you can show it is unnecessary (i.e., if re_match
65 is certainly going to be called again before region-around-match
66 can be called).
67
68 Since the registers are now dynamically allocated, we need to make
69 sure not to refer to the Nth register before checking that it has
1113d9db
JB
70 been allocated by checking search_regs.num_regs.
71
72 The regex code keeps track of whether it has allocated the search
487282dc
KH
73 buffer using bits in the re_pattern_buffer. This means that whenever
74 you compile a new pattern, it completely forgets whether it has
1113d9db
JB
75 allocated any registers, and will allocate new registers the next
76 time you call a searching or matching function. Therefore, we need
77 to call re_set_registers after compiling a new pattern or after
78 setting the match registers, so that the regex functions will be
79 able to free or re-allocate it properly. */
ca1d1d23
JB
80static struct re_registers search_regs;
81
daa37602
JB
82/* The buffer in which the last search was performed, or
83 Qt if the last search was done in a string;
84 Qnil if no searching has been done yet. */
85static Lisp_Object last_thing_searched;
ca1d1d23 86
8e6208c5 87/* error condition signaled when regexp compile_pattern fails */
ca1d1d23
JB
88
89Lisp_Object Qinvalid_regexp;
90
06f77a8a
KS
91/* Error condition used for failing searches */
92Lisp_Object Qsearch_failed;
93
41a33295 94Lisp_Object Vsearch_spaces_regexp;
f31a9a68 95
ef887810
RS
96/* If non-nil, the match data will not be changed during call to
97 searching or matching functions. This variable is for internal use
98 only. */
99Lisp_Object Vinhibit_changing_match_data;
100
f57e2426
J
101static void set_search_regs (EMACS_INT, EMACS_INT);
102static void save_search_regs (void);
103static EMACS_INT simple_search (int, unsigned char *, int, int,
104 Lisp_Object, EMACS_INT, EMACS_INT,
105 EMACS_INT, EMACS_INT);
106static EMACS_INT boyer_moore (int, unsigned char *, int, int,
107 Lisp_Object, Lisp_Object,
108 EMACS_INT, EMACS_INT,
109 EMACS_INT, EMACS_INT, int);
110static EMACS_INT search_buffer (Lisp_Object, EMACS_INT, EMACS_INT,
111 EMACS_INT, EMACS_INT, int, int,
112 Lisp_Object, Lisp_Object, int);
971de7fb 113static void matcher_overflow (void) NO_RETURN;
b819a390 114
ca1d1d23 115static void
971de7fb 116matcher_overflow (void)
ca1d1d23
JB
117{
118 error ("Stack overflow in regexp matcher");
119}
120
b819a390
RS
121/* Compile a regexp and signal a Lisp error if anything goes wrong.
122 PATTERN is the pattern to compile.
123 CP is the place to put the result.
facdc750 124 TRANSLATE is a translation table for ignoring case, or nil for none.
b819a390
RS
125 REGP is the structure that says where to store the "register"
126 values that will result from matching this pattern.
127 If it is 0, we should compile the pattern not to record any
128 subexpression bounds.
129 POSIX is nonzero if we want full backtracking (POSIX style)
5679531d 130 for this pattern. 0 means backtrack only enough to get a valid match.
bbc73b48
KH
131
132 The behavior also depends on Vsearch_spaces_regexp. */
ca1d1d23 133
487282dc 134static void
971de7fb 135compile_pattern_1 (struct regexp_cache *cp, Lisp_Object pattern, Lisp_Object translate, struct re_registers *regp, int posix)
ca1d1d23 136{
d451e4db 137 char *val;
b819a390 138 reg_syntax_t old;
ca1d1d23 139
487282dc 140 cp->regexp = Qnil;
59fab369 141 cp->buf.translate = (! NILP (translate) ? translate : make_number (0));
b819a390 142 cp->posix = posix;
93daa011 143 cp->buf.multibyte = STRING_MULTIBYTE (pattern);
89ad6492 144 cp->buf.charset_unibyte = charset_unibyte;
d8c85250
CY
145 if (STRINGP (Vsearch_spaces_regexp))
146 cp->whitespace_regexp = Vsearch_spaces_regexp;
147 else
148 cp->whitespace_regexp = Qnil;
149
e7b2dd2e
RS
150 /* rms: I think BLOCK_INPUT is not needed here any more,
151 because regex.c defines malloc to call xmalloc.
152 Using BLOCK_INPUT here means the debugger won't run if an error occurs.
153 So let's turn it off. */
154 /* BLOCK_INPUT; */
fb4a568d 155 old = re_set_syntax (RE_SYNTAX_EMACS
b819a390 156 | (posix ? 0 : RE_NO_POSIX_BACKTRACKING));
d8c85250
CY
157
158 if (STRINGP (Vsearch_spaces_regexp))
159 re_set_whitespace_regexp (SDATA (Vsearch_spaces_regexp));
160 else
161 re_set_whitespace_regexp (NULL);
bbc73b48 162
8f924df7
KH
163 val = (char *) re_compile_pattern ((char *) SDATA (pattern),
164 SBYTES (pattern), &cp->buf);
bbc73b48 165
58e95211
SM
166 /* If the compiled pattern hard codes some of the contents of the
167 syntax-table, it can only be reused with *this* syntax table. */
168 cp->syntax_table = cp->buf.used_syntax ? current_buffer->syntax_table : Qt;
169
bbc73b48
KH
170 re_set_whitespace_regexp (NULL);
171
b819a390 172 re_set_syntax (old);
e7b2dd2e 173 /* UNBLOCK_INPUT; */
ca1d1d23 174 if (val)
06f77a8a 175 xsignal1 (Qinvalid_regexp, build_string (val));
1113d9db 176
487282dc 177 cp->regexp = Fcopy_sequence (pattern);
487282dc
KH
178}
179
6efc7887
RS
180/* Shrink each compiled regexp buffer in the cache
181 to the size actually used right now.
182 This is called from garbage collection. */
183
184void
971de7fb 185shrink_regexp_cache (void)
6efc7887 186{
a968f437 187 struct regexp_cache *cp;
6efc7887
RS
188
189 for (cp = searchbuf_head; cp != 0; cp = cp->next)
190 {
191 cp->buf.allocated = cp->buf.used;
192 cp->buf.buffer
b23c0a83 193 = (unsigned char *) xrealloc (cp->buf.buffer, cp->buf.used);
6efc7887
RS
194 }
195}
196
54dd3310
SM
197/* Clear the regexp cache w.r.t. a particular syntax table,
198 because it was changed.
e5b94d44
CY
199 There is no danger of memory leak here because re_compile_pattern
200 automagically manages the memory in each re_pattern_buffer struct,
201 based on its `allocated' and `buffer' values. */
202void
971de7fb 203clear_regexp_cache (void)
e5b94d44
CY
204{
205 int i;
206
207 for (i = 0; i < REGEXP_CACHE_SIZE; ++i)
920fd1fc
EZ
208 /* It's tempting to compare with the syntax-table we've actually changed,
209 but it's not sufficient because char-table inheritance means that
54dd3310
SM
210 modifying one syntax-table can change others at the same time. */
211 if (!EQ (searchbufs[i].syntax_table, Qt))
212 searchbufs[i].regexp = Qnil;
e5b94d44
CY
213}
214
487282dc 215/* Compile a regexp if necessary, but first check to see if there's one in
b819a390
RS
216 the cache.
217 PATTERN is the pattern to compile.
facdc750 218 TRANSLATE is a translation table for ignoring case, or nil for none.
b819a390
RS
219 REGP is the structure that says where to store the "register"
220 values that will result from matching this pattern.
221 If it is 0, we should compile the pattern not to record any
222 subexpression bounds.
223 POSIX is nonzero if we want full backtracking (POSIX style)
224 for this pattern. 0 means backtrack only enough to get a valid match. */
487282dc
KH
225
226struct re_pattern_buffer *
971de7fb 227compile_pattern (Lisp_Object pattern, struct re_registers *regp, Lisp_Object translate, int posix, int multibyte)
487282dc
KH
228{
229 struct regexp_cache *cp, **cpp;
230
231 for (cpp = &searchbuf_head; ; cpp = &cp->next)
232 {
233 cp = *cpp;
f1b9c7c1
KR
234 /* Entries are initialized to nil, and may be set to nil by
235 compile_pattern_1 if the pattern isn't valid. Don't apply
49a5f770
KR
236 string accessors in those cases. However, compile_pattern_1
237 is only applied to the cache entry we pick here to reuse. So
238 nil should never appear before a non-nil entry. */
7c752c80 239 if (NILP (cp->regexp))
f1b9c7c1 240 goto compile_it;
d5db4077 241 if (SCHARS (cp->regexp) == SCHARS (pattern)
cf69b13e 242 && STRING_MULTIBYTE (cp->regexp) == STRING_MULTIBYTE (pattern)
1d288aef 243 && !NILP (Fstring_equal (cp->regexp, pattern))
59fab369 244 && EQ (cp->buf.translate, (! NILP (translate) ? translate : make_number (0)))
5679531d 245 && cp->posix == posix
58e95211
SM
246 && (EQ (cp->syntax_table, Qt)
247 || EQ (cp->syntax_table, current_buffer->syntax_table))
89ad6492
KH
248 && !NILP (Fequal (cp->whitespace_regexp, Vsearch_spaces_regexp))
249 && cp->buf.charset_unibyte == charset_unibyte)
487282dc
KH
250 break;
251
f1b9c7c1
KR
252 /* If we're at the end of the cache, compile into the nil cell
253 we found, or the last (least recently used) cell with a
254 string value. */
487282dc
KH
255 if (cp->next == 0)
256 {
f1b9c7c1 257 compile_it:
89ad6492 258 compile_pattern_1 (cp, pattern, translate, regp, posix);
487282dc
KH
259 break;
260 }
261 }
262
263 /* When we get here, cp (aka *cpp) contains the compiled pattern,
264 either because we found it in the cache or because we just compiled it.
265 Move it to the front of the queue to mark it as most recently used. */
266 *cpp = cp->next;
267 cp->next = searchbuf_head;
268 searchbuf_head = cp;
1113d9db 269
6639708c
RS
270 /* Advise the searching functions about the space we have allocated
271 for register data. */
272 if (regp)
273 re_set_registers (&cp->buf, regp, regp->num_regs, regp->start, regp->end);
274
78edd3b7 275 /* The compiled pattern can be used both for multibyte and unibyte
89ad6492
KH
276 target. But, we have to tell which the pattern is used for. */
277 cp->buf.target_multibyte = multibyte;
278
487282dc 279 return &cp->buf;
ca1d1d23
JB
280}
281
ca1d1d23 282\f
b819a390 283static Lisp_Object
971de7fb 284looking_at_1 (Lisp_Object string, int posix)
ca1d1d23
JB
285{
286 Lisp_Object val;
287 unsigned char *p1, *p2;
e7deaab0 288 EMACS_INT s1, s2;
ca1d1d23 289 register int i;
487282dc 290 struct re_pattern_buffer *bufp;
ca1d1d23 291
7074fde6
FP
292 if (running_asynch_code)
293 save_search_regs ();
294
910c747a
RS
295 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
296 XCHAR_TABLE (current_buffer->case_canon_table)->extras[2]
297 = current_buffer->case_eqv_table;
298
b7826503 299 CHECK_STRING (string);
ef887810
RS
300 bufp = compile_pattern (string,
301 (NILP (Vinhibit_changing_match_data)
302 ? &search_regs : NULL),
487282dc 303 (!NILP (current_buffer->case_fold_search)
0190922f 304 ? current_buffer->case_canon_table : Qnil),
0c8533c6
RS
305 posix,
306 !NILP (current_buffer->enable_multibyte_characters));
ca1d1d23
JB
307
308 immediate_quit = 1;
309 QUIT; /* Do a pending quit right away, to avoid paradoxical behavior */
310
311 /* Get pointers and sizes of the two strings
312 that make up the visible portion of the buffer. */
313
314 p1 = BEGV_ADDR;
fa8ed3e0 315 s1 = GPT_BYTE - BEGV_BYTE;
ca1d1d23 316 p2 = GAP_END_ADDR;
fa8ed3e0 317 s2 = ZV_BYTE - GPT_BYTE;
ca1d1d23
JB
318 if (s1 < 0)
319 {
320 p2 = p1;
fa8ed3e0 321 s2 = ZV_BYTE - BEGV_BYTE;
ca1d1d23
JB
322 s1 = 0;
323 }
324 if (s2 < 0)
325 {
fa8ed3e0 326 s1 = ZV_BYTE - BEGV_BYTE;
ca1d1d23
JB
327 s2 = 0;
328 }
8bb43c28
RS
329
330 re_match_object = Qnil;
177c0ea7 331
487282dc 332 i = re_match_2 (bufp, (char *) p1, s1, (char *) p2, s2,
ef887810
RS
333 PT_BYTE - BEGV_BYTE,
334 (NILP (Vinhibit_changing_match_data)
335 ? &search_regs : NULL),
fa8ed3e0 336 ZV_BYTE - BEGV_BYTE);
de182d70 337 immediate_quit = 0;
177c0ea7 338
ca1d1d23
JB
339 if (i == -2)
340 matcher_overflow ();
341
342 val = (0 <= i ? Qt : Qnil);
ef887810 343 if (NILP (Vinhibit_changing_match_data) && i >= 0)
fa8ed3e0
RS
344 for (i = 0; i < search_regs.num_regs; i++)
345 if (search_regs.start[i] >= 0)
346 {
347 search_regs.start[i]
348 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
349 search_regs.end[i]
350 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
351 }
ef887810
RS
352
353 /* Set last_thing_searched only when match data is changed. */
354 if (NILP (Vinhibit_changing_match_data))
355 XSETBUFFER (last_thing_searched, current_buffer);
356
ca1d1d23
JB
357 return val;
358}
359
b819a390 360DEFUN ("looking-at", Flooking_at, Slooking_at, 1, 1, 0,
8c1a1077
PJ
361 doc: /* Return t if text after point matches regular expression REGEXP.
362This function modifies the match data that `match-beginning',
363`match-end' and `match-data' access; save and restore the match
364data if you want to preserve them. */)
5842a27b 365 (Lisp_Object regexp)
b819a390 366{
94f94972 367 return looking_at_1 (regexp, 0);
b819a390
RS
368}
369
370DEFUN ("posix-looking-at", Fposix_looking_at, Sposix_looking_at, 1, 1, 0,
8c1a1077
PJ
371 doc: /* Return t if text after point matches regular expression REGEXP.
372Find the longest match, in accord with Posix regular expression rules.
373This function modifies the match data that `match-beginning',
374`match-end' and `match-data' access; save and restore the match
375data if you want to preserve them. */)
5842a27b 376 (Lisp_Object regexp)
b819a390 377{
94f94972 378 return looking_at_1 (regexp, 1);
b819a390
RS
379}
380\f
381static Lisp_Object
971de7fb 382string_match_1 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start, int posix)
ca1d1d23
JB
383{
384 int val;
487282dc 385 struct re_pattern_buffer *bufp;
e7deaab0 386 EMACS_INT pos, pos_byte;
0c8533c6 387 int i;
ca1d1d23 388
7074fde6
FP
389 if (running_asynch_code)
390 save_search_regs ();
391
b7826503
PJ
392 CHECK_STRING (regexp);
393 CHECK_STRING (string);
ca1d1d23
JB
394
395 if (NILP (start))
0c8533c6 396 pos = 0, pos_byte = 0;
ca1d1d23
JB
397 else
398 {
d5db4077 399 int len = SCHARS (string);
ca1d1d23 400
b7826503 401 CHECK_NUMBER (start);
0c8533c6
RS
402 pos = XINT (start);
403 if (pos < 0 && -pos <= len)
404 pos = len + pos;
405 else if (0 > pos || pos > len)
ca1d1d23 406 args_out_of_range (string, start);
0c8533c6 407 pos_byte = string_char_to_byte (string, pos);
ca1d1d23
JB
408 }
409
910c747a
RS
410 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
411 XCHAR_TABLE (current_buffer->case_canon_table)->extras[2]
412 = current_buffer->case_eqv_table;
413
ef887810
RS
414 bufp = compile_pattern (regexp,
415 (NILP (Vinhibit_changing_match_data)
416 ? &search_regs : NULL),
487282dc 417 (!NILP (current_buffer->case_fold_search)
0190922f 418 ? current_buffer->case_canon_table : Qnil),
0c8533c6
RS
419 posix,
420 STRING_MULTIBYTE (string));
ca1d1d23 421 immediate_quit = 1;
8bb43c28 422 re_match_object = string;
177c0ea7 423
d5db4077
KR
424 val = re_search (bufp, (char *) SDATA (string),
425 SBYTES (string), pos_byte,
426 SBYTES (string) - pos_byte,
ef887810
RS
427 (NILP (Vinhibit_changing_match_data)
428 ? &search_regs : NULL));
ca1d1d23 429 immediate_quit = 0;
ef887810
RS
430
431 /* Set last_thing_searched only when match data is changed. */
432 if (NILP (Vinhibit_changing_match_data))
433 last_thing_searched = Qt;
434
ca1d1d23
JB
435 if (val == -2)
436 matcher_overflow ();
437 if (val < 0) return Qnil;
0c8533c6 438
ef887810
RS
439 if (NILP (Vinhibit_changing_match_data))
440 for (i = 0; i < search_regs.num_regs; i++)
441 if (search_regs.start[i] >= 0)
442 {
443 search_regs.start[i]
444 = string_byte_to_char (string, search_regs.start[i]);
445 search_regs.end[i]
446 = string_byte_to_char (string, search_regs.end[i]);
447 }
0c8533c6
RS
448
449 return make_number (string_byte_to_char (string, val));
ca1d1d23 450}
e59a8453 451
b819a390 452DEFUN ("string-match", Fstring_match, Sstring_match, 2, 3, 0,
8c1a1077 453 doc: /* Return index of start of first match for REGEXP in STRING, or nil.
b85acc4b 454Matching ignores case if `case-fold-search' is non-nil.
8c1a1077
PJ
455If third arg START is non-nil, start search at that index in STRING.
456For index of first char beyond the match, do (match-end 0).
457`match-end' and `match-beginning' also give indices of substrings
2bd2f32d
RS
458matched by parenthesis constructs in the pattern.
459
460You can use the function `match-string' to extract the substrings
461matched by the parenthesis constructions in REGEXP. */)
5842a27b 462 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start)
b819a390
RS
463{
464 return string_match_1 (regexp, string, start, 0);
465}
466
467DEFUN ("posix-string-match", Fposix_string_match, Sposix_string_match, 2, 3, 0,
8c1a1077
PJ
468 doc: /* Return index of start of first match for REGEXP in STRING, or nil.
469Find the longest match, in accord with Posix regular expression rules.
470Case is ignored if `case-fold-search' is non-nil in the current buffer.
471If third arg START is non-nil, start search at that index in STRING.
472For index of first char beyond the match, do (match-end 0).
473`match-end' and `match-beginning' also give indices of substrings
474matched by parenthesis constructs in the pattern. */)
5842a27b 475 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start)
b819a390
RS
476{
477 return string_match_1 (regexp, string, start, 1);
478}
479
e59a8453
RS
480/* Match REGEXP against STRING, searching all of STRING,
481 and return the index of the match, or negative on failure.
482 This does not clobber the match data. */
483
484int
971de7fb 485fast_string_match (Lisp_Object regexp, Lisp_Object string)
e59a8453
RS
486{
487 int val;
487282dc 488 struct re_pattern_buffer *bufp;
e59a8453 489
facdc750
RS
490 bufp = compile_pattern (regexp, 0, Qnil,
491 0, STRING_MULTIBYTE (string));
e59a8453 492 immediate_quit = 1;
8bb43c28 493 re_match_object = string;
177c0ea7 494
d5db4077
KR
495 val = re_search (bufp, (char *) SDATA (string),
496 SBYTES (string), 0,
497 SBYTES (string), 0);
e59a8453
RS
498 immediate_quit = 0;
499 return val;
500}
5679531d
KH
501
502/* Match REGEXP against STRING, searching all of STRING ignoring case,
503 and return the index of the match, or negative on failure.
0c8533c6
RS
504 This does not clobber the match data.
505 We assume that STRING contains single-byte characters. */
5679531d
KH
506
507extern Lisp_Object Vascii_downcase_table;
508
509int
971de7fb 510fast_c_string_match_ignore_case (Lisp_Object regexp, const char *string)
5679531d
KH
511{
512 int val;
513 struct re_pattern_buffer *bufp;
514 int len = strlen (string);
515
0c8533c6 516 regexp = string_make_unibyte (regexp);
b4577c63 517 re_match_object = Qt;
5679531d 518 bufp = compile_pattern (regexp, 0,
0190922f 519 Vascii_canon_table, 0,
f8bd51c4 520 0);
5679531d
KH
521 immediate_quit = 1;
522 val = re_search (bufp, string, len, 0, len, 0);
523 immediate_quit = 0;
524 return val;
525}
be5f4dfb
KH
526
527/* Like fast_string_match but ignore case. */
528
529int
971de7fb 530fast_string_match_ignore_case (Lisp_Object regexp, Lisp_Object string)
be5f4dfb
KH
531{
532 int val;
533 struct re_pattern_buffer *bufp;
534
0190922f 535 bufp = compile_pattern (regexp, 0, Vascii_canon_table,
be5f4dfb
KH
536 0, STRING_MULTIBYTE (string));
537 immediate_quit = 1;
538 re_match_object = string;
539
540 val = re_search (bufp, (char *) SDATA (string),
541 SBYTES (string), 0,
542 SBYTES (string), 0);
543 immediate_quit = 0;
544 return val;
545}
ca1d1d23 546\f
a80ce213 547/* Match REGEXP against the characters after POS to LIMIT, and return
8b13507a
KH
548 the number of matched characters. If STRING is non-nil, match
549 against the characters in it. In that case, POS and LIMIT are
550 indices into the string. This function doesn't modify the match
551 data. */
552
553EMACS_INT
971de7fb 554fast_looking_at (Lisp_Object regexp, EMACS_INT pos, EMACS_INT pos_byte, EMACS_INT limit, EMACS_INT limit_byte, Lisp_Object string)
8b13507a
KH
555{
556 int multibyte;
557 struct re_pattern_buffer *buf;
558 unsigned char *p1, *p2;
e7deaab0 559 EMACS_INT s1, s2;
8b13507a 560 EMACS_INT len;
78edd3b7 561
8b13507a
KH
562 if (STRINGP (string))
563 {
564 if (pos_byte < 0)
565 pos_byte = string_char_to_byte (string, pos);
566 if (limit_byte < 0)
567 limit_byte = string_char_to_byte (string, limit);
568 p1 = NULL;
569 s1 = 0;
570 p2 = SDATA (string);
571 s2 = SBYTES (string);
572 re_match_object = string;
573 multibyte = STRING_MULTIBYTE (string);
574 }
575 else
576 {
577 if (pos_byte < 0)
578 pos_byte = CHAR_TO_BYTE (pos);
579 if (limit_byte < 0)
580 limit_byte = CHAR_TO_BYTE (limit);
581 pos_byte -= BEGV_BYTE;
582 limit_byte -= BEGV_BYTE;
583 p1 = BEGV_ADDR;
584 s1 = GPT_BYTE - BEGV_BYTE;
585 p2 = GAP_END_ADDR;
586 s2 = ZV_BYTE - GPT_BYTE;
587 if (s1 < 0)
588 {
589 p2 = p1;
590 s2 = ZV_BYTE - BEGV_BYTE;
591 s1 = 0;
592 }
593 if (s2 < 0)
594 {
595 s1 = ZV_BYTE - BEGV_BYTE;
596 s2 = 0;
597 }
598 re_match_object = Qnil;
599 multibyte = ! NILP (current_buffer->enable_multibyte_characters);
600 }
601
602 buf = compile_pattern (regexp, 0, Qnil, 0, multibyte);
603 immediate_quit = 1;
604 len = re_match_2 (buf, (char *) p1, s1, (char *) p2, s2,
605 pos_byte, NULL, limit_byte);
606 immediate_quit = 0;
607
608 return len;
609}
610
611\f
9169c321
JB
612/* The newline cache: remembering which sections of text have no newlines. */
613
614/* If the user has requested newline caching, make sure it's on.
615 Otherwise, make sure it's off.
616 This is our cheezy way of associating an action with the change of
617 state of a buffer-local variable. */
618static void
971de7fb 619newline_cache_on_off (struct buffer *buf)
9169c321
JB
620{
621 if (NILP (buf->cache_long_line_scans))
622 {
623 /* It should be off. */
624 if (buf->newline_cache)
625 {
626 free_region_cache (buf->newline_cache);
627 buf->newline_cache = 0;
628 }
629 }
630 else
631 {
632 /* It should be on. */
633 if (buf->newline_cache == 0)
634 buf->newline_cache = new_region_cache ();
635 }
636}
637
638\f
639/* Search for COUNT instances of the character TARGET between START and END.
640
641 If COUNT is positive, search forwards; END must be >= START.
642 If COUNT is negative, search backwards for the -COUNTth instance;
643 END must be <= START.
644 If COUNT is zero, do anything you please; run rogue, for all I care.
645
646 If END is zero, use BEGV or ZV instead, as appropriate for the
647 direction indicated by COUNT.
ffd56f97
JB
648
649 If we find COUNT instances, set *SHORTAGE to zero, and return the
a9f2a45f 650 position past the COUNTth match. Note that for reverse motion
5bfe95c9 651 this is not the same as the usual convention for Emacs motion commands.
ffd56f97 652
9169c321
JB
653 If we don't find COUNT instances before reaching END, set *SHORTAGE
654 to the number of TARGETs left unfound, and return END.
ffd56f97 655
087a5f81
RS
656 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
657 except when inside redisplay. */
658
dfcf069d 659int
971de7fb 660scan_buffer (register int target, EMACS_INT start, EMACS_INT end, int count, int *shortage, int allow_quit)
ca1d1d23 661{
9169c321 662 struct region_cache *newline_cache;
177c0ea7 663 int direction;
ffd56f97 664
9169c321
JB
665 if (count > 0)
666 {
667 direction = 1;
668 if (! end) end = ZV;
669 }
670 else
671 {
672 direction = -1;
673 if (! end) end = BEGV;
674 }
ffd56f97 675
9169c321
JB
676 newline_cache_on_off (current_buffer);
677 newline_cache = current_buffer->newline_cache;
ca1d1d23
JB
678
679 if (shortage != 0)
680 *shortage = 0;
681
087a5f81 682 immediate_quit = allow_quit;
ca1d1d23 683
ffd56f97 684 if (count > 0)
9169c321 685 while (start != end)
ca1d1d23 686 {
9169c321
JB
687 /* Our innermost scanning loop is very simple; it doesn't know
688 about gaps, buffer ends, or the newline cache. ceiling is
689 the position of the last character before the next such
690 obstacle --- the last character the dumb search loop should
691 examine. */
e7deaab0
AS
692 EMACS_INT ceiling_byte = CHAR_TO_BYTE (end) - 1;
693 EMACS_INT start_byte = CHAR_TO_BYTE (start);
694 EMACS_INT tem;
9169c321
JB
695
696 /* If we're looking for a newline, consult the newline cache
697 to see where we can avoid some scanning. */
698 if (target == '\n' && newline_cache)
699 {
700 int next_change;
701 immediate_quit = 0;
702 while (region_cache_forward
fa8ed3e0
RS
703 (current_buffer, newline_cache, start_byte, &next_change))
704 start_byte = next_change;
cbe0db0d 705 immediate_quit = allow_quit;
9169c321 706
fa8ed3e0
RS
707 /* START should never be after END. */
708 if (start_byte > ceiling_byte)
709 start_byte = ceiling_byte;
9169c321
JB
710
711 /* Now the text after start is an unknown region, and
712 next_change is the position of the next known region. */
fa8ed3e0 713 ceiling_byte = min (next_change - 1, ceiling_byte);
9169c321
JB
714 }
715
716 /* The dumb loop can only scan text stored in contiguous
717 bytes. BUFFER_CEILING_OF returns the last character
718 position that is contiguous, so the ceiling is the
719 position after that. */
67ce527d
KH
720 tem = BUFFER_CEILING_OF (start_byte);
721 ceiling_byte = min (tem, ceiling_byte);
9169c321
JB
722
723 {
177c0ea7 724 /* The termination address of the dumb loop. */
fa8ed3e0
RS
725 register unsigned char *ceiling_addr
726 = BYTE_POS_ADDR (ceiling_byte) + 1;
727 register unsigned char *cursor
728 = BYTE_POS_ADDR (start_byte);
9169c321
JB
729 unsigned char *base = cursor;
730
731 while (cursor < ceiling_addr)
732 {
733 unsigned char *scan_start = cursor;
734
735 /* The dumb loop. */
736 while (*cursor != target && ++cursor < ceiling_addr)
737 ;
738
739 /* If we're looking for newlines, cache the fact that
740 the region from start to cursor is free of them. */
741 if (target == '\n' && newline_cache)
742 know_region_cache (current_buffer, newline_cache,
fa8ed3e0
RS
743 start_byte + scan_start - base,
744 start_byte + cursor - base);
9169c321
JB
745
746 /* Did we find the target character? */
747 if (cursor < ceiling_addr)
748 {
749 if (--count == 0)
750 {
751 immediate_quit = 0;
fa8ed3e0 752 return BYTE_TO_CHAR (start_byte + cursor - base + 1);
9169c321
JB
753 }
754 cursor++;
755 }
756 }
757
fa8ed3e0 758 start = BYTE_TO_CHAR (start_byte + cursor - base);
9169c321 759 }
ca1d1d23
JB
760 }
761 else
9169c321
JB
762 while (start > end)
763 {
764 /* The last character to check before the next obstacle. */
e7deaab0
AS
765 EMACS_INT ceiling_byte = CHAR_TO_BYTE (end);
766 EMACS_INT start_byte = CHAR_TO_BYTE (start);
767 EMACS_INT tem;
9169c321
JB
768
769 /* Consult the newline cache, if appropriate. */
770 if (target == '\n' && newline_cache)
771 {
772 int next_change;
773 immediate_quit = 0;
774 while (region_cache_backward
fa8ed3e0
RS
775 (current_buffer, newline_cache, start_byte, &next_change))
776 start_byte = next_change;
cbe0db0d 777 immediate_quit = allow_quit;
9169c321
JB
778
779 /* Start should never be at or before end. */
fa8ed3e0
RS
780 if (start_byte <= ceiling_byte)
781 start_byte = ceiling_byte + 1;
9169c321
JB
782
783 /* Now the text before start is an unknown region, and
784 next_change is the position of the next known region. */
fa8ed3e0 785 ceiling_byte = max (next_change, ceiling_byte);
9169c321
JB
786 }
787
788 /* Stop scanning before the gap. */
67ce527d
KH
789 tem = BUFFER_FLOOR_OF (start_byte - 1);
790 ceiling_byte = max (tem, ceiling_byte);
9169c321
JB
791
792 {
793 /* The termination address of the dumb loop. */
fa8ed3e0
RS
794 register unsigned char *ceiling_addr = BYTE_POS_ADDR (ceiling_byte);
795 register unsigned char *cursor = BYTE_POS_ADDR (start_byte - 1);
9169c321
JB
796 unsigned char *base = cursor;
797
798 while (cursor >= ceiling_addr)
799 {
800 unsigned char *scan_start = cursor;
801
802 while (*cursor != target && --cursor >= ceiling_addr)
803 ;
804
805 /* If we're looking for newlines, cache the fact that
806 the region from after the cursor to start is free of them. */
807 if (target == '\n' && newline_cache)
808 know_region_cache (current_buffer, newline_cache,
fa8ed3e0
RS
809 start_byte + cursor - base,
810 start_byte + scan_start - base);
9169c321
JB
811
812 /* Did we find the target character? */
813 if (cursor >= ceiling_addr)
814 {
815 if (++count >= 0)
816 {
817 immediate_quit = 0;
fa8ed3e0 818 return BYTE_TO_CHAR (start_byte + cursor - base);
9169c321
JB
819 }
820 cursor--;
821 }
822 }
823
fa8ed3e0 824 start = BYTE_TO_CHAR (start_byte + cursor - base);
9169c321
JB
825 }
826 }
827
ca1d1d23
JB
828 immediate_quit = 0;
829 if (shortage != 0)
ffd56f97 830 *shortage = count * direction;
9169c321 831 return start;
ca1d1d23 832}
fa8ed3e0
RS
833\f
834/* Search for COUNT instances of a line boundary, which means either a
835 newline or (if selective display enabled) a carriage return.
836 Start at START. If COUNT is negative, search backwards.
837
838 We report the resulting position by calling TEMP_SET_PT_BOTH.
839
840 If we find COUNT instances. we position after (always after,
841 even if scanning backwards) the COUNTth match, and return 0.
842
843 If we don't find COUNT instances before reaching the end of the
844 buffer (or the beginning, if scanning backwards), we return
845 the number of line boundaries left unfound, and position at
846 the limit we bumped up against.
847
848 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
d5d57b92 849 except in special cases. */
ca1d1d23 850
63fa018d 851int
971de7fb 852scan_newline (EMACS_INT start, EMACS_INT start_byte, EMACS_INT limit, EMACS_INT limit_byte, register int count, int allow_quit)
63fa018d 853{
fa8ed3e0
RS
854 int direction = ((count > 0) ? 1 : -1);
855
856 register unsigned char *cursor;
857 unsigned char *base;
858
e7deaab0 859 EMACS_INT ceiling;
fa8ed3e0
RS
860 register unsigned char *ceiling_addr;
861
d5d57b92
RS
862 int old_immediate_quit = immediate_quit;
863
fa8ed3e0
RS
864 /* The code that follows is like scan_buffer
865 but checks for either newline or carriage return. */
866
d5d57b92
RS
867 if (allow_quit)
868 immediate_quit++;
fa8ed3e0
RS
869
870 start_byte = CHAR_TO_BYTE (start);
871
872 if (count > 0)
873 {
874 while (start_byte < limit_byte)
875 {
876 ceiling = BUFFER_CEILING_OF (start_byte);
877 ceiling = min (limit_byte - 1, ceiling);
878 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
879 base = (cursor = BYTE_POS_ADDR (start_byte));
880 while (1)
881 {
882 while (*cursor != '\n' && ++cursor != ceiling_addr)
883 ;
884
885 if (cursor != ceiling_addr)
886 {
887 if (--count == 0)
888 {
d5d57b92 889 immediate_quit = old_immediate_quit;
fa8ed3e0
RS
890 start_byte = start_byte + cursor - base + 1;
891 start = BYTE_TO_CHAR (start_byte);
892 TEMP_SET_PT_BOTH (start, start_byte);
893 return 0;
894 }
895 else
896 if (++cursor == ceiling_addr)
897 break;
898 }
899 else
900 break;
901 }
902 start_byte += cursor - base;
903 }
904 }
905 else
906 {
fa8ed3e0
RS
907 while (start_byte > limit_byte)
908 {
909 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
910 ceiling = max (limit_byte, ceiling);
911 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1;
912 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
913 while (1)
914 {
915 while (--cursor != ceiling_addr && *cursor != '\n')
916 ;
917
918 if (cursor != ceiling_addr)
919 {
920 if (++count == 0)
921 {
d5d57b92 922 immediate_quit = old_immediate_quit;
fa8ed3e0
RS
923 /* Return the position AFTER the match we found. */
924 start_byte = start_byte + cursor - base + 1;
925 start = BYTE_TO_CHAR (start_byte);
926 TEMP_SET_PT_BOTH (start, start_byte);
927 return 0;
928 }
929 }
930 else
931 break;
932 }
933 /* Here we add 1 to compensate for the last decrement
934 of CURSOR, which took it past the valid range. */
935 start_byte += cursor - base + 1;
936 }
937 }
938
939 TEMP_SET_PT_BOTH (limit, limit_byte);
d5d57b92 940 immediate_quit = old_immediate_quit;
fa8ed3e0
RS
941
942 return count * direction;
63fa018d
RS
943}
944
ca1d1d23 945int
971de7fb 946find_next_newline_no_quit (EMACS_INT from, int cnt)
ca1d1d23 947{
fa8ed3e0 948 return scan_buffer ('\n', from, 0, cnt, (int *) 0, 0);
9169c321
JB
949}
950
9169c321
JB
951/* Like find_next_newline, but returns position before the newline,
952 not after, and only search up to TO. This isn't just
953 find_next_newline (...)-1, because you might hit TO. */
fa8ed3e0 954
9169c321 955int
971de7fb 956find_before_next_newline (EMACS_INT from, EMACS_INT to, int cnt)
9169c321
JB
957{
958 int shortage;
959 int pos = scan_buffer ('\n', from, to, cnt, &shortage, 1);
960
961 if (shortage == 0)
962 pos--;
177c0ea7 963
9169c321 964 return pos;
ca1d1d23
JB
965}
966\f
ca1d1d23
JB
967/* Subroutines of Lisp buffer search functions. */
968
969static Lisp_Object
971de7fb 970search_command (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count, int direction, int RE, int posix)
ca1d1d23
JB
971{
972 register int np;
9f43ad85 973 int lim, lim_byte;
ca1d1d23
JB
974 int n = direction;
975
976 if (!NILP (count))
977 {
b7826503 978 CHECK_NUMBER (count);
ca1d1d23
JB
979 n *= XINT (count);
980 }
981
b7826503 982 CHECK_STRING (string);
ca1d1d23 983 if (NILP (bound))
9f43ad85
RS
984 {
985 if (n > 0)
986 lim = ZV, lim_byte = ZV_BYTE;
987 else
988 lim = BEGV, lim_byte = BEGV_BYTE;
989 }
ca1d1d23
JB
990 else
991 {
b7826503 992 CHECK_NUMBER_COERCE_MARKER (bound);
ca1d1d23 993 lim = XINT (bound);
6ec8bbd2 994 if (n > 0 ? lim < PT : lim > PT)
ca1d1d23
JB
995 error ("Invalid search bound (wrong side of point)");
996 if (lim > ZV)
9f43ad85 997 lim = ZV, lim_byte = ZV_BYTE;
588d2fd5 998 else if (lim < BEGV)
9f43ad85 999 lim = BEGV, lim_byte = BEGV_BYTE;
588d2fd5
KH
1000 else
1001 lim_byte = CHAR_TO_BYTE (lim);
ca1d1d23
JB
1002 }
1003
910c747a
RS
1004 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
1005 XCHAR_TABLE (current_buffer->case_canon_table)->extras[2]
1006 = current_buffer->case_eqv_table;
1007
9f43ad85 1008 np = search_buffer (string, PT, PT_BYTE, lim, lim_byte, n, RE,
ca1d1d23 1009 (!NILP (current_buffer->case_fold_search)
facdc750 1010 ? current_buffer->case_canon_table
3135e9fd 1011 : Qnil),
ca1d1d23 1012 (!NILP (current_buffer->case_fold_search)
facdc750 1013 ? current_buffer->case_eqv_table
3135e9fd 1014 : Qnil),
b819a390 1015 posix);
ca1d1d23
JB
1016 if (np <= 0)
1017 {
1018 if (NILP (noerror))
06f77a8a
KS
1019 xsignal1 (Qsearch_failed, string);
1020
ca1d1d23
JB
1021 if (!EQ (noerror, Qt))
1022 {
1023 if (lim < BEGV || lim > ZV)
1024 abort ();
9f43ad85 1025 SET_PT_BOTH (lim, lim_byte);
a5f217b8
RS
1026 return Qnil;
1027#if 0 /* This would be clean, but maybe programs depend on
1028 a value of nil here. */
481399bf 1029 np = lim;
a5f217b8 1030#endif
ca1d1d23 1031 }
481399bf
RS
1032 else
1033 return Qnil;
ca1d1d23
JB
1034 }
1035
1036 if (np < BEGV || np > ZV)
1037 abort ();
1038
1039 SET_PT (np);
1040
1041 return make_number (np);
1042}
1043\f
fa8ed3e0
RS
1044/* Return 1 if REGEXP it matches just one constant string. */
1045
b6d6a51c 1046static int
971de7fb 1047trivial_regexp_p (Lisp_Object regexp)
b6d6a51c 1048{
d5db4077
KR
1049 int len = SBYTES (regexp);
1050 unsigned char *s = SDATA (regexp);
b6d6a51c
KH
1051 while (--len >= 0)
1052 {
1053 switch (*s++)
1054 {
1055 case '.': case '*': case '+': case '?': case '[': case '^': case '$':
1056 return 0;
1057 case '\\':
1058 if (--len < 0)
1059 return 0;
1060 switch (*s++)
1061 {
1062 case '|': case '(': case ')': case '`': case '\'': case 'b':
1063 case 'B': case '<': case '>': case 'w': case 'W': case 's':
29f89fe7 1064 case 'S': case '=': case '{': case '}': case '_':
5679531d 1065 case 'c': case 'C': /* for categoryspec and notcategoryspec */
866f60fd 1066 case '1': case '2': case '3': case '4': case '5':
b6d6a51c
KH
1067 case '6': case '7': case '8': case '9':
1068 return 0;
1069 }
1070 }
1071 }
1072 return 1;
1073}
1074
ca325161 1075/* Search for the n'th occurrence of STRING in the current buffer,
ca1d1d23 1076 starting at position POS and stopping at position LIM,
b819a390 1077 treating STRING as a literal string if RE is false or as
ca1d1d23
JB
1078 a regular expression if RE is true.
1079
1080 If N is positive, searching is forward and LIM must be greater than POS.
1081 If N is negative, searching is backward and LIM must be less than POS.
1082
facdc750 1083 Returns -x if x occurrences remain to be found (x > 0),
ca1d1d23 1084 or else the position at the beginning of the Nth occurrence
b819a390
RS
1085 (if searching backward) or the end (if searching forward).
1086
1087 POSIX is nonzero if we want full backtracking (POSIX style)
1088 for this pattern. 0 means backtrack only enough to get a valid match. */
ca1d1d23 1089
aff2ce94
RS
1090#define TRANSLATE(out, trt, d) \
1091do \
1092 { \
1093 if (! NILP (trt)) \
1094 { \
1095 Lisp_Object temp; \
1096 temp = Faref (trt, make_number (d)); \
1097 if (INTEGERP (temp)) \
1098 out = XINT (temp); \
1099 else \
1100 out = d; \
1101 } \
1102 else \
1103 out = d; \
1104 } \
1105while (0)
facdc750 1106
ef887810
RS
1107/* Only used in search_buffer, to record the end position of the match
1108 when searching regexps and SEARCH_REGS should not be changed
1109 (i.e. Vinhibit_changing_match_data is non-nil). */
1110static struct re_registers search_regs_1;
1111
e7deaab0 1112static EMACS_INT
d5a3eaaf
AS
1113search_buffer (Lisp_Object string, EMACS_INT pos, EMACS_INT pos_byte,
1114 EMACS_INT lim, EMACS_INT lim_byte, int n,
1115 int RE, Lisp_Object trt, Lisp_Object inverse_trt, int posix)
ca1d1d23 1116{
d5db4077
KR
1117 int len = SCHARS (string);
1118 int len_byte = SBYTES (string);
facdc750 1119 register int i;
ca1d1d23 1120
7074fde6
FP
1121 if (running_asynch_code)
1122 save_search_regs ();
1123
a7e4cdde 1124 /* Searching 0 times means don't move. */
ca1d1d23 1125 /* Null string is found at starting position. */
a7e4cdde 1126 if (len == 0 || n == 0)
ca325161 1127 {
0353b28f 1128 set_search_regs (pos_byte, 0);
ca325161
RS
1129 return pos;
1130 }
3f57a499 1131
41a33295 1132 if (RE && !(trivial_regexp_p (string) && NILP (Vsearch_spaces_regexp)))
ca1d1d23 1133 {
facdc750
RS
1134 unsigned char *p1, *p2;
1135 int s1, s2;
487282dc
KH
1136 struct re_pattern_buffer *bufp;
1137
ef887810
RS
1138 bufp = compile_pattern (string,
1139 (NILP (Vinhibit_changing_match_data)
1140 ? &search_regs : &search_regs_1),
1141 trt, posix,
0c8533c6 1142 !NILP (current_buffer->enable_multibyte_characters));
ca1d1d23 1143
ca1d1d23
JB
1144 immediate_quit = 1; /* Quit immediately if user types ^G,
1145 because letting this function finish
1146 can take too long. */
1147 QUIT; /* Do a pending quit right away,
1148 to avoid paradoxical behavior */
1149 /* Get pointers and sizes of the two strings
1150 that make up the visible portion of the buffer. */
1151
1152 p1 = BEGV_ADDR;
fa8ed3e0 1153 s1 = GPT_BYTE - BEGV_BYTE;
ca1d1d23 1154 p2 = GAP_END_ADDR;
fa8ed3e0 1155 s2 = ZV_BYTE - GPT_BYTE;
ca1d1d23
JB
1156 if (s1 < 0)
1157 {
1158 p2 = p1;
fa8ed3e0 1159 s2 = ZV_BYTE - BEGV_BYTE;
ca1d1d23
JB
1160 s1 = 0;
1161 }
1162 if (s2 < 0)
1163 {
fa8ed3e0 1164 s1 = ZV_BYTE - BEGV_BYTE;
ca1d1d23
JB
1165 s2 = 0;
1166 }
8bb43c28 1167 re_match_object = Qnil;
177c0ea7 1168
ca1d1d23
JB
1169 while (n < 0)
1170 {
42db823b 1171 int val;
487282dc 1172 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
4996330b 1173 pos_byte - BEGV_BYTE, lim_byte - pos_byte,
ef887810
RS
1174 (NILP (Vinhibit_changing_match_data)
1175 ? &search_regs : &search_regs_1),
42db823b 1176 /* Don't allow match past current point */
4996330b 1177 pos_byte - BEGV_BYTE);
ca1d1d23 1178 if (val == -2)
b6d6a51c
KH
1179 {
1180 matcher_overflow ();
1181 }
ca1d1d23
JB
1182 if (val >= 0)
1183 {
ef887810
RS
1184 if (NILP (Vinhibit_changing_match_data))
1185 {
1186 pos_byte = search_regs.start[0] + BEGV_BYTE;
1187 for (i = 0; i < search_regs.num_regs; i++)
1188 if (search_regs.start[i] >= 0)
1189 {
1190 search_regs.start[i]
1191 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
1192 search_regs.end[i]
1193 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
1194 }
1195 XSETBUFFER (last_thing_searched, current_buffer);
1196 /* Set pos to the new position. */
1197 pos = search_regs.start[0];
1198 }
1199 else
1200 {
1201 pos_byte = search_regs_1.start[0] + BEGV_BYTE;
1202 /* Set pos to the new position. */
1203 pos = BYTE_TO_CHAR (search_regs_1.start[0] + BEGV_BYTE);
1204 }
ca1d1d23
JB
1205 }
1206 else
1207 {
1208 immediate_quit = 0;
1209 return (n);
1210 }
1211 n++;
1212 }
1213 while (n > 0)
1214 {
42db823b 1215 int val;
487282dc 1216 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
4996330b 1217 pos_byte - BEGV_BYTE, lim_byte - pos_byte,
ef887810
RS
1218 (NILP (Vinhibit_changing_match_data)
1219 ? &search_regs : &search_regs_1),
4996330b 1220 lim_byte - BEGV_BYTE);
ca1d1d23 1221 if (val == -2)
b6d6a51c
KH
1222 {
1223 matcher_overflow ();
1224 }
ca1d1d23
JB
1225 if (val >= 0)
1226 {
ef887810
RS
1227 if (NILP (Vinhibit_changing_match_data))
1228 {
1229 pos_byte = search_regs.end[0] + BEGV_BYTE;
1230 for (i = 0; i < search_regs.num_regs; i++)
1231 if (search_regs.start[i] >= 0)
1232 {
1233 search_regs.start[i]
1234 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
1235 search_regs.end[i]
1236 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
1237 }
1238 XSETBUFFER (last_thing_searched, current_buffer);
1239 pos = search_regs.end[0];
1240 }
1241 else
1242 {
1243 pos_byte = search_regs_1.end[0] + BEGV_BYTE;
1244 pos = BYTE_TO_CHAR (search_regs_1.end[0] + BEGV_BYTE);
1245 }
ca1d1d23
JB
1246 }
1247 else
1248 {
1249 immediate_quit = 0;
1250 return (0 - n);
1251 }
1252 n--;
1253 }
1254 immediate_quit = 0;
1255 return (pos);
1256 }
1257 else /* non-RE case */
1258 {
facdc750
RS
1259 unsigned char *raw_pattern, *pat;
1260 int raw_pattern_size;
1261 int raw_pattern_size_byte;
1262 unsigned char *patbuf;
1263 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
a967ed62 1264 unsigned char *base_pat;
49e44e81
KH
1265 /* Set to positive if we find a non-ASCII char that need
1266 translation. Otherwise set to zero later. */
1267 int char_base = -1;
040272ce 1268 int boyer_moore_ok = 1;
facdc750
RS
1269
1270 /* MULTIBYTE says whether the text to be searched is multibyte.
1271 We must convert PATTERN to match that, or we will not really
1272 find things right. */
1273
1274 if (multibyte == STRING_MULTIBYTE (string))
1275 {
d5db4077
KR
1276 raw_pattern = (unsigned char *) SDATA (string);
1277 raw_pattern_size = SCHARS (string);
1278 raw_pattern_size_byte = SBYTES (string);
facdc750
RS
1279 }
1280 else if (multibyte)
1281 {
d5db4077 1282 raw_pattern_size = SCHARS (string);
facdc750 1283 raw_pattern_size_byte
d5db4077 1284 = count_size_as_multibyte (SDATA (string),
facdc750 1285 raw_pattern_size);
7276d3d8 1286 raw_pattern = (unsigned char *) alloca (raw_pattern_size_byte + 1);
d5db4077
KR
1287 copy_text (SDATA (string), raw_pattern,
1288 SCHARS (string), 0, 1);
facdc750
RS
1289 }
1290 else
1291 {
1292 /* Converting multibyte to single-byte.
1293
1294 ??? Perhaps this conversion should be done in a special way
1295 by subtracting nonascii-insert-offset from each non-ASCII char,
1296 so that only the multibyte chars which really correspond to
1297 the chosen single-byte character set can possibly match. */
d5db4077
KR
1298 raw_pattern_size = SCHARS (string);
1299 raw_pattern_size_byte = SCHARS (string);
7276d3d8 1300 raw_pattern = (unsigned char *) alloca (raw_pattern_size + 1);
d5db4077
KR
1301 copy_text (SDATA (string), raw_pattern,
1302 SBYTES (string), 1, 0);
facdc750
RS
1303 }
1304
1305 /* Copy and optionally translate the pattern. */
1306 len = raw_pattern_size;
1307 len_byte = raw_pattern_size_byte;
f5f7578b 1308 patbuf = (unsigned char *) alloca (len * MAX_MULTIBYTE_LENGTH);
facdc750
RS
1309 pat = patbuf;
1310 base_pat = raw_pattern;
1311 if (multibyte)
1312 {
a17ae96a
KH
1313 /* Fill patbuf by translated characters in STRING while
1314 checking if we can use boyer-moore search. If TRT is
1315 non-nil, we can use boyer-moore search only if TRT can be
1316 represented by the byte array of 256 elements. For that,
1317 all non-ASCII case-equivalents of all case-senstive
1318 characters in STRING must belong to the same charset and
1319 row. */
1320
facdc750
RS
1321 while (--len >= 0)
1322 {
a17ae96a 1323 unsigned char str_base[MAX_MULTIBYTE_LENGTH], *str;
aff2ce94 1324 int c, translated, inverse;
a17ae96a 1325 int in_charlen, charlen;
facdc750
RS
1326
1327 /* If we got here and the RE flag is set, it's because we're
1328 dealing with a regexp known to be trivial, so the backslash
1329 just quotes the next character. */
1330 if (RE && *base_pat == '\\')
1331 {
1332 len--;
62221f22 1333 raw_pattern_size--;
facdc750
RS
1334 len_byte--;
1335 base_pat++;
1336 }
1337
62a6e103 1338 c = STRING_CHAR_AND_LENGTH (base_pat, in_charlen);
040272ce 1339
a17ae96a 1340 if (NILP (trt))
facdc750 1341 {
a17ae96a
KH
1342 str = base_pat;
1343 charlen = in_charlen;
1344 }
1345 else
1346 {
1347 /* Translate the character. */
1348 TRANSLATE (translated, trt, c);
1349 charlen = CHAR_STRING (translated, str_base);
1350 str = str_base;
1351
1352 /* Check if C has any other case-equivalents. */
1353 TRANSLATE (inverse, inverse_trt, c);
1354 /* If so, check if we can use boyer-moore. */
1355 if (c != inverse && boyer_moore_ok)
1356 {
1357 /* Check if all equivalents belong to the same
1358 group of characters. Note that the check of C
49e44e81
KH
1359 itself is done by the last iteration. */
1360 int this_char_base = -1;
1361
1362 while (boyer_moore_ok)
a17ae96a 1363 {
49e44e81 1364 if (ASCII_BYTE_P (inverse))
a17ae96a 1365 {
49e44e81
KH
1366 if (this_char_base > 0)
1367 boyer_moore_ok = 0;
1368 else
dafaabd1 1369 this_char_base = 0;
a17ae96a 1370 }
49e44e81
KH
1371 else if (CHAR_BYTE8_P (inverse))
1372 /* Boyer-moore search can't handle a
1373 translation of an eight-bit
1374 character. */
1375 boyer_moore_ok = 0;
1376 else if (this_char_base < 0)
1377 {
1378 this_char_base = inverse & ~0x3F;
1379 if (char_base < 0)
1380 char_base = this_char_base;
dafaabd1 1381 else if (this_char_base != char_base)
49e44e81
KH
1382 boyer_moore_ok = 0;
1383 }
1384 else if ((inverse & ~0x3F) != this_char_base)
1385 boyer_moore_ok = 0;
a17ae96a
KH
1386 if (c == inverse)
1387 break;
1388 TRANSLATE (inverse, inverse_trt, inverse);
1389 }
1390 }
aff2ce94 1391 }
facdc750
RS
1392
1393 /* Store this character into the translated pattern. */
72af86bd 1394 memcpy (pat, str, charlen);
a17ae96a 1395 pat += charlen;
facdc750
RS
1396 base_pat += in_charlen;
1397 len_byte -= in_charlen;
1398 }
dafaabd1
AS
1399
1400 /* If char_base is still negative we didn't find any translated
1401 non-ASCII characters. */
1402 if (char_base < 0)
1403 char_base = 0;
facdc750
RS
1404 }
1405 else
1406 {
040272ce 1407 /* Unibyte buffer. */
a17ae96a 1408 char_base = 0;
facdc750
RS
1409 while (--len >= 0)
1410 {
040272ce 1411 int c, translated;
facdc750
RS
1412
1413 /* If we got here and the RE flag is set, it's because we're
1414 dealing with a regexp known to be trivial, so the backslash
1415 just quotes the next character. */
1416 if (RE && *base_pat == '\\')
1417 {
1418 len--;
0190922f 1419 raw_pattern_size--;
facdc750
RS
1420 base_pat++;
1421 }
1422 c = *base_pat++;
aff2ce94 1423 TRANSLATE (translated, trt, c);
facdc750
RS
1424 *pat++ = translated;
1425 }
1426 }
1427
1428 len_byte = pat - patbuf;
1429 len = raw_pattern_size;
1430 pat = base_pat = patbuf;
1431
040272ce 1432 if (boyer_moore_ok)
facdc750 1433 return boyer_moore (n, pat, len, len_byte, trt, inverse_trt,
aff2ce94 1434 pos, pos_byte, lim, lim_byte,
a17ae96a 1435 char_base);
facdc750
RS
1436 else
1437 return simple_search (n, pat, len, len_byte, trt,
1438 pos, pos_byte, lim, lim_byte);
1439 }
1440}
1441\f
1442/* Do a simple string search N times for the string PAT,
1443 whose length is LEN/LEN_BYTE,
1444 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1445 TRT is the translation table.
f8bd51c4 1446
facdc750
RS
1447 Return the character position where the match is found.
1448 Otherwise, if M matches remained to be found, return -M.
f8bd51c4 1449
facdc750
RS
1450 This kind of search works regardless of what is in PAT and
1451 regardless of what is in TRT. It is used in cases where
1452 boyer_moore cannot work. */
1453
e7deaab0 1454static EMACS_INT
971de7fb 1455simple_search (int n, unsigned char *pat, int len, int len_byte, Lisp_Object trt, EMACS_INT pos, EMACS_INT pos_byte, EMACS_INT lim, EMACS_INT lim_byte)
facdc750
RS
1456{
1457 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
ab228c24 1458 int forward = n > 0;
49e44e81
KH
1459 /* Number of buffer bytes matched. Note that this may be different
1460 from len_byte in a multibyte buffer. */
1461 int match_byte;
facdc750
RS
1462
1463 if (lim > pos && multibyte)
1464 while (n > 0)
1465 {
1466 while (1)
f8bd51c4 1467 {
facdc750 1468 /* Try matching at position POS. */
e7deaab0
AS
1469 EMACS_INT this_pos = pos;
1470 EMACS_INT this_pos_byte = pos_byte;
facdc750 1471 int this_len = len;
facdc750 1472 unsigned char *p = pat;
a9469498 1473 if (pos + len > lim || pos_byte + len_byte > lim_byte)
facdc750
RS
1474 goto stop;
1475
1476 while (this_len > 0)
1477 {
1478 int charlen, buf_charlen;
ab228c24 1479 int pat_ch, buf_ch;
facdc750 1480
62a6e103 1481 pat_ch = STRING_CHAR_AND_LENGTH (p, charlen);
facdc750 1482 buf_ch = STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte),
facdc750 1483 buf_charlen);
aff2ce94 1484 TRANSLATE (buf_ch, trt, buf_ch);
facdc750
RS
1485
1486 if (buf_ch != pat_ch)
1487 break;
ab228c24 1488
ab228c24
RS
1489 this_len--;
1490 p += charlen;
1491
1492 this_pos_byte += buf_charlen;
1493 this_pos++;
facdc750
RS
1494 }
1495
1496 if (this_len == 0)
1497 {
49e44e81 1498 match_byte = this_pos_byte - pos_byte;
facdc750 1499 pos += len;
49e44e81 1500 pos_byte += match_byte;
facdc750
RS
1501 break;
1502 }
1503
1504 INC_BOTH (pos, pos_byte);
f8bd51c4 1505 }
facdc750
RS
1506
1507 n--;
1508 }
1509 else if (lim > pos)
1510 while (n > 0)
1511 {
1512 while (1)
f8bd51c4 1513 {
facdc750 1514 /* Try matching at position POS. */
e7deaab0 1515 EMACS_INT this_pos = pos;
facdc750
RS
1516 int this_len = len;
1517 unsigned char *p = pat;
1518
1519 if (pos + len > lim)
1520 goto stop;
1521
1522 while (this_len > 0)
1523 {
1524 int pat_ch = *p++;
1525 int buf_ch = FETCH_BYTE (this_pos);
aff2ce94 1526 TRANSLATE (buf_ch, trt, buf_ch);
facdc750
RS
1527
1528 if (buf_ch != pat_ch)
1529 break;
ab228c24
RS
1530
1531 this_len--;
1532 this_pos++;
facdc750
RS
1533 }
1534
1535 if (this_len == 0)
1536 {
49e44e81 1537 match_byte = len;
facdc750
RS
1538 pos += len;
1539 break;
1540 }
1541
1542 pos++;
f8bd51c4 1543 }
facdc750
RS
1544
1545 n--;
1546 }
1547 /* Backwards search. */
1548 else if (lim < pos && multibyte)
1549 while (n < 0)
1550 {
1551 while (1)
f8bd51c4 1552 {
facdc750 1553 /* Try matching at position POS. */
8b264ecb
AS
1554 EMACS_INT this_pos = pos;
1555 EMACS_INT this_pos_byte = pos_byte;
facdc750 1556 int this_len = len;
c525b3f2 1557 const unsigned char *p = pat + len_byte;
facdc750 1558
8b264ecb 1559 if (this_pos - len < lim || (pos_byte - len_byte) < lim_byte)
facdc750
RS
1560 goto stop;
1561
1562 while (this_len > 0)
1563 {
8b264ecb 1564 int charlen;
ab228c24 1565 int pat_ch, buf_ch;
facdc750 1566
8b264ecb
AS
1567 DEC_BOTH (this_pos, this_pos_byte);
1568 PREV_CHAR_BOUNDARY (p, pat);
1569 pat_ch = STRING_CHAR (p);
1570 buf_ch = STRING_CHAR (BYTE_POS_ADDR (this_pos_byte));
aff2ce94 1571 TRANSLATE (buf_ch, trt, buf_ch);
facdc750
RS
1572
1573 if (buf_ch != pat_ch)
1574 break;
ab228c24 1575
ab228c24 1576 this_len--;
facdc750
RS
1577 }
1578
1579 if (this_len == 0)
1580 {
8b264ecb
AS
1581 match_byte = pos_byte - this_pos_byte;
1582 pos = this_pos;
1583 pos_byte = this_pos_byte;
facdc750
RS
1584 break;
1585 }
1586
1587 DEC_BOTH (pos, pos_byte);
f8bd51c4
KH
1588 }
1589
facdc750
RS
1590 n++;
1591 }
1592 else if (lim < pos)
1593 while (n < 0)
1594 {
1595 while (1)
b6d6a51c 1596 {
facdc750 1597 /* Try matching at position POS. */
e7deaab0 1598 EMACS_INT this_pos = pos - len;
facdc750
RS
1599 int this_len = len;
1600 unsigned char *p = pat;
1601
a9469498 1602 if (this_pos < lim)
facdc750
RS
1603 goto stop;
1604
1605 while (this_len > 0)
1606 {
1607 int pat_ch = *p++;
1608 int buf_ch = FETCH_BYTE (this_pos);
aff2ce94 1609 TRANSLATE (buf_ch, trt, buf_ch);
facdc750
RS
1610
1611 if (buf_ch != pat_ch)
1612 break;
ab228c24
RS
1613 this_len--;
1614 this_pos++;
facdc750
RS
1615 }
1616
1617 if (this_len == 0)
b6d6a51c 1618 {
49e44e81 1619 match_byte = len;
facdc750
RS
1620 pos -= len;
1621 break;
b6d6a51c 1622 }
facdc750
RS
1623
1624 pos--;
b6d6a51c 1625 }
facdc750
RS
1626
1627 n++;
b6d6a51c 1628 }
facdc750
RS
1629
1630 stop:
1631 if (n == 0)
aff2ce94 1632 {
ab228c24 1633 if (forward)
49e44e81 1634 set_search_regs ((multibyte ? pos_byte : pos) - match_byte, match_byte);
ab228c24 1635 else
49e44e81 1636 set_search_regs (multibyte ? pos_byte : pos, match_byte);
aff2ce94
RS
1637
1638 return pos;
1639 }
facdc750
RS
1640 else if (n > 0)
1641 return -n;
1642 else
1643 return n;
1644}
1645\f
0190922f 1646/* Do Boyer-Moore search N times for the string BASE_PAT,
facdc750
RS
1647 whose length is LEN/LEN_BYTE,
1648 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1649 DIRECTION says which direction we search in.
1650 TRT and INVERSE_TRT are translation tables.
0190922f 1651 Characters in PAT are already translated by TRT.
facdc750 1652
0190922f
KH
1653 This kind of search works if all the characters in BASE_PAT that
1654 have nontrivial translation are the same aside from the last byte.
1655 This makes it possible to translate just the last byte of a
1656 character, and do so after just a simple test of the context.
b2e6b10f 1657 CHAR_BASE is nonzero if there is such a non-ASCII character.
facdc750
RS
1658
1659 If that criterion is not satisfied, do not call this function. */
1660
e7deaab0 1661static EMACS_INT
d5a3eaaf
AS
1662boyer_moore (int n, unsigned char *base_pat, int len, int len_byte,
1663 Lisp_Object trt, Lisp_Object inverse_trt,
1664 EMACS_INT pos, EMACS_INT pos_byte,
1665 EMACS_INT lim, EMACS_INT lim_byte, int char_base)
facdc750
RS
1666{
1667 int direction = ((n > 0) ? 1 : -1);
1668 register int dirlen;
e7deaab0
AS
1669 EMACS_INT limit;
1670 int stride_for_teases = 0;
f4646fff 1671 int BM_tab[0400];
177c0ea7 1672 register unsigned char *cursor, *p_limit;
facdc750 1673 register int i, j;
cb6792d2 1674 unsigned char *pat, *pat_end;
facdc750
RS
1675 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
1676
1677 unsigned char simple_translate[0400];
0190922f 1678 /* These are set to the preceding bytes of a byte to be translated
49e44e81 1679 if char_base is nonzero. As the maximum byte length of a
a17ae96a 1680 multibyte character is 5, we have to check at most four previous
0190922f
KH
1681 bytes. */
1682 int translate_prev_byte1 = 0;
1683 int translate_prev_byte2 = 0;
1684 int translate_prev_byte3 = 0;
a17ae96a 1685 int translate_prev_byte4 = 0;
facdc750 1686
f4646fff
AS
1687 /* The general approach is that we are going to maintain that we know
1688 the first (closest to the present position, in whatever direction
1689 we're searching) character that could possibly be the last
1690 (furthest from present position) character of a valid match. We
1691 advance the state of our knowledge by looking at that character
1692 and seeing whether it indeed matches the last character of the
1693 pattern. If it does, we take a closer look. If it does not, we
1694 move our pointer (to putative last characters) as far as is
1695 logically possible. This amount of movement, which I call a
1696 stride, will be the length of the pattern if the actual character
1697 appears nowhere in the pattern, otherwise it will be the distance
1698 from the last occurrence of that character to the end of the
1699 pattern. If the amount is zero we have a possible match. */
1700
1701 /* Here we make a "mickey mouse" BM table. The stride of the search
1702 is determined only by the last character of the putative match.
1703 If that character does not match, we will stride the proper
1704 distance to propose a match that superimposes it on the last
1705 instance of a character that matches it (per trt), or misses
1706 it entirely if there is none. */
facdc750
RS
1707
1708 dirlen = len_byte * direction;
cb6792d2
RS
1709
1710 /* Record position after the end of the pattern. */
1711 pat_end = base_pat + len_byte;
1712 /* BASE_PAT points to a character that we start scanning from.
1713 It is the first character in a forward search,
1714 the last character in a backward search. */
facdc750 1715 if (direction < 0)
cb6792d2
RS
1716 base_pat = pat_end - 1;
1717
f4646fff
AS
1718 /* A character that does not appear in the pattern induces a
1719 stride equal to the pattern length. */
1720 for (i = 0; i < 0400; i++)
1721 BM_tab[i] = dirlen;
facdc750
RS
1722
1723 /* We use this for translation, instead of TRT itself.
1724 We fill this in to handle the characters that actually
1725 occur in the pattern. Others don't matter anyway! */
facdc750
RS
1726 for (i = 0; i < 0400; i++)
1727 simple_translate[i] = i;
1728
a17ae96a 1729 if (char_base)
0190922f 1730 {
a17ae96a 1731 /* Setup translate_prev_byte1/2/3/4 from CHAR_BASE. Only a
0190922f 1732 byte following them are the target of translation. */
0190922f 1733 unsigned char str[MAX_MULTIBYTE_LENGTH];
a17ae96a 1734 int len = CHAR_STRING (char_base, str);
0190922f
KH
1735
1736 translate_prev_byte1 = str[len - 2];
1737 if (len > 2)
1738 {
1739 translate_prev_byte2 = str[len - 3];
1740 if (len > 3)
a17ae96a
KH
1741 {
1742 translate_prev_byte3 = str[len - 4];
1743 if (len > 4)
1744 translate_prev_byte4 = str[len - 5];
1745 }
0190922f
KH
1746 }
1747 }
1748
facdc750 1749 i = 0;
f4646fff 1750 while (i != dirlen)
facdc750 1751 {
cb6792d2 1752 unsigned char *ptr = base_pat + i;
facdc750 1753 i += direction;
facdc750 1754 if (! NILP (trt))
ca1d1d23 1755 {
49e44e81
KH
1756 /* If the byte currently looking at is the last of a
1757 character to check case-equivalents, set CH to that
1758 character. An ASCII character and a non-ASCII character
1759 matching with CHAR_BASE are to be checked. */
a17ae96a
KH
1760 int ch = -1;
1761
1762 if (ASCII_BYTE_P (*ptr) || ! multibyte)
1763 ch = *ptr;
49e44e81 1764 else if (char_base
86dc6ccb 1765 && ((pat_end - ptr) == 1 || CHAR_HEAD_P (ptr[1])))
ca1d1d23 1766 {
49e44e81
KH
1767 unsigned char *charstart = ptr - 1;
1768
1769 while (! (CHAR_HEAD_P (*charstart)))
1770 charstart--;
62a6e103 1771 ch = STRING_CHAR (charstart);
a17ae96a
KH
1772 if (char_base != (ch & ~0x3F))
1773 ch = -1;
ca1d1d23 1774 }
facdc750 1775
f51995fa 1776 if (ch >= 0200)
49e44e81
KH
1777 j = (ch & 0x3F) | 0200;
1778 else
1779 j = *ptr;
1780
f4646fff 1781 if (i == dirlen)
facdc750 1782 stride_for_teases = BM_tab[j];
ab228c24 1783
facdc750
RS
1784 BM_tab[j] = dirlen - i;
1785 /* A translation table is accompanied by its inverse -- see */
177c0ea7 1786 /* comment following downcase_table for details */
a17ae96a 1787 if (ch >= 0)
ab228c24
RS
1788 {
1789 int starting_ch = ch;
49e44e81 1790 int starting_j = j;
a17ae96a 1791
ab228c24
RS
1792 while (1)
1793 {
1794 TRANSLATE (ch, inverse_trt, ch);
f51995fa 1795 if (ch >= 0200)
49e44e81 1796 j = (ch & 0x3F) | 0200;
ab228c24 1797 else
a17ae96a 1798 j = ch;
ab228c24
RS
1799
1800 /* For all the characters that map into CH,
1801 set up simple_translate to map the last byte
1802 into STARTING_J. */
1803 simple_translate[j] = starting_j;
1804 if (ch == starting_ch)
1805 break;
1806 BM_tab[j] = dirlen - i;
1807 }
1808 }
facdc750
RS
1809 }
1810 else
1811 {
1812 j = *ptr;
1813
f4646fff 1814 if (i == dirlen)
facdc750
RS
1815 stride_for_teases = BM_tab[j];
1816 BM_tab[j] = dirlen - i;
ca1d1d23 1817 }
f4646fff
AS
1818 /* stride_for_teases tells how much to stride if we get a
1819 match on the far character but are subsequently
1820 disappointed, by recording what the stride would have been
1821 for that character if the last character had been
1822 different. */
facdc750 1823 }
facdc750
RS
1824 pos_byte += dirlen - ((direction > 0) ? direction : 0);
1825 /* loop invariant - POS_BYTE points at where last char (first
1826 char if reverse) of pattern would align in a possible match. */
1827 while (n != 0)
1828 {
e7deaab0 1829 EMACS_INT tail_end;
facdc750
RS
1830 unsigned char *tail_end_ptr;
1831
1832 /* It's been reported that some (broken) compiler thinks that
1833 Boolean expressions in an arithmetic context are unsigned.
1834 Using an explicit ?1:0 prevents this. */
1835 if ((lim_byte - pos_byte - ((direction > 0) ? 1 : 0)) * direction
1836 < 0)
1837 return (n * (0 - direction));
1838 /* First we do the part we can by pointers (maybe nothing) */
1839 QUIT;
1840 pat = base_pat;
1841 limit = pos_byte - dirlen + direction;
67ce527d
KH
1842 if (direction > 0)
1843 {
1844 limit = BUFFER_CEILING_OF (limit);
1845 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1846 can take on without hitting edge of buffer or the gap. */
1847 limit = min (limit, pos_byte + 20000);
1848 limit = min (limit, lim_byte - 1);
1849 }
1850 else
1851 {
1852 limit = BUFFER_FLOOR_OF (limit);
1853 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1854 can take on without hitting edge of buffer or the gap. */
1855 limit = max (limit, pos_byte - 20000);
1856 limit = max (limit, lim_byte);
1857 }
facdc750
RS
1858 tail_end = BUFFER_CEILING_OF (pos_byte) + 1;
1859 tail_end_ptr = BYTE_POS_ADDR (tail_end);
1860
1861 if ((limit - pos_byte) * direction > 20)
ca1d1d23 1862 {
facdc750
RS
1863 unsigned char *p2;
1864
1865 p_limit = BYTE_POS_ADDR (limit);
1866 p2 = (cursor = BYTE_POS_ADDR (pos_byte));
f4646fff 1867 /* In this loop, pos + cursor - p2 is the surrogate for pos. */
facdc750 1868 while (1) /* use one cursor setting as long as i can */
ca1d1d23 1869 {
facdc750 1870 if (direction > 0) /* worth duplicating */
ca1d1d23 1871 {
f4646fff
AS
1872 while (cursor <= p_limit)
1873 {
1874 if (BM_tab[*cursor] == 0)
1875 goto hit;
facdc750 1876 cursor += BM_tab[*cursor];
f4646fff 1877 }
facdc750
RS
1878 }
1879 else
1880 {
f4646fff
AS
1881 while (cursor >= p_limit)
1882 {
1883 if (BM_tab[*cursor] == 0)
1884 goto hit;
facdc750 1885 cursor += BM_tab[*cursor];
f4646fff 1886 }
facdc750 1887 }
f4646fff
AS
1888 /* If you are here, cursor is beyond the end of the
1889 searched region. You fail to match within the
1890 permitted region and would otherwise try a character
1891 beyond that region. */
1892 break;
1893
1894 hit:
facdc750
RS
1895 i = dirlen - direction;
1896 if (! NILP (trt))
1897 {
1898 while ((i -= direction) + direction != 0)
ca1d1d23 1899 {
facdc750
RS
1900 int ch;
1901 cursor -= direction;
1902 /* Translate only the last byte of a character. */
1903 if (! multibyte
1904 || ((cursor == tail_end_ptr
1905 || CHAR_HEAD_P (cursor[1]))
1906 && (CHAR_HEAD_P (cursor[0])
0190922f
KH
1907 /* Check if this is the last byte of
1908 a translable character. */
1909 || (translate_prev_byte1 == cursor[-1]
1910 && (CHAR_HEAD_P (translate_prev_byte1)
1911 || (translate_prev_byte2 == cursor[-2]
1912 && (CHAR_HEAD_P (translate_prev_byte2)
1913 || (translate_prev_byte3 == cursor[-3]))))))))
facdc750
RS
1914 ch = simple_translate[*cursor];
1915 else
1916 ch = *cursor;
1917 if (pat[i] != ch)
1918 break;
ca1d1d23 1919 }
facdc750
RS
1920 }
1921 else
1922 {
1923 while ((i -= direction) + direction != 0)
ca1d1d23 1924 {
facdc750
RS
1925 cursor -= direction;
1926 if (pat[i] != *cursor)
1927 break;
ca1d1d23 1928 }
facdc750
RS
1929 }
1930 cursor += dirlen - i - direction; /* fix cursor */
1931 if (i + direction == 0)
1932 {
e7deaab0 1933 EMACS_INT position, start, end;
0c8533c6 1934
facdc750 1935 cursor -= direction;
1113d9db 1936
facdc750
RS
1937 position = pos_byte + cursor - p2 + ((direction > 0)
1938 ? 1 - len_byte : 0);
1939 set_search_regs (position, len_byte);
ca325161 1940
ef887810
RS
1941 if (NILP (Vinhibit_changing_match_data))
1942 {
1943 start = search_regs.start[0];
1944 end = search_regs.end[0];
1945 }
1946 else
1947 /* If Vinhibit_changing_match_data is non-nil,
1948 search_regs will not be changed. So let's
1949 compute start and end here. */
1950 {
1951 start = BYTE_TO_CHAR (position);
1952 end = BYTE_TO_CHAR (position + len_byte);
1953 }
1954
facdc750
RS
1955 if ((n -= direction) != 0)
1956 cursor += dirlen; /* to resume search */
ca1d1d23 1957 else
ef887810 1958 return direction > 0 ? end : start;
ca1d1d23 1959 }
facdc750
RS
1960 else
1961 cursor += stride_for_teases; /* <sigh> we lose - */
ca1d1d23 1962 }
facdc750
RS
1963 pos_byte += cursor - p2;
1964 }
1965 else
f4646fff
AS
1966 /* Now we'll pick up a clump that has to be done the hard
1967 way because it covers a discontinuity. */
facdc750
RS
1968 {
1969 limit = ((direction > 0)
1970 ? BUFFER_CEILING_OF (pos_byte - dirlen + 1)
1971 : BUFFER_FLOOR_OF (pos_byte - dirlen - 1));
1972 limit = ((direction > 0)
1973 ? min (limit + len_byte, lim_byte - 1)
1974 : max (limit - len_byte, lim_byte));
1975 /* LIMIT is now the last value POS_BYTE can have
1976 and still be valid for a possible match. */
1977 while (1)
ca1d1d23 1978 {
f4646fff
AS
1979 /* This loop can be coded for space rather than
1980 speed because it will usually run only once.
1981 (the reach is at most len + 21, and typically
1982 does not exceed len). */
facdc750 1983 while ((limit - pos_byte) * direction >= 0)
f4646fff
AS
1984 {
1985 int ch = FETCH_BYTE (pos_byte);
1986 if (BM_tab[ch] == 0)
1987 goto hit2;
1988 pos_byte += BM_tab[ch];
1989 }
1990 break; /* ran off the end */
1991
1992 hit2:
1993 /* Found what might be a match. */
facdc750
RS
1994 i = dirlen - direction;
1995 while ((i -= direction) + direction != 0)
ca1d1d23 1996 {
facdc750
RS
1997 int ch;
1998 unsigned char *ptr;
1999 pos_byte -= direction;
2000 ptr = BYTE_POS_ADDR (pos_byte);
2001 /* Translate only the last byte of a character. */
2002 if (! multibyte
2003 || ((ptr == tail_end_ptr
2004 || CHAR_HEAD_P (ptr[1]))
2005 && (CHAR_HEAD_P (ptr[0])
0190922f
KH
2006 /* Check if this is the last byte of a
2007 translable character. */
2008 || (translate_prev_byte1 == ptr[-1]
2009 && (CHAR_HEAD_P (translate_prev_byte1)
2010 || (translate_prev_byte2 == ptr[-2]
2011 && (CHAR_HEAD_P (translate_prev_byte2)
2012 || translate_prev_byte3 == ptr[-3])))))))
facdc750
RS
2013 ch = simple_translate[*ptr];
2014 else
2015 ch = *ptr;
2016 if (pat[i] != ch)
2017 break;
2018 }
2019 /* Above loop has moved POS_BYTE part or all the way
2020 back to the first pos (last pos if reverse).
2021 Set it once again at the last (first if reverse) char. */
f4646fff 2022 pos_byte += dirlen - i - direction;
facdc750
RS
2023 if (i + direction == 0)
2024 {
e7deaab0 2025 EMACS_INT position, start, end;
facdc750 2026 pos_byte -= direction;
1113d9db 2027
facdc750 2028 position = pos_byte + ((direction > 0) ? 1 - len_byte : 0);
facdc750 2029 set_search_regs (position, len_byte);
ca325161 2030
ef887810
RS
2031 if (NILP (Vinhibit_changing_match_data))
2032 {
2033 start = search_regs.start[0];
2034 end = search_regs.end[0];
2035 }
2036 else
2037 /* If Vinhibit_changing_match_data is non-nil,
2038 search_regs will not be changed. So let's
2039 compute start and end here. */
2040 {
2041 start = BYTE_TO_CHAR (position);
2042 end = BYTE_TO_CHAR (position + len_byte);
2043 }
2044
facdc750
RS
2045 if ((n -= direction) != 0)
2046 pos_byte += dirlen; /* to resume search */
ca1d1d23 2047 else
ef887810 2048 return direction > 0 ? end : start;
ca1d1d23 2049 }
facdc750
RS
2050 else
2051 pos_byte += stride_for_teases;
2052 }
2053 }
2054 /* We have done one clump. Can we continue? */
2055 if ((lim_byte - pos_byte) * direction < 0)
2056 return ((0 - n) * direction);
ca1d1d23 2057 }
facdc750 2058 return BYTE_TO_CHAR (pos_byte);
ca1d1d23 2059}
ca325161 2060
fa8ed3e0 2061/* Record beginning BEG_BYTE and end BEG_BYTE + NBYTES
a7e4cdde
RS
2062 for the overall match just found in the current buffer.
2063 Also clear out the match data for registers 1 and up. */
ca325161
RS
2064
2065static void
971de7fb 2066set_search_regs (EMACS_INT beg_byte, EMACS_INT nbytes)
ca325161 2067{
a7e4cdde
RS
2068 int i;
2069
ef887810
RS
2070 if (!NILP (Vinhibit_changing_match_data))
2071 return;
2072
ca325161
RS
2073 /* Make sure we have registers in which to store
2074 the match position. */
2075 if (search_regs.num_regs == 0)
2076 {
2d4a771a
RS
2077 search_regs.start = (regoff_t *) xmalloc (2 * sizeof (regoff_t));
2078 search_regs.end = (regoff_t *) xmalloc (2 * sizeof (regoff_t));
487282dc 2079 search_regs.num_regs = 2;
ca325161
RS
2080 }
2081
a7e4cdde
RS
2082 /* Clear out the other registers. */
2083 for (i = 1; i < search_regs.num_regs; i++)
2084 {
2085 search_regs.start[i] = -1;
2086 search_regs.end[i] = -1;
2087 }
2088
fa8ed3e0
RS
2089 search_regs.start[0] = BYTE_TO_CHAR (beg_byte);
2090 search_regs.end[0] = BYTE_TO_CHAR (beg_byte + nbytes);
a3668d92 2091 XSETBUFFER (last_thing_searched, current_buffer);
ca325161 2092}
ca1d1d23 2093\f
c6e0e1cc
CY
2094/* Given STRING, a string of words separated by word delimiters,
2095 compute a regexp that matches those exact words separated by
2096 arbitrary punctuation. If LAX is nonzero, the end of the string
2097 need not match a word boundary unless it ends in whitespace. */
ca1d1d23
JB
2098
2099static Lisp_Object
971de7fb 2100wordify (Lisp_Object string, int lax)
ca1d1d23
JB
2101{
2102 register unsigned char *p, *o;
0c8533c6 2103 register int i, i_byte, len, punct_count = 0, word_count = 0;
ca1d1d23 2104 Lisp_Object val;
0c8533c6 2105 int prev_c = 0;
c6e0e1cc 2106 int adjust, whitespace_at_end;
ca1d1d23 2107
b7826503 2108 CHECK_STRING (string);
d5db4077
KR
2109 p = SDATA (string);
2110 len = SCHARS (string);
ca1d1d23 2111
0c8533c6
RS
2112 for (i = 0, i_byte = 0; i < len; )
2113 {
2114 int c;
177c0ea7 2115
93daa011 2116 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, i, i_byte);
0c8533c6
RS
2117
2118 if (SYNTAX (c) != Sword)
2119 {
2120 punct_count++;
2121 if (i > 0 && SYNTAX (prev_c) == Sword)
2122 word_count++;
2123 }
ca1d1d23 2124
0c8533c6
RS
2125 prev_c = c;
2126 }
2127
2128 if (SYNTAX (prev_c) == Sword)
c6e0e1cc
CY
2129 {
2130 word_count++;
2131 whitespace_at_end = 0;
2132 }
2133 else
2134 whitespace_at_end = 1;
2135
0c8533c6 2136 if (!word_count)
c60416e0 2137 return empty_unibyte_string;
0c8533c6 2138
c6e0e1cc
CY
2139 adjust = - punct_count + 5 * (word_count - 1)
2140 + ((lax && !whitespace_at_end) ? 2 : 4);
8a2df937
RS
2141 if (STRING_MULTIBYTE (string))
2142 val = make_uninit_multibyte_string (len + adjust,
d5db4077 2143 SBYTES (string)
8a2df937
RS
2144 + adjust);
2145 else
2146 val = make_uninit_string (len + adjust);
ca1d1d23 2147
d5db4077 2148 o = SDATA (val);
ca1d1d23
JB
2149 *o++ = '\\';
2150 *o++ = 'b';
1e9582d4 2151 prev_c = 0;
ca1d1d23 2152
1e9582d4
RS
2153 for (i = 0, i_byte = 0; i < len; )
2154 {
2155 int c;
2156 int i_byte_orig = i_byte;
177c0ea7 2157
93daa011 2158 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, i, i_byte);
1e9582d4
RS
2159
2160 if (SYNTAX (c) == Sword)
2161 {
72af86bd 2162 memcpy (o, SDATA (string) + i_byte_orig, i_byte - i_byte_orig);
1e9582d4
RS
2163 o += i_byte - i_byte_orig;
2164 }
2165 else if (i > 0 && SYNTAX (prev_c) == Sword && --word_count)
2166 {
2167 *o++ = '\\';
2168 *o++ = 'W';
2169 *o++ = '\\';
2170 *o++ = 'W';
2171 *o++ = '*';
2172 }
2173
2174 prev_c = c;
2175 }
ca1d1d23 2176
c6e0e1cc
CY
2177 if (!lax || whitespace_at_end)
2178 {
2179 *o++ = '\\';
2180 *o++ = 'b';
2181 }
ca1d1d23
JB
2182
2183 return val;
2184}
2185\f
2186DEFUN ("search-backward", Fsearch_backward, Ssearch_backward, 1, 4,
8c1a1077
PJ
2187 "MSearch backward: ",
2188 doc: /* Search backward from point for STRING.
2189Set point to the beginning of the occurrence found, and return point.
2190An optional second argument bounds the search; it is a buffer position.
2191The match found must not extend before that position.
2192Optional third argument, if t, means if fail just return nil (no error).
2193 If not nil and not t, position at limit of search and return nil.
2194Optional fourth argument is repeat count--search for successive occurrences.
2195
2196Search case-sensitivity is determined by the value of the variable
2197`case-fold-search', which see.
2198
2199See also the functions `match-beginning', `match-end' and `replace-match'. */)
5842a27b 2200 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
ca1d1d23 2201{
b819a390 2202 return search_command (string, bound, noerror, count, -1, 0, 0);
ca1d1d23
JB
2203}
2204
6af43974 2205DEFUN ("search-forward", Fsearch_forward, Ssearch_forward, 1, 4, "MSearch: ",
8c1a1077
PJ
2206 doc: /* Search forward from point for STRING.
2207Set point to the end of the occurrence found, and return point.
2208An optional second argument bounds the search; it is a buffer position.
d6aacdcd 2209The match found must not extend after that position. A value of nil is
48740f01 2210 equivalent to (point-max).
8c1a1077
PJ
2211Optional third argument, if t, means if fail just return nil (no error).
2212 If not nil and not t, move to limit of search and return nil.
2213Optional fourth argument is repeat count--search for successive occurrences.
2214
2215Search case-sensitivity is determined by the value of the variable
2216`case-fold-search', which see.
2217
2218See also the functions `match-beginning', `match-end' and `replace-match'. */)
5842a27b 2219 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
ca1d1d23 2220{
b819a390 2221 return search_command (string, bound, noerror, count, 1, 0, 0);
ca1d1d23
JB
2222}
2223
2224DEFUN ("word-search-backward", Fword_search_backward, Sword_search_backward, 1, 4,
8c1a1077
PJ
2225 "sWord search backward: ",
2226 doc: /* Search backward from point for STRING, ignoring differences in punctuation.
2227Set point to the beginning of the occurrence found, and return point.
2228An optional second argument bounds the search; it is a buffer position.
2229The match found must not extend before that position.
2230Optional third argument, if t, means if fail just return nil (no error).
2231 If not nil and not t, move to limit of search and return nil.
2232Optional fourth argument is repeat count--search for successive occurrences. */)
5842a27b 2233 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
ca1d1d23 2234{
c6e0e1cc 2235 return search_command (wordify (string, 0), bound, noerror, count, -1, 1, 0);
ca1d1d23
JB
2236}
2237
2238DEFUN ("word-search-forward", Fword_search_forward, Sword_search_forward, 1, 4,
8c1a1077
PJ
2239 "sWord search: ",
2240 doc: /* Search forward from point for STRING, ignoring differences in punctuation.
2241Set point to the end of the occurrence found, and return point.
2242An optional second argument bounds the search; it is a buffer position.
2243The match found must not extend after that position.
2244Optional third argument, if t, means if fail just return nil (no error).
2245 If not nil and not t, move to limit of search and return nil.
2246Optional fourth argument is repeat count--search for successive occurrences. */)
5842a27b 2247 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
ca1d1d23 2248{
c6e0e1cc
CY
2249 return search_command (wordify (string, 0), bound, noerror, count, 1, 1, 0);
2250}
2251
2252DEFUN ("word-search-backward-lax", Fword_search_backward_lax, Sword_search_backward_lax, 1, 4,
2253 "sWord search backward: ",
2254 doc: /* Search backward from point for STRING, ignoring differences in punctuation.
2255Set point to the beginning of the occurrence found, and return point.
2256
2257Unlike `word-search-backward', the end of STRING need not match a word
2258boundary unless it ends in whitespace.
2259
2260An optional second argument bounds the search; it is a buffer position.
2261The match found must not extend before that position.
2262Optional third argument, if t, means if fail just return nil (no error).
2263 If not nil and not t, move to limit of search and return nil.
2264Optional fourth argument is repeat count--search for successive occurrences. */)
5842a27b 2265 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
c6e0e1cc
CY
2266{
2267 return search_command (wordify (string, 1), bound, noerror, count, -1, 1, 0);
2268}
2269
2270DEFUN ("word-search-forward-lax", Fword_search_forward_lax, Sword_search_forward_lax, 1, 4,
2271 "sWord search: ",
2272 doc: /* Search forward from point for STRING, ignoring differences in punctuation.
2273Set point to the end of the occurrence found, and return point.
2274
2275Unlike `word-search-forward', the end of STRING need not match a word
2276boundary unless it ends in whitespace.
2277
2278An optional second argument bounds the search; it is a buffer position.
2279The match found must not extend after that position.
2280Optional third argument, if t, means if fail just return nil (no error).
2281 If not nil and not t, move to limit of search and return nil.
2282Optional fourth argument is repeat count--search for successive occurrences. */)
5842a27b 2283 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
c6e0e1cc
CY
2284{
2285 return search_command (wordify (string, 1), bound, noerror, count, 1, 1, 0);
ca1d1d23
JB
2286}
2287
2288DEFUN ("re-search-backward", Fre_search_backward, Sre_search_backward, 1, 4,
8c1a1077
PJ
2289 "sRE search backward: ",
2290 doc: /* Search backward from point for match for regular expression REGEXP.
2291Set point to the beginning of the match, and return point.
2292The match found is the one starting last in the buffer
2293and yet ending before the origin of the search.
2294An optional second argument bounds the search; it is a buffer position.
2295The match found must start at or after that position.
2296Optional third argument, if t, means if fail just return nil (no error).
2297 If not nil and not t, move to limit of search and return nil.
2298Optional fourth argument is repeat count--search for successive occurrences.
2299See also the functions `match-beginning', `match-end', `match-string',
2300and `replace-match'. */)
5842a27b 2301 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
ca1d1d23 2302{
b819a390 2303 return search_command (regexp, bound, noerror, count, -1, 1, 0);
ca1d1d23
JB
2304}
2305
2306DEFUN ("re-search-forward", Fre_search_forward, Sre_search_forward, 1, 4,
8c1a1077
PJ
2307 "sRE search: ",
2308 doc: /* Search forward from point for regular expression REGEXP.
2309Set point to the end of the occurrence found, and return point.
2310An optional second argument bounds the search; it is a buffer position.
2311The match found must not extend after that position.
2312Optional third argument, if t, means if fail just return nil (no error).
2313 If not nil and not t, move to limit of search and return nil.
2314Optional fourth argument is repeat count--search for successive occurrences.
2315See also the functions `match-beginning', `match-end', `match-string',
2316and `replace-match'. */)
5842a27b 2317 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
ca1d1d23 2318{
b819a390
RS
2319 return search_command (regexp, bound, noerror, count, 1, 1, 0);
2320}
2321
2322DEFUN ("posix-search-backward", Fposix_search_backward, Sposix_search_backward, 1, 4,
8c1a1077
PJ
2323 "sPosix search backward: ",
2324 doc: /* Search backward from point for match for regular expression REGEXP.
2325Find the longest match in accord with Posix regular expression rules.
2326Set point to the beginning of the match, and return point.
2327The match found is the one starting last in the buffer
2328and yet ending before the origin of the search.
2329An optional second argument bounds the search; it is a buffer position.
2330The match found must start at or after that position.
2331Optional third argument, if t, means if fail just return nil (no error).
2332 If not nil and not t, move to limit of search and return nil.
2333Optional fourth argument is repeat count--search for successive occurrences.
2334See also the functions `match-beginning', `match-end', `match-string',
2335and `replace-match'. */)
5842a27b 2336 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
b819a390
RS
2337{
2338 return search_command (regexp, bound, noerror, count, -1, 1, 1);
2339}
2340
2341DEFUN ("posix-search-forward", Fposix_search_forward, Sposix_search_forward, 1, 4,
8c1a1077
PJ
2342 "sPosix search: ",
2343 doc: /* Search forward from point for regular expression REGEXP.
2344Find the longest match in accord with Posix regular expression rules.
2345Set point to the end of the occurrence found, and return point.
2346An optional second argument bounds the search; it is a buffer position.
2347The match found must not extend after that position.
2348Optional third argument, if t, means if fail just return nil (no error).
2349 If not nil and not t, move to limit of search and return nil.
2350Optional fourth argument is repeat count--search for successive occurrences.
2351See also the functions `match-beginning', `match-end', `match-string',
2352and `replace-match'. */)
5842a27b 2353 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
b819a390
RS
2354{
2355 return search_command (regexp, bound, noerror, count, 1, 1, 1);
ca1d1d23
JB
2356}
2357\f
d7a5ad5f 2358DEFUN ("replace-match", Freplace_match, Sreplace_match, 1, 5, 0,
8c1a1077 2359 doc: /* Replace text matched by last search with NEWTEXT.
4dd0c271
RS
2360Leave point at the end of the replacement text.
2361
8c1a1077
PJ
2362If second arg FIXEDCASE is non-nil, do not alter case of replacement text.
2363Otherwise maybe capitalize the whole text, or maybe just word initials,
2364based on the replaced text.
2365If the replaced text has only capital letters
2366and has at least one multiletter word, convert NEWTEXT to all caps.
4dd0c271
RS
2367Otherwise if all words are capitalized in the replaced text,
2368capitalize each word in NEWTEXT.
8c1a1077
PJ
2369
2370If third arg LITERAL is non-nil, insert NEWTEXT literally.
2371Otherwise treat `\\' as special:
2372 `\\&' in NEWTEXT means substitute original matched text.
2373 `\\N' means substitute what matched the Nth `\\(...\\)'.
2374 If Nth parens didn't match, substitute nothing.
2375 `\\\\' means insert one `\\'.
4dd0c271
RS
2376Case conversion does not apply to these substitutions.
2377
8c1a1077 2378FIXEDCASE and LITERAL are optional arguments.
8c1a1077
PJ
2379
2380The optional fourth argument STRING can be a string to modify.
2381This is meaningful when the previous match was done against STRING,
2382using `string-match'. When used this way, `replace-match'
2383creates and returns a new string made by copying STRING and replacing
2384the part of STRING that was matched.
2385
2386The optional fifth argument SUBEXP specifies a subexpression;
2387it says to replace just that subexpression with NEWTEXT,
2388rather than replacing the entire matched text.
2389This is, in a vague sense, the inverse of using `\\N' in NEWTEXT;
2390`\\N' copies subexp N into NEWTEXT, but using N as SUBEXP puts
2391NEWTEXT in place of subexp N.
2392This is useful only after a regular expression search or match,
2393since only regular expressions have distinguished subexpressions. */)
5842a27b 2394 (Lisp_Object newtext, Lisp_Object fixedcase, Lisp_Object literal, Lisp_Object string, Lisp_Object subexp)
ca1d1d23
JB
2395{
2396 enum { nochange, all_caps, cap_initial } case_action;
ac3b28b1 2397 register int pos, pos_byte;
ca1d1d23 2398 int some_multiletter_word;
97832bd0 2399 int some_lowercase;
73dc8771 2400 int some_uppercase;
208767c3 2401 int some_nonuppercase_initial;
ca1d1d23 2402 register int c, prevc;
d7a5ad5f 2403 int sub;
e7deaab0 2404 EMACS_INT opoint, newpoint;
ca1d1d23 2405
b7826503 2406 CHECK_STRING (newtext);
ca1d1d23 2407
080c45fd 2408 if (! NILP (string))
b7826503 2409 CHECK_STRING (string);
080c45fd 2410
ca1d1d23
JB
2411 case_action = nochange; /* We tried an initialization */
2412 /* but some C compilers blew it */
4746118a
JB
2413
2414 if (search_regs.num_regs <= 0)
d72cdbfc 2415 error ("`replace-match' called before any match found");
4746118a 2416
d7a5ad5f
RS
2417 if (NILP (subexp))
2418 sub = 0;
2419 else
2420 {
b7826503 2421 CHECK_NUMBER (subexp);
d7a5ad5f
RS
2422 sub = XINT (subexp);
2423 if (sub < 0 || sub >= search_regs.num_regs)
2424 args_out_of_range (subexp, make_number (search_regs.num_regs));
2425 }
2426
080c45fd
RS
2427 if (NILP (string))
2428 {
d7a5ad5f
RS
2429 if (search_regs.start[sub] < BEGV
2430 || search_regs.start[sub] > search_regs.end[sub]
2431 || search_regs.end[sub] > ZV)
2432 args_out_of_range (make_number (search_regs.start[sub]),
2433 make_number (search_regs.end[sub]));
080c45fd
RS
2434 }
2435 else
2436 {
d7a5ad5f
RS
2437 if (search_regs.start[sub] < 0
2438 || search_regs.start[sub] > search_regs.end[sub]
d5db4077 2439 || search_regs.end[sub] > SCHARS (string))
d7a5ad5f
RS
2440 args_out_of_range (make_number (search_regs.start[sub]),
2441 make_number (search_regs.end[sub]));
080c45fd 2442 }
ca1d1d23
JB
2443
2444 if (NILP (fixedcase))
2445 {
2446 /* Decide how to casify by examining the matched text. */
e7deaab0 2447 EMACS_INT last;
ca1d1d23 2448
ac3b28b1
KH
2449 pos = search_regs.start[sub];
2450 last = search_regs.end[sub];
fa8ed3e0
RS
2451
2452 if (NILP (string))
ac3b28b1 2453 pos_byte = CHAR_TO_BYTE (pos);
fa8ed3e0 2454 else
ac3b28b1 2455 pos_byte = string_char_to_byte (string, pos);
fa8ed3e0 2456
ca1d1d23
JB
2457 prevc = '\n';
2458 case_action = all_caps;
2459
2460 /* some_multiletter_word is set nonzero if any original word
2461 is more than one letter long. */
2462 some_multiletter_word = 0;
97832bd0 2463 some_lowercase = 0;
208767c3 2464 some_nonuppercase_initial = 0;
73dc8771 2465 some_uppercase = 0;
ca1d1d23 2466
ac3b28b1 2467 while (pos < last)
ca1d1d23 2468 {
080c45fd 2469 if (NILP (string))
ac3b28b1 2470 {
93daa011 2471 c = FETCH_CHAR_AS_MULTIBYTE (pos_byte);
ac3b28b1
KH
2472 INC_BOTH (pos, pos_byte);
2473 }
080c45fd 2474 else
93daa011 2475 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, pos, pos_byte);
080c45fd 2476
ca1d1d23
JB
2477 if (LOWERCASEP (c))
2478 {
2479 /* Cannot be all caps if any original char is lower case */
2480
97832bd0 2481 some_lowercase = 1;
ca1d1d23 2482 if (SYNTAX (prevc) != Sword)
208767c3 2483 some_nonuppercase_initial = 1;
ca1d1d23
JB
2484 else
2485 some_multiletter_word = 1;
2486 }
d16c2b66 2487 else if (UPPERCASEP (c))
ca1d1d23 2488 {
73dc8771 2489 some_uppercase = 1;
97832bd0 2490 if (SYNTAX (prevc) != Sword)
c4d460ce 2491 ;
97832bd0 2492 else
ca1d1d23
JB
2493 some_multiletter_word = 1;
2494 }
208767c3
RS
2495 else
2496 {
2497 /* If the initial is a caseless word constituent,
2498 treat that like a lowercase initial. */
2499 if (SYNTAX (prevc) != Sword)
2500 some_nonuppercase_initial = 1;
2501 }
ca1d1d23
JB
2502
2503 prevc = c;
2504 }
2505
97832bd0
RS
2506 /* Convert to all caps if the old text is all caps
2507 and has at least one multiletter word. */
2508 if (! some_lowercase && some_multiletter_word)
2509 case_action = all_caps;
c4d460ce 2510 /* Capitalize each word, if the old text has all capitalized words. */
208767c3 2511 else if (!some_nonuppercase_initial && some_multiletter_word)
ca1d1d23 2512 case_action = cap_initial;
208767c3 2513 else if (!some_nonuppercase_initial && some_uppercase)
73dc8771
KH
2514 /* Should x -> yz, operating on X, give Yz or YZ?
2515 We'll assume the latter. */
2516 case_action = all_caps;
97832bd0
RS
2517 else
2518 case_action = nochange;
ca1d1d23
JB
2519 }
2520
080c45fd
RS
2521 /* Do replacement in a string. */
2522 if (!NILP (string))
2523 {
2524 Lisp_Object before, after;
2525
2526 before = Fsubstring (string, make_number (0),
d7a5ad5f
RS
2527 make_number (search_regs.start[sub]));
2528 after = Fsubstring (string, make_number (search_regs.end[sub]), Qnil);
080c45fd 2529
636a5e28
RS
2530 /* Substitute parts of the match into NEWTEXT
2531 if desired. */
080c45fd
RS
2532 if (NILP (literal))
2533 {
e7deaab0
AS
2534 EMACS_INT lastpos = 0;
2535 EMACS_INT lastpos_byte = 0;
080c45fd
RS
2536 /* We build up the substituted string in ACCUM. */
2537 Lisp_Object accum;
2538 Lisp_Object middle;
d5db4077 2539 int length = SBYTES (newtext);
080c45fd
RS
2540
2541 accum = Qnil;
2542
ac3b28b1 2543 for (pos_byte = 0, pos = 0; pos_byte < length;)
080c45fd
RS
2544 {
2545 int substart = -1;
6bbd7a29 2546 int subend = 0;
1e79ec24 2547 int delbackslash = 0;
080c45fd 2548
0c8533c6
RS
2549 FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte);
2550
080c45fd
RS
2551 if (c == '\\')
2552 {
0c8533c6 2553 FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte);
177c0ea7 2554
080c45fd
RS
2555 if (c == '&')
2556 {
d7a5ad5f
RS
2557 substart = search_regs.start[sub];
2558 subend = search_regs.end[sub];
080c45fd 2559 }
76fc1ea2 2560 else if (c >= '1' && c <= '9')
080c45fd 2561 {
76fc1ea2
KH
2562 if (search_regs.start[c - '0'] >= 0
2563 && c <= search_regs.num_regs + '0')
080c45fd
RS
2564 {
2565 substart = search_regs.start[c - '0'];
2566 subend = search_regs.end[c - '0'];
2567 }
76fc1ea2
KH
2568 else
2569 {
2570 /* If that subexp did not match,
2571 replace \\N with nothing. */
2572 substart = 0;
2573 subend = 0;
2574 }
080c45fd 2575 }
1e79ec24
KH
2576 else if (c == '\\')
2577 delbackslash = 1;
636a5e28
RS
2578 else
2579 error ("Invalid use of `\\' in replacement text");
080c45fd
RS
2580 }
2581 if (substart >= 0)
2582 {
d131e79c
RS
2583 if (pos - 2 != lastpos)
2584 middle = substring_both (newtext, lastpos,
2585 lastpos_byte,
2586 pos - 2, pos_byte - 2);
080c45fd
RS
2587 else
2588 middle = Qnil;
2589 accum = concat3 (accum, middle,
0c8533c6
RS
2590 Fsubstring (string,
2591 make_number (substart),
080c45fd
RS
2592 make_number (subend)));
2593 lastpos = pos;
0c8533c6 2594 lastpos_byte = pos_byte;
080c45fd 2595 }
1e79ec24
KH
2596 else if (delbackslash)
2597 {
d131e79c
RS
2598 middle = substring_both (newtext, lastpos,
2599 lastpos_byte,
2600 pos - 1, pos_byte - 1);
0c8533c6 2601
1e79ec24
KH
2602 accum = concat2 (accum, middle);
2603 lastpos = pos;
0c8533c6 2604 lastpos_byte = pos_byte;
1e79ec24 2605 }
080c45fd
RS
2606 }
2607
d131e79c
RS
2608 if (pos != lastpos)
2609 middle = substring_both (newtext, lastpos,
2610 lastpos_byte,
0c8533c6 2611 pos, pos_byte);
080c45fd
RS
2612 else
2613 middle = Qnil;
2614
2615 newtext = concat2 (accum, middle);
2616 }
2617
636a5e28 2618 /* Do case substitution in NEWTEXT if desired. */
080c45fd
RS
2619 if (case_action == all_caps)
2620 newtext = Fupcase (newtext);
2621 else if (case_action == cap_initial)
2b2eead9 2622 newtext = Fupcase_initials (newtext);
080c45fd
RS
2623
2624 return concat3 (before, newtext, after);
2625 }
2626
09c4719e 2627 /* Record point, then move (quietly) to the start of the match. */
9160906f 2628 if (PT >= search_regs.end[sub])
b0eba991 2629 opoint = PT - ZV;
9160906f
RS
2630 else if (PT > search_regs.start[sub])
2631 opoint = search_regs.end[sub] - ZV;
b0eba991
RS
2632 else
2633 opoint = PT;
2634
886ed6ec
RS
2635 /* If we want non-literal replacement,
2636 perform substitution on the replacement string. */
2637 if (NILP (literal))
ca1d1d23 2638 {
d5db4077 2639 int length = SBYTES (newtext);
68e69fbd
RS
2640 unsigned char *substed;
2641 int substed_alloc_size, substed_len;
3bc25e52
KH
2642 int buf_multibyte = !NILP (current_buffer->enable_multibyte_characters);
2643 int str_multibyte = STRING_MULTIBYTE (newtext);
2644 Lisp_Object rev_tbl;
886ed6ec 2645 int really_changed = 0;
3bc25e52 2646
8f924df7 2647 rev_tbl = Qnil;
ac3b28b1 2648
68e69fbd
RS
2649 substed_alloc_size = length * 2 + 100;
2650 substed = (unsigned char *) xmalloc (substed_alloc_size + 1);
2651 substed_len = 0;
2652
3bc25e52
KH
2653 /* Go thru NEWTEXT, producing the actual text to insert in
2654 SUBSTED while adjusting multibyteness to that of the current
2655 buffer. */
ca1d1d23 2656
ac3b28b1 2657 for (pos_byte = 0, pos = 0; pos_byte < length;)
ca1d1d23 2658 {
68e69fbd 2659 unsigned char str[MAX_MULTIBYTE_LENGTH];
f8ce8a0d
GM
2660 unsigned char *add_stuff = NULL;
2661 int add_len = 0;
68e69fbd 2662 int idx = -1;
9a76659d 2663
3bc25e52
KH
2664 if (str_multibyte)
2665 {
eb99a8dd 2666 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, newtext, pos, pos_byte);
3bc25e52
KH
2667 if (!buf_multibyte)
2668 c = multibyte_char_to_unibyte (c, rev_tbl);
2669 }
2670 else
2671 {
2672 /* Note that we don't have to increment POS. */
5d69fe10 2673 c = SREF (newtext, pos_byte++);
3bc25e52 2674 if (buf_multibyte)
4c0354d7 2675 MAKE_CHAR_MULTIBYTE (c);
3bc25e52 2676 }
ac3b28b1 2677
68e69fbd
RS
2678 /* Either set ADD_STUFF and ADD_LEN to the text to put in SUBSTED,
2679 or set IDX to a match index, which means put that part
2680 of the buffer text into SUBSTED. */
2681
ca1d1d23
JB
2682 if (c == '\\')
2683 {
886ed6ec
RS
2684 really_changed = 1;
2685
3bc25e52
KH
2686 if (str_multibyte)
2687 {
eb99a8dd
KH
2688 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, newtext,
2689 pos, pos_byte);
071ce769 2690 if (!buf_multibyte && !ASCII_CHAR_P (c))
3bc25e52
KH
2691 c = multibyte_char_to_unibyte (c, rev_tbl);
2692 }
2693 else
2694 {
d5db4077 2695 c = SREF (newtext, pos_byte++);
3bc25e52 2696 if (buf_multibyte)
4c0354d7 2697 MAKE_CHAR_MULTIBYTE (c);
3bc25e52
KH
2698 }
2699
ca1d1d23 2700 if (c == '&')
68e69fbd 2701 idx = sub;
78445046 2702 else if (c >= '1' && c <= '9' && c <= search_regs.num_regs + '0')
ca1d1d23
JB
2703 {
2704 if (search_regs.start[c - '0'] >= 1)
68e69fbd 2705 idx = c - '0';
ca1d1d23 2706 }
636a5e28 2707 else if (c == '\\')
68e69fbd 2708 add_len = 1, add_stuff = "\\";
636a5e28 2709 else
3bc25e52
KH
2710 {
2711 xfree (substed);
2712 error ("Invalid use of `\\' in replacement text");
2713 }
ca1d1d23
JB
2714 }
2715 else
68e69fbd
RS
2716 {
2717 add_len = CHAR_STRING (c, str);
2718 add_stuff = str;
2719 }
2720
2721 /* If we want to copy part of a previous match,
2722 set up ADD_STUFF and ADD_LEN to point to it. */
2723 if (idx >= 0)
2724 {
e7deaab0 2725 EMACS_INT begbyte = CHAR_TO_BYTE (search_regs.start[idx]);
68e69fbd
RS
2726 add_len = CHAR_TO_BYTE (search_regs.end[idx]) - begbyte;
2727 if (search_regs.start[idx] < GPT && GPT < search_regs.end[idx])
2728 move_gap (search_regs.start[idx]);
2729 add_stuff = BYTE_POS_ADDR (begbyte);
2730 }
2731
2732 /* Now the stuff we want to add to SUBSTED
2733 is invariably ADD_LEN bytes starting at ADD_STUFF. */
2734
2735 /* Make sure SUBSTED is big enough. */
2736 if (substed_len + add_len >= substed_alloc_size)
2737 {
2738 substed_alloc_size = substed_len + add_len + 500;
2739 substed = (unsigned char *) xrealloc (substed,
2740 substed_alloc_size + 1);
2741 }
2742
2743 /* Now add to the end of SUBSTED. */
f8ce8a0d
GM
2744 if (add_stuff)
2745 {
72af86bd 2746 memcpy (substed + substed_len, add_stuff, add_len);
f8ce8a0d
GM
2747 substed_len += add_len;
2748 }
ca1d1d23 2749 }
68e69fbd 2750
886ed6ec 2751 if (really_changed)
76fc1ea2
KH
2752 {
2753 if (buf_multibyte)
2754 {
2755 int nchars = multibyte_chars_in_text (substed, substed_len);
68e69fbd 2756
76fc1ea2
KH
2757 newtext = make_multibyte_string (substed, nchars, substed_len);
2758 }
2759 else
2760 newtext = make_unibyte_string (substed, substed_len);
2761 }
68e69fbd 2762 xfree (substed);
ca1d1d23
JB
2763 }
2764
886ed6ec
RS
2765 /* Replace the old text with the new in the cleanest possible way. */
2766 replace_range (search_regs.start[sub], search_regs.end[sub],
2767 newtext, 1, 0, 1);
d5db4077 2768 newpoint = search_regs.start[sub] + SCHARS (newtext);
ca1d1d23
JB
2769
2770 if (case_action == all_caps)
886ed6ec
RS
2771 Fupcase_region (make_number (search_regs.start[sub]),
2772 make_number (newpoint));
ca1d1d23 2773 else if (case_action == cap_initial)
886ed6ec
RS
2774 Fupcase_initials_region (make_number (search_regs.start[sub]),
2775 make_number (newpoint));
3e18eecf 2776
98e942e0
RS
2777 /* Adjust search data for this change. */
2778 {
e7deaab0
AS
2779 EMACS_INT oldend = search_regs.end[sub];
2780 EMACS_INT oldstart = search_regs.start[sub];
2781 EMACS_INT change = newpoint - search_regs.end[sub];
98e942e0
RS
2782 int i;
2783
2784 for (i = 0; i < search_regs.num_regs; i++)
2785 {
41c01205 2786 if (search_regs.start[i] >= oldend)
98e942e0 2787 search_regs.start[i] += change;
41c01205
DK
2788 else if (search_regs.start[i] > oldstart)
2789 search_regs.start[i] = oldstart;
2790 if (search_regs.end[i] >= oldend)
98e942e0 2791 search_regs.end[i] += change;
41c01205
DK
2792 else if (search_regs.end[i] > oldstart)
2793 search_regs.end[i] = oldstart;
98e942e0
RS
2794 }
2795 }
2796
b0eba991 2797 /* Put point back where it was in the text. */
8d808a65 2798 if (opoint <= 0)
fa8ed3e0 2799 TEMP_SET_PT (opoint + ZV);
b0eba991 2800 else
fa8ed3e0 2801 TEMP_SET_PT (opoint);
b0eba991
RS
2802
2803 /* Now move point "officially" to the start of the inserted replacement. */
3e18eecf 2804 move_if_not_intangible (newpoint);
177c0ea7 2805
ca1d1d23
JB
2806 return Qnil;
2807}
2808\f
2809static Lisp_Object
971de7fb 2810match_limit (Lisp_Object num, int beginningp)
ca1d1d23
JB
2811{
2812 register int n;
2813
b7826503 2814 CHECK_NUMBER (num);
ca1d1d23 2815 n = XINT (num);
f90a5bf5 2816 if (n < 0)
bd2cbd56 2817 args_out_of_range (num, make_number (0));
f90a5bf5
RS
2818 if (search_regs.num_regs <= 0)
2819 error ("No match data, because no search succeeded");
9b9ceb61 2820 if (n >= search_regs.num_regs
4746118a 2821 || search_regs.start[n] < 0)
ca1d1d23
JB
2822 return Qnil;
2823 return (make_number ((beginningp) ? search_regs.start[n]
2824 : search_regs.end[n]));
2825}
2826
2827DEFUN ("match-beginning", Fmatch_beginning, Smatch_beginning, 1, 1, 0,
8c1a1077
PJ
2828 doc: /* Return position of start of text matched by last search.
2829SUBEXP, a number, specifies which parenthesized expression in the last
2830 regexp.
2831Value is nil if SUBEXPth pair didn't match, or there were less than
2832 SUBEXP pairs.
2833Zero means the entire text matched by the whole regexp or whole string. */)
5842a27b 2834 (Lisp_Object subexp)
ca1d1d23 2835{
5806161b 2836 return match_limit (subexp, 1);
ca1d1d23
JB
2837}
2838
2839DEFUN ("match-end", Fmatch_end, Smatch_end, 1, 1, 0,
8c1a1077
PJ
2840 doc: /* Return position of end of text matched by last search.
2841SUBEXP, a number, specifies which parenthesized expression in the last
2842 regexp.
2843Value is nil if SUBEXPth pair didn't match, or there were less than
2844 SUBEXP pairs.
2845Zero means the entire text matched by the whole regexp or whole string. */)
5842a27b 2846 (Lisp_Object subexp)
ca1d1d23 2847{
5806161b 2848 return match_limit (subexp, 0);
177c0ea7 2849}
ca1d1d23 2850
abd0071c 2851DEFUN ("match-data", Fmatch_data, Smatch_data, 0, 3, 0,
8c1a1077
PJ
2852 doc: /* Return a list containing all info on what the last search matched.
2853Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.
2854All the elements are markers or nil (nil if the Nth pair didn't match)
2855if the last match was on a buffer; integers or nil if a string was matched.
febb8aba 2856Use `set-match-data' to reinstate the data in this list.
8c1a1077 2857
41c01205
DK
2858If INTEGERS (the optional first argument) is non-nil, always use
2859integers \(rather than markers) to represent buffer positions. In
2860this case, and if the last match was in a buffer, the buffer will get
2861stored as one additional element at the end of the list.
2862
abd0071c
KS
2863If REUSE is a list, reuse it as part of the value. If REUSE is long
2864enough to hold all the values, and if INTEGERS is non-nil, no consing
2865is done.
2866
2867If optional third arg RESEAT is non-nil, any previous markers on the
2868REUSE list will be modified to point to nowhere.
2869
140a6b7e 2870Return value is undefined if the last search failed. */)
5842a27b 2871 (Lisp_Object integers, Lisp_Object reuse, Lisp_Object reseat)
ca1d1d23 2872{
56256c2a 2873 Lisp_Object tail, prev;
4746118a 2874 Lisp_Object *data;
ca1d1d23
JB
2875 int i, len;
2876
abd0071c
KS
2877 if (!NILP (reseat))
2878 for (tail = reuse; CONSP (tail); tail = XCDR (tail))
2879 if (MARKERP (XCAR (tail)))
2880 {
51f10faa 2881 unchain_marker (XMARKER (XCAR (tail)));
abd0071c
KS
2882 XSETCAR (tail, Qnil);
2883 }
2884
daa37602 2885 if (NILP (last_thing_searched))
c36bcf1b 2886 return Qnil;
daa37602 2887
6bbd7a29
GM
2888 prev = Qnil;
2889
41c01205 2890 data = (Lisp_Object *) alloca ((2 * search_regs.num_regs + 1)
4746118a
JB
2891 * sizeof (Lisp_Object));
2892
41c01205 2893 len = 0;
4746118a 2894 for (i = 0; i < search_regs.num_regs; i++)
ca1d1d23
JB
2895 {
2896 int start = search_regs.start[i];
2897 if (start >= 0)
2898 {
56256c2a
RS
2899 if (EQ (last_thing_searched, Qt)
2900 || ! NILP (integers))
ca1d1d23 2901 {
c235cce7
KH
2902 XSETFASTINT (data[2 * i], start);
2903 XSETFASTINT (data[2 * i + 1], search_regs.end[i]);
ca1d1d23 2904 }
0ed62dc7 2905 else if (BUFFERP (last_thing_searched))
ca1d1d23
JB
2906 {
2907 data[2 * i] = Fmake_marker ();
daa37602
JB
2908 Fset_marker (data[2 * i],
2909 make_number (start),
2910 last_thing_searched);
ca1d1d23
JB
2911 data[2 * i + 1] = Fmake_marker ();
2912 Fset_marker (data[2 * i + 1],
177c0ea7 2913 make_number (search_regs.end[i]),
daa37602 2914 last_thing_searched);
ca1d1d23 2915 }
daa37602
JB
2916 else
2917 /* last_thing_searched must always be Qt, a buffer, or Qnil. */
2918 abort ();
2919
abd0071c 2920 len = 2 * i + 2;
ca1d1d23
JB
2921 }
2922 else
abd0071c 2923 data[2 * i] = data[2 * i + 1] = Qnil;
ca1d1d23 2924 }
56256c2a 2925
bd2cbd56 2926 if (BUFFERP (last_thing_searched) && !NILP (integers))
41c01205 2927 {
bd2cbd56 2928 data[len] = last_thing_searched;
41c01205
DK
2929 len++;
2930 }
2931
56256c2a
RS
2932 /* If REUSE is not usable, cons up the values and return them. */
2933 if (! CONSP (reuse))
41c01205 2934 return Flist (len, data);
56256c2a
RS
2935
2936 /* If REUSE is a list, store as many value elements as will fit
2937 into the elements of REUSE. */
2938 for (i = 0, tail = reuse; CONSP (tail);
c1d497be 2939 i++, tail = XCDR (tail))
56256c2a 2940 {
41c01205 2941 if (i < len)
f3fbd155 2942 XSETCAR (tail, data[i]);
56256c2a 2943 else
f3fbd155 2944 XSETCAR (tail, Qnil);
56256c2a
RS
2945 prev = tail;
2946 }
2947
2948 /* If we couldn't fit all value elements into REUSE,
2949 cons up the rest of them and add them to the end of REUSE. */
41c01205
DK
2950 if (i < len)
2951 XSETCDR (prev, Flist (len - i, data + i));
56256c2a
RS
2952
2953 return reuse;
ca1d1d23
JB
2954}
2955
b51d6c92
SM
2956/* We used to have an internal use variant of `reseat' described as:
2957
2958 If RESEAT is `evaporate', put the markers back on the free list
2959 immediately. No other references to the markers must exist in this
2960 case, so it is used only internally on the unwind stack and
2961 save-match-data from Lisp.
2962
2963 But it was ill-conceived: those supposedly-internal markers get exposed via
2964 the undo-list, so freeing them here is unsafe. */
ca1d1d23 2965
abd0071c 2966DEFUN ("set-match-data", Fset_match_data, Sset_match_data, 1, 2, 0,
8c1a1077 2967 doc: /* Set internal data on last search match from elements of LIST.
abd0071c
KS
2968LIST should have been created by calling `match-data' previously.
2969
51f10faa 2970If optional arg RESEAT is non-nil, make markers on LIST point nowhere. */)
5842a27b 2971 (register Lisp_Object list, Lisp_Object reseat)
ca1d1d23
JB
2972{
2973 register int i;
2974 register Lisp_Object marker;
2975
7074fde6
FP
2976 if (running_asynch_code)
2977 save_search_regs ();
2978
29100cea 2979 CHECK_LIST (list);
ca1d1d23 2980
41c01205
DK
2981 /* Unless we find a marker with a buffer or an explicit buffer
2982 in LIST, assume that this match data came from a string. */
daa37602
JB
2983 last_thing_searched = Qt;
2984
4746118a
JB
2985 /* Allocate registers if they don't already exist. */
2986 {
d084e942 2987 int length = XFASTINT (Flength (list)) / 2;
4746118a
JB
2988
2989 if (length > search_regs.num_regs)
2990 {
1113d9db
JB
2991 if (search_regs.num_regs == 0)
2992 {
2993 search_regs.start
2994 = (regoff_t *) xmalloc (length * sizeof (regoff_t));
2995 search_regs.end
2996 = (regoff_t *) xmalloc (length * sizeof (regoff_t));
2997 }
4746118a 2998 else
1113d9db
JB
2999 {
3000 search_regs.start
3001 = (regoff_t *) xrealloc (search_regs.start,
3002 length * sizeof (regoff_t));
3003 search_regs.end
3004 = (regoff_t *) xrealloc (search_regs.end,
3005 length * sizeof (regoff_t));
3006 }
4746118a 3007
e62371e9
KH
3008 for (i = search_regs.num_regs; i < length; i++)
3009 search_regs.start[i] = -1;
3010
487282dc 3011 search_regs.num_regs = length;
4746118a 3012 }
ca1d1d23 3013
abd0071c 3014 for (i = 0; CONSP (list); i++)
41c01205 3015 {
abd0071c 3016 marker = XCAR (list);
bd2cbd56 3017 if (BUFFERP (marker))
c3762cbd 3018 {
bd2cbd56 3019 last_thing_searched = marker;
c3762cbd
DK
3020 break;
3021 }
3022 if (i >= length)
3023 break;
41c01205
DK
3024 if (NILP (marker))
3025 {
3026 search_regs.start[i] = -1;
abd0071c 3027 list = XCDR (list);
41c01205
DK
3028 }
3029 else
3030 {
e7deaab0 3031 EMACS_INT from;
abd0071c 3032 Lisp_Object m;
e2811828 3033
abd0071c 3034 m = marker;
41c01205
DK
3035 if (MARKERP (marker))
3036 {
3037 if (XMARKER (marker)->buffer == 0)
3038 XSETFASTINT (marker, 0);
3039 else
3040 XSETBUFFER (last_thing_searched, XMARKER (marker)->buffer);
3041 }
e2811828 3042
41c01205
DK
3043 CHECK_NUMBER_COERCE_MARKER (marker);
3044 from = XINT (marker);
e2811828 3045
abd0071c
KS
3046 if (!NILP (reseat) && MARKERP (m))
3047 {
b51d6c92 3048 unchain_marker (XMARKER (m));
9ad54a7e 3049 XSETCAR (list, Qnil);
abd0071c
KS
3050 }
3051
3052 if ((list = XCDR (list), !CONSP (list)))
3053 break;
3054
3055 m = marker = XCAR (list);
3056
41c01205
DK
3057 if (MARKERP (marker) && XMARKER (marker)->buffer == 0)
3058 XSETFASTINT (marker, 0);
e2811828 3059
41c01205
DK
3060 CHECK_NUMBER_COERCE_MARKER (marker);
3061 search_regs.start[i] = from;
3062 search_regs.end[i] = XINT (marker);
abd0071c
KS
3063
3064 if (!NILP (reseat) && MARKERP (m))
3065 {
b51d6c92 3066 unchain_marker (XMARKER (m));
9ad54a7e 3067 XSETCAR (list, Qnil);
abd0071c 3068 }
41c01205 3069 }
abd0071c 3070 list = XCDR (list);
41c01205 3071 }
ca1d1d23 3072
41c01205
DK
3073 for (; i < search_regs.num_regs; i++)
3074 search_regs.start[i] = -1;
3075 }
ca1d1d23 3076
177c0ea7 3077 return Qnil;
ca1d1d23
JB
3078}
3079
7074fde6
FP
3080/* If non-zero the match data have been saved in saved_search_regs
3081 during the execution of a sentinel or filter. */
75ebf74b 3082static int search_regs_saved;
7074fde6 3083static struct re_registers saved_search_regs;
41c01205 3084static Lisp_Object saved_last_thing_searched;
7074fde6
FP
3085
3086/* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data
3087 if asynchronous code (filter or sentinel) is running. */
3088static void
971de7fb 3089save_search_regs (void)
7074fde6
FP
3090{
3091 if (!search_regs_saved)
3092 {
3093 saved_search_regs.num_regs = search_regs.num_regs;
3094 saved_search_regs.start = search_regs.start;
3095 saved_search_regs.end = search_regs.end;
41c01205
DK
3096 saved_last_thing_searched = last_thing_searched;
3097 last_thing_searched = Qnil;
7074fde6 3098 search_regs.num_regs = 0;
2d4a771a
RS
3099 search_regs.start = 0;
3100 search_regs.end = 0;
7074fde6
FP
3101
3102 search_regs_saved = 1;
3103 }
3104}
3105
3106/* Called upon exit from filters and sentinels. */
3107void
971de7fb 3108restore_search_regs (void)
7074fde6
FP
3109{
3110 if (search_regs_saved)
3111 {
3112 if (search_regs.num_regs > 0)
3113 {
3114 xfree (search_regs.start);
3115 xfree (search_regs.end);
3116 }
3117 search_regs.num_regs = saved_search_regs.num_regs;
3118 search_regs.start = saved_search_regs.start;
3119 search_regs.end = saved_search_regs.end;
41c01205
DK
3120 last_thing_searched = saved_last_thing_searched;
3121 saved_last_thing_searched = Qnil;
7074fde6
FP
3122 search_regs_saved = 0;
3123 }
3124}
3125
abd0071c 3126static Lisp_Object
971de7fb 3127unwind_set_match_data (Lisp_Object list)
abd0071c 3128{
b51d6c92
SM
3129 /* It is NOT ALWAYS safe to free (evaporate) the markers immediately. */
3130 return Fset_match_data (list, Qt);
abd0071c
KS
3131}
3132
3133/* Called to unwind protect the match data. */
3134void
971de7fb 3135record_unwind_save_match_data (void)
abd0071c
KS
3136{
3137 record_unwind_protect (unwind_set_match_data,
3138 Fmatch_data (Qnil, Qnil, Qnil));
3139}
3140
ca1d1d23
JB
3141/* Quote a string to inactivate reg-expr chars */
3142
3143DEFUN ("regexp-quote", Fregexp_quote, Sregexp_quote, 1, 1, 0,
8c1a1077 3144 doc: /* Return a regexp string which matches exactly STRING and nothing else. */)
5842a27b 3145 (Lisp_Object string)
ca1d1d23
JB
3146{
3147 register unsigned char *in, *out, *end;
3148 register unsigned char *temp;
0c8533c6 3149 int backslashes_added = 0;
ca1d1d23 3150
b7826503 3151 CHECK_STRING (string);
ca1d1d23 3152
d5db4077 3153 temp = (unsigned char *) alloca (SBYTES (string) * 2);
ca1d1d23
JB
3154
3155 /* Now copy the data into the new string, inserting escapes. */
3156
d5db4077
KR
3157 in = SDATA (string);
3158 end = in + SBYTES (string);
177c0ea7 3159 out = temp;
ca1d1d23
JB
3160
3161 for (; in != end; in++)
3162 {
66bc6082 3163 if (*in == '['
ca1d1d23
JB
3164 || *in == '*' || *in == '.' || *in == '\\'
3165 || *in == '?' || *in == '+'
3166 || *in == '^' || *in == '$')
0c8533c6 3167 *out++ = '\\', backslashes_added++;
ca1d1d23
JB
3168 *out++ = *in;
3169 }
3170
3f8100f1 3171 return make_specified_string (temp,
d5db4077 3172 SCHARS (string) + backslashes_added,
3f8100f1
RS
3173 out - temp,
3174 STRING_MULTIBYTE (string));
ca1d1d23 3175}
177c0ea7 3176\f
dfcf069d 3177void
971de7fb 3178syms_of_search (void)
ca1d1d23
JB
3179{
3180 register int i;
3181
487282dc
KH
3182 for (i = 0; i < REGEXP_CACHE_SIZE; ++i)
3183 {
3184 searchbufs[i].buf.allocated = 100;
b23c0a83 3185 searchbufs[i].buf.buffer = (unsigned char *) xmalloc (100);
487282dc
KH
3186 searchbufs[i].buf.fastmap = searchbufs[i].fastmap;
3187 searchbufs[i].regexp = Qnil;
ecdb561e 3188 searchbufs[i].whitespace_regexp = Qnil;
b69e3c18 3189 searchbufs[i].syntax_table = Qnil;
487282dc 3190 staticpro (&searchbufs[i].regexp);
aa77b5ce 3191 staticpro (&searchbufs[i].whitespace_regexp);
b69e3c18 3192 staticpro (&searchbufs[i].syntax_table);
487282dc
KH
3193 searchbufs[i].next = (i == REGEXP_CACHE_SIZE-1 ? 0 : &searchbufs[i+1]);
3194 }
3195 searchbuf_head = &searchbufs[0];
ca1d1d23 3196
d67b4f80 3197 Qsearch_failed = intern_c_string ("search-failed");
ca1d1d23 3198 staticpro (&Qsearch_failed);
d67b4f80 3199 Qinvalid_regexp = intern_c_string ("invalid-regexp");
ca1d1d23
JB
3200 staticpro (&Qinvalid_regexp);
3201
3202 Fput (Qsearch_failed, Qerror_conditions,
d67b4f80 3203 pure_cons (Qsearch_failed, pure_cons (Qerror, Qnil)));
ca1d1d23 3204 Fput (Qsearch_failed, Qerror_message,
d67b4f80 3205 make_pure_c_string ("Search failed"));
ca1d1d23
JB
3206
3207 Fput (Qinvalid_regexp, Qerror_conditions,
d67b4f80 3208 pure_cons (Qinvalid_regexp, pure_cons (Qerror, Qnil)));
ca1d1d23 3209 Fput (Qinvalid_regexp, Qerror_message,
d67b4f80 3210 make_pure_c_string ("Invalid regexp"));
ca1d1d23 3211
daa37602
JB
3212 last_thing_searched = Qnil;
3213 staticpro (&last_thing_searched);
3214
0f6af254
DK
3215 saved_last_thing_searched = Qnil;
3216 staticpro (&saved_last_thing_searched);
3217
41a33295 3218 DEFVAR_LISP ("search-spaces-regexp", &Vsearch_spaces_regexp,
e2811828 3219 doc: /* Regexp to substitute for bunches of spaces in regexp search.
f31a9a68
RS
3220Some commands use this for user-specified regexps.
3221Spaces that occur inside character classes or repetition operators
3222or other such regexp constructs are not replaced with this.
3223A value of nil (which is the normal value) means treat spaces literally. */);
41a33295 3224 Vsearch_spaces_regexp = Qnil;
f31a9a68 3225
ef887810
RS
3226 DEFVAR_LISP ("inhibit-changing-match-data", &Vinhibit_changing_match_data,
3227 doc: /* Internal use only.
39d0bf74
RS
3228If non-nil, the primitive searching and matching functions
3229such as `looking-at', `string-match', `re-search-forward', etc.,
3230do not set the match data. The proper way to use this variable
3231is to bind it with `let' around a small expression. */);
ef887810
RS
3232 Vinhibit_changing_match_data = Qnil;
3233
ca1d1d23 3234 defsubr (&Slooking_at);
b819a390
RS
3235 defsubr (&Sposix_looking_at);
3236 defsubr (&Sstring_match);
3237 defsubr (&Sposix_string_match);
ca1d1d23
JB
3238 defsubr (&Ssearch_forward);
3239 defsubr (&Ssearch_backward);
3240 defsubr (&Sword_search_forward);
3241 defsubr (&Sword_search_backward);
c6e0e1cc
CY
3242 defsubr (&Sword_search_forward_lax);
3243 defsubr (&Sword_search_backward_lax);
ca1d1d23
JB
3244 defsubr (&Sre_search_forward);
3245 defsubr (&Sre_search_backward);
b819a390
RS
3246 defsubr (&Sposix_search_forward);
3247 defsubr (&Sposix_search_backward);
ca1d1d23
JB
3248 defsubr (&Sreplace_match);
3249 defsubr (&Smatch_beginning);
3250 defsubr (&Smatch_end);
3251 defsubr (&Smatch_data);
3f1c005b 3252 defsubr (&Sset_match_data);
ca1d1d23
JB
3253 defsubr (&Sregexp_quote);
3254}
76fc1ea2
KH
3255
3256/* arch-tag: a6059d79-0552-4f14-a2cb-d379a4e3c78f
3257 (do not change this comment) */