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