1 /* String search routines for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1997, 1998, 1999, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
28 #include "character.h"
30 #include "region-cache.h"
32 #include "blockinput.h"
33 #include "intervals.h"
35 #include <sys/types.h>
38 #define REGEXP_CACHE_SIZE 20
40 /* If the regexp is non-nil, then the buffer contains the compiled form
41 of that regexp, suitable for searching. */
44 struct regexp_cache
*next
;
45 Lisp_Object regexp
, whitespace_regexp
;
46 /* Syntax table for which the regexp applies. We need this because
47 of character classes. If this is t, then the compiled pattern is valid
48 for any syntax-table. */
49 Lisp_Object syntax_table
;
50 struct re_pattern_buffer buf
;
52 /* Nonzero means regexp was compiled to do full POSIX backtracking. */
56 /* The instances of that struct. */
57 struct regexp_cache searchbufs
[REGEXP_CACHE_SIZE
];
59 /* The head of the linked list; points to the most recently used buffer. */
60 struct regexp_cache
*searchbuf_head
;
63 /* Every call to re_match, etc., must pass &search_regs as the regs
64 argument unless you can show it is unnecessary (i.e., if re_match
65 is certainly going to be called again before region-around-match
68 Since the registers are now dynamically allocated, we need to make
69 sure not to refer to the Nth register before checking that it has
70 been allocated by checking search_regs.num_regs.
72 The regex code keeps track of whether it has allocated the search
73 buffer using bits in the re_pattern_buffer. This means that whenever
74 you compile a new pattern, it completely forgets whether it has
75 allocated any registers, and will allocate new registers the next
76 time you call a searching or matching function. Therefore, we need
77 to call re_set_registers after compiling a new pattern or after
78 setting the match registers, so that the regex functions will be
79 able to free or re-allocate it properly. */
80 static struct re_registers search_regs
;
82 /* The buffer in which the last search was performed, or
83 Qt if the last search was done in a string;
84 Qnil if no searching has been done yet. */
85 static Lisp_Object last_thing_searched
;
87 /* error condition signaled when regexp compile_pattern fails */
89 Lisp_Object Qinvalid_regexp
;
91 /* Error condition used for failing searches */
92 Lisp_Object Qsearch_failed
;
94 Lisp_Object Vsearch_spaces_regexp
;
96 /* If non-nil, the match data will not be changed during call to
97 searching or matching functions. This variable is for internal use
99 Lisp_Object Vinhibit_changing_match_data
;
101 static void set_search_regs (EMACS_INT
, EMACS_INT
);
102 static void save_search_regs (void);
103 static EMACS_INT
simple_search (EMACS_INT
, unsigned char *, EMACS_INT
,
104 EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
,
105 EMACS_INT
, EMACS_INT
);
106 static EMACS_INT
boyer_moore (EMACS_INT
, unsigned char *, EMACS_INT
, EMACS_INT
,
107 Lisp_Object
, Lisp_Object
,
108 EMACS_INT
, EMACS_INT
,
109 EMACS_INT
, EMACS_INT
, int);
110 static EMACS_INT
search_buffer (Lisp_Object
, EMACS_INT
, EMACS_INT
,
111 EMACS_INT
, EMACS_INT
, EMACS_INT
, int,
112 Lisp_Object
, Lisp_Object
, int);
113 static void matcher_overflow (void) NO_RETURN
;
116 matcher_overflow (void)
118 error ("Stack overflow in regexp matcher");
121 /* Compile a regexp and signal a Lisp error if anything goes wrong.
122 PATTERN is the pattern to compile.
123 CP is the place to put the result.
124 TRANSLATE is a translation table for ignoring case, or nil for none.
125 REGP is the structure that says where to store the "register"
126 values that will result from matching this pattern.
127 If it is 0, we should compile the pattern not to record any
128 subexpression bounds.
129 POSIX is nonzero if we want full backtracking (POSIX style)
130 for this pattern. 0 means backtrack only enough to get a valid match.
132 The behavior also depends on Vsearch_spaces_regexp. */
135 compile_pattern_1 (struct regexp_cache
*cp
, Lisp_Object pattern
, Lisp_Object translate
, struct re_registers
*regp
, int posix
)
141 cp
->buf
.translate
= (! NILP (translate
) ? translate
: make_number (0));
143 cp
->buf
.multibyte
= STRING_MULTIBYTE (pattern
);
144 cp
->buf
.charset_unibyte
= charset_unibyte
;
145 if (STRINGP (Vsearch_spaces_regexp
))
146 cp
->whitespace_regexp
= Vsearch_spaces_regexp
;
148 cp
->whitespace_regexp
= Qnil
;
150 /* rms: I think BLOCK_INPUT is not needed here any more,
151 because regex.c defines malloc to call xmalloc.
152 Using BLOCK_INPUT here means the debugger won't run if an error occurs.
153 So let's turn it off. */
155 old
= re_set_syntax (RE_SYNTAX_EMACS
156 | (posix
? 0 : RE_NO_POSIX_BACKTRACKING
));
158 if (STRINGP (Vsearch_spaces_regexp
))
159 re_set_whitespace_regexp (SDATA (Vsearch_spaces_regexp
));
161 re_set_whitespace_regexp (NULL
);
163 val
= (char *) re_compile_pattern ((char *) SDATA (pattern
),
164 SBYTES (pattern
), &cp
->buf
);
166 /* If the compiled pattern hard codes some of the contents of the
167 syntax-table, it can only be reused with *this* syntax table. */
168 cp
->syntax_table
= cp
->buf
.used_syntax
? current_buffer
->syntax_table
: Qt
;
170 re_set_whitespace_regexp (NULL
);
175 xsignal1 (Qinvalid_regexp
, build_string (val
));
177 cp
->regexp
= Fcopy_sequence (pattern
);
180 /* Shrink each compiled regexp buffer in the cache
181 to the size actually used right now.
182 This is called from garbage collection. */
185 shrink_regexp_cache (void)
187 struct regexp_cache
*cp
;
189 for (cp
= searchbuf_head
; cp
!= 0; cp
= cp
->next
)
191 cp
->buf
.allocated
= cp
->buf
.used
;
193 = (unsigned char *) xrealloc (cp
->buf
.buffer
, cp
->buf
.used
);
197 /* Clear the regexp cache w.r.t. a particular syntax table,
198 because it was changed.
199 There is no danger of memory leak here because re_compile_pattern
200 automagically manages the memory in each re_pattern_buffer struct,
201 based on its `allocated' and `buffer' values. */
203 clear_regexp_cache (void)
207 for (i
= 0; i
< REGEXP_CACHE_SIZE
; ++i
)
208 /* It's tempting to compare with the syntax-table we've actually changed,
209 but it's not sufficient because char-table inheritance means that
210 modifying one syntax-table can change others at the same time. */
211 if (!EQ (searchbufs
[i
].syntax_table
, Qt
))
212 searchbufs
[i
].regexp
= Qnil
;
215 /* Compile a regexp if necessary, but first check to see if there's one in
217 PATTERN is the pattern to compile.
218 TRANSLATE is a translation table for ignoring case, or nil for none.
219 REGP is the structure that says where to store the "register"
220 values that will result from matching this pattern.
221 If it is 0, we should compile the pattern not to record any
222 subexpression bounds.
223 POSIX is nonzero if we want full backtracking (POSIX style)
224 for this pattern. 0 means backtrack only enough to get a valid match. */
226 struct re_pattern_buffer
*
227 compile_pattern (Lisp_Object pattern
, struct re_registers
*regp
, Lisp_Object translate
, int posix
, int multibyte
)
229 struct regexp_cache
*cp
, **cpp
;
231 for (cpp
= &searchbuf_head
; ; cpp
= &cp
->next
)
234 /* Entries are initialized to nil, and may be set to nil by
235 compile_pattern_1 if the pattern isn't valid. Don't apply
236 string accessors in those cases. However, compile_pattern_1
237 is only applied to the cache entry we pick here to reuse. So
238 nil should never appear before a non-nil entry. */
239 if (NILP (cp
->regexp
))
241 if (SCHARS (cp
->regexp
) == SCHARS (pattern
)
242 && STRING_MULTIBYTE (cp
->regexp
) == STRING_MULTIBYTE (pattern
)
243 && !NILP (Fstring_equal (cp
->regexp
, pattern
))
244 && EQ (cp
->buf
.translate
, (! NILP (translate
) ? translate
: make_number (0)))
245 && cp
->posix
== posix
246 && (EQ (cp
->syntax_table
, Qt
)
247 || EQ (cp
->syntax_table
, current_buffer
->syntax_table
))
248 && !NILP (Fequal (cp
->whitespace_regexp
, Vsearch_spaces_regexp
))
249 && cp
->buf
.charset_unibyte
== charset_unibyte
)
252 /* If we're at the end of the cache, compile into the nil cell
253 we found, or the last (least recently used) cell with a
258 compile_pattern_1 (cp
, pattern
, translate
, regp
, posix
);
263 /* When we get here, cp (aka *cpp) contains the compiled pattern,
264 either because we found it in the cache or because we just compiled it.
265 Move it to the front of the queue to mark it as most recently used. */
267 cp
->next
= searchbuf_head
;
270 /* Advise the searching functions about the space we have allocated
271 for register data. */
273 re_set_registers (&cp
->buf
, regp
, regp
->num_regs
, regp
->start
, regp
->end
);
275 /* The compiled pattern can be used both for multibyte and unibyte
276 target. But, we have to tell which the pattern is used for. */
277 cp
->buf
.target_multibyte
= multibyte
;
284 looking_at_1 (Lisp_Object string
, int posix
)
287 unsigned char *p1
, *p2
;
289 register EMACS_INT i
;
290 struct re_pattern_buffer
*bufp
;
292 if (running_asynch_code
)
295 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
296 XCHAR_TABLE (current_buffer
->case_canon_table
)->extras
[2]
297 = current_buffer
->case_eqv_table
;
299 CHECK_STRING (string
);
300 bufp
= compile_pattern (string
,
301 (NILP (Vinhibit_changing_match_data
)
302 ? &search_regs
: NULL
),
303 (!NILP (current_buffer
->case_fold_search
)
304 ? current_buffer
->case_canon_table
: Qnil
),
306 !NILP (current_buffer
->enable_multibyte_characters
));
309 QUIT
; /* Do a pending quit right away, to avoid paradoxical behavior */
311 /* Get pointers and sizes of the two strings
312 that make up the visible portion of the buffer. */
315 s1
= GPT_BYTE
- BEGV_BYTE
;
317 s2
= ZV_BYTE
- GPT_BYTE
;
321 s2
= ZV_BYTE
- BEGV_BYTE
;
326 s1
= ZV_BYTE
- BEGV_BYTE
;
330 re_match_object
= Qnil
;
332 i
= re_match_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
334 (NILP (Vinhibit_changing_match_data
)
335 ? &search_regs
: NULL
),
336 ZV_BYTE
- BEGV_BYTE
);
342 val
= (0 <= i
? Qt
: Qnil
);
343 if (NILP (Vinhibit_changing_match_data
) && i
>= 0)
344 for (i
= 0; i
< search_regs
.num_regs
; i
++)
345 if (search_regs
.start
[i
] >= 0)
348 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
350 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
353 /* Set last_thing_searched only when match data is changed. */
354 if (NILP (Vinhibit_changing_match_data
))
355 XSETBUFFER (last_thing_searched
, current_buffer
);
360 DEFUN ("looking-at", Flooking_at
, Slooking_at
, 1, 1, 0,
361 doc
: /* Return t if text after point matches regular expression REGEXP.
362 This function modifies the match data that `match-beginning',
363 `match-end' and `match-data' access; save and restore the match
364 data if you want to preserve them. */)
367 return looking_at_1 (regexp
, 0);
370 DEFUN ("posix-looking-at", Fposix_looking_at
, Sposix_looking_at
, 1, 1, 0,
371 doc
: /* Return t if text after point matches regular expression REGEXP.
372 Find the longest match, in accord with Posix regular expression rules.
373 This function modifies the match data that `match-beginning',
374 `match-end' and `match-data' access; save and restore the match
375 data if you want to preserve them. */)
378 return looking_at_1 (regexp
, 1);
382 string_match_1 (Lisp_Object regexp
, Lisp_Object string
, Lisp_Object start
, int posix
)
385 struct re_pattern_buffer
*bufp
;
386 EMACS_INT pos
, pos_byte
;
389 if (running_asynch_code
)
392 CHECK_STRING (regexp
);
393 CHECK_STRING (string
);
396 pos
= 0, pos_byte
= 0;
399 EMACS_INT len
= SCHARS (string
);
401 CHECK_NUMBER (start
);
403 if (pos
< 0 && -pos
<= len
)
405 else if (0 > pos
|| pos
> len
)
406 args_out_of_range (string
, start
);
407 pos_byte
= string_char_to_byte (string
, pos
);
410 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
411 XCHAR_TABLE (current_buffer
->case_canon_table
)->extras
[2]
412 = current_buffer
->case_eqv_table
;
414 bufp
= compile_pattern (regexp
,
415 (NILP (Vinhibit_changing_match_data
)
416 ? &search_regs
: NULL
),
417 (!NILP (current_buffer
->case_fold_search
)
418 ? current_buffer
->case_canon_table
: Qnil
),
420 STRING_MULTIBYTE (string
));
422 re_match_object
= string
;
424 val
= re_search (bufp
, (char *) SDATA (string
),
425 SBYTES (string
), pos_byte
,
426 SBYTES (string
) - pos_byte
,
427 (NILP (Vinhibit_changing_match_data
)
428 ? &search_regs
: NULL
));
431 /* Set last_thing_searched only when match data is changed. */
432 if (NILP (Vinhibit_changing_match_data
))
433 last_thing_searched
= Qt
;
437 if (val
< 0) return Qnil
;
439 if (NILP (Vinhibit_changing_match_data
))
440 for (i
= 0; i
< search_regs
.num_regs
; i
++)
441 if (search_regs
.start
[i
] >= 0)
444 = string_byte_to_char (string
, search_regs
.start
[i
]);
446 = string_byte_to_char (string
, search_regs
.end
[i
]);
449 return make_number (string_byte_to_char (string
, val
));
452 DEFUN ("string-match", Fstring_match
, Sstring_match
, 2, 3, 0,
453 doc
: /* Return index of start of first match for REGEXP in STRING, or nil.
454 Matching ignores case if `case-fold-search' is non-nil.
455 If third arg START is non-nil, start search at that index in STRING.
456 For index of first char beyond the match, do (match-end 0).
457 `match-end' and `match-beginning' also give indices of substrings
458 matched by parenthesis constructs in the pattern.
460 You can use the function `match-string' to extract the substrings
461 matched by the parenthesis constructions in REGEXP. */)
462 (Lisp_Object regexp
, Lisp_Object string
, Lisp_Object start
)
464 return string_match_1 (regexp
, string
, start
, 0);
467 DEFUN ("posix-string-match", Fposix_string_match
, Sposix_string_match
, 2, 3, 0,
468 doc
: /* Return index of start of first match for REGEXP in STRING, or nil.
469 Find the longest match, in accord with Posix regular expression rules.
470 Case is ignored if `case-fold-search' is non-nil in the current buffer.
471 If third arg START is non-nil, start search at that index in STRING.
472 For index of first char beyond the match, do (match-end 0).
473 `match-end' and `match-beginning' also give indices of substrings
474 matched by parenthesis constructs in the pattern. */)
475 (Lisp_Object regexp
, Lisp_Object string
, Lisp_Object start
)
477 return string_match_1 (regexp
, string
, start
, 1);
480 /* Match REGEXP against STRING, searching all of STRING,
481 and return the index of the match, or negative on failure.
482 This does not clobber the match data. */
485 fast_string_match (Lisp_Object regexp
, Lisp_Object string
)
488 struct re_pattern_buffer
*bufp
;
490 bufp
= compile_pattern (regexp
, 0, Qnil
,
491 0, STRING_MULTIBYTE (string
));
493 re_match_object
= string
;
495 val
= re_search (bufp
, (char *) SDATA (string
),
502 /* Match REGEXP against STRING, searching all of STRING ignoring case,
503 and return the index of the match, or negative on failure.
504 This does not clobber the match data.
505 We assume that STRING contains single-byte characters. */
508 fast_c_string_match_ignore_case (Lisp_Object regexp
, const char *string
)
511 struct re_pattern_buffer
*bufp
;
512 size_t len
= strlen (string
);
514 regexp
= string_make_unibyte (regexp
);
515 re_match_object
= Qt
;
516 bufp
= compile_pattern (regexp
, 0,
517 Vascii_canon_table
, 0,
520 val
= re_search (bufp
, string
, len
, 0, len
, 0);
525 /* Like fast_string_match but ignore case. */
528 fast_string_match_ignore_case (Lisp_Object regexp
, Lisp_Object string
)
531 struct re_pattern_buffer
*bufp
;
533 bufp
= compile_pattern (regexp
, 0, Vascii_canon_table
,
534 0, STRING_MULTIBYTE (string
));
536 re_match_object
= string
;
538 val
= re_search (bufp
, (char *) SDATA (string
),
545 /* Match REGEXP against the characters after POS to LIMIT, and return
546 the number of matched characters. If STRING is non-nil, match
547 against the characters in it. In that case, POS and LIMIT are
548 indices into the string. This function doesn't modify the match
552 fast_looking_at (Lisp_Object regexp
, EMACS_INT pos
, EMACS_INT pos_byte
, EMACS_INT limit
, EMACS_INT limit_byte
, Lisp_Object string
)
555 struct re_pattern_buffer
*buf
;
556 unsigned char *p1
, *p2
;
560 if (STRINGP (string
))
563 pos_byte
= string_char_to_byte (string
, pos
);
565 limit_byte
= string_char_to_byte (string
, limit
);
569 s2
= SBYTES (string
);
570 re_match_object
= string
;
571 multibyte
= STRING_MULTIBYTE (string
);
576 pos_byte
= CHAR_TO_BYTE (pos
);
578 limit_byte
= CHAR_TO_BYTE (limit
);
579 pos_byte
-= BEGV_BYTE
;
580 limit_byte
-= BEGV_BYTE
;
582 s1
= GPT_BYTE
- BEGV_BYTE
;
584 s2
= ZV_BYTE
- GPT_BYTE
;
588 s2
= ZV_BYTE
- BEGV_BYTE
;
593 s1
= ZV_BYTE
- BEGV_BYTE
;
596 re_match_object
= Qnil
;
597 multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
600 buf
= compile_pattern (regexp
, 0, Qnil
, 0, multibyte
);
602 len
= re_match_2 (buf
, (char *) p1
, s1
, (char *) p2
, s2
,
603 pos_byte
, NULL
, limit_byte
);
610 /* The newline cache: remembering which sections of text have no newlines. */
612 /* If the user has requested newline caching, make sure it's on.
613 Otherwise, make sure it's off.
614 This is our cheezy way of associating an action with the change of
615 state of a buffer-local variable. */
617 newline_cache_on_off (struct buffer
*buf
)
619 if (NILP (buf
->cache_long_line_scans
))
621 /* It should be off. */
622 if (buf
->newline_cache
)
624 free_region_cache (buf
->newline_cache
);
625 buf
->newline_cache
= 0;
630 /* It should be on. */
631 if (buf
->newline_cache
== 0)
632 buf
->newline_cache
= new_region_cache ();
637 /* Search for COUNT instances of the character TARGET between START and END.
639 If COUNT is positive, search forwards; END must be >= START.
640 If COUNT is negative, search backwards for the -COUNTth instance;
641 END must be <= START.
642 If COUNT is zero, do anything you please; run rogue, for all I care.
644 If END is zero, use BEGV or ZV instead, as appropriate for the
645 direction indicated by COUNT.
647 If we find COUNT instances, set *SHORTAGE to zero, and return the
648 position past the COUNTth match. Note that for reverse motion
649 this is not the same as the usual convention for Emacs motion commands.
651 If we don't find COUNT instances before reaching END, set *SHORTAGE
652 to the number of TARGETs left unfound, and return END.
654 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
655 except when inside redisplay. */
658 scan_buffer (register int target
, EMACS_INT start
, EMACS_INT end
,
659 EMACS_INT count
, int *shortage
, int allow_quit
)
661 struct region_cache
*newline_cache
;
672 if (! end
) end
= BEGV
;
675 newline_cache_on_off (current_buffer
);
676 newline_cache
= current_buffer
->newline_cache
;
681 immediate_quit
= allow_quit
;
686 /* Our innermost scanning loop is very simple; it doesn't know
687 about gaps, buffer ends, or the newline cache. ceiling is
688 the position of the last character before the next such
689 obstacle --- the last character the dumb search loop should
691 EMACS_INT ceiling_byte
= CHAR_TO_BYTE (end
) - 1;
692 EMACS_INT start_byte
= CHAR_TO_BYTE (start
);
695 /* If we're looking for a newline, consult the newline cache
696 to see where we can avoid some scanning. */
697 if (target
== '\n' && newline_cache
)
699 EMACS_INT next_change
;
701 while (region_cache_forward
702 (current_buffer
, newline_cache
, start_byte
, &next_change
))
703 start_byte
= next_change
;
704 immediate_quit
= allow_quit
;
706 /* START should never be after END. */
707 if (start_byte
> ceiling_byte
)
708 start_byte
= ceiling_byte
;
710 /* Now the text after start is an unknown region, and
711 next_change is the position of the next known region. */
712 ceiling_byte
= min (next_change
- 1, ceiling_byte
);
715 /* The dumb loop can only scan text stored in contiguous
716 bytes. BUFFER_CEILING_OF returns the last character
717 position that is contiguous, so the ceiling is the
718 position after that. */
719 tem
= BUFFER_CEILING_OF (start_byte
);
720 ceiling_byte
= min (tem
, ceiling_byte
);
723 /* The termination address of the dumb loop. */
724 register unsigned char *ceiling_addr
725 = BYTE_POS_ADDR (ceiling_byte
) + 1;
726 register unsigned char *cursor
727 = BYTE_POS_ADDR (start_byte
);
728 unsigned char *base
= cursor
;
730 while (cursor
< ceiling_addr
)
732 unsigned char *scan_start
= cursor
;
735 while (*cursor
!= target
&& ++cursor
< ceiling_addr
)
738 /* If we're looking for newlines, cache the fact that
739 the region from start to cursor is free of them. */
740 if (target
== '\n' && newline_cache
)
741 know_region_cache (current_buffer
, newline_cache
,
742 start_byte
+ scan_start
- base
,
743 start_byte
+ cursor
- base
);
745 /* Did we find the target character? */
746 if (cursor
< ceiling_addr
)
751 return BYTE_TO_CHAR (start_byte
+ cursor
- base
+ 1);
757 start
= BYTE_TO_CHAR (start_byte
+ cursor
- base
);
763 /* The last character to check before the next obstacle. */
764 EMACS_INT ceiling_byte
= CHAR_TO_BYTE (end
);
765 EMACS_INT start_byte
= CHAR_TO_BYTE (start
);
768 /* Consult the newline cache, if appropriate. */
769 if (target
== '\n' && newline_cache
)
771 EMACS_INT next_change
;
773 while (region_cache_backward
774 (current_buffer
, newline_cache
, start_byte
, &next_change
))
775 start_byte
= next_change
;
776 immediate_quit
= allow_quit
;
778 /* Start should never be at or before end. */
779 if (start_byte
<= ceiling_byte
)
780 start_byte
= ceiling_byte
+ 1;
782 /* Now the text before start is an unknown region, and
783 next_change is the position of the next known region. */
784 ceiling_byte
= max (next_change
, ceiling_byte
);
787 /* Stop scanning before the gap. */
788 tem
= BUFFER_FLOOR_OF (start_byte
- 1);
789 ceiling_byte
= max (tem
, ceiling_byte
);
792 /* The termination address of the dumb loop. */
793 register unsigned char *ceiling_addr
= BYTE_POS_ADDR (ceiling_byte
);
794 register unsigned char *cursor
= BYTE_POS_ADDR (start_byte
- 1);
795 unsigned char *base
= cursor
;
797 while (cursor
>= ceiling_addr
)
799 unsigned char *scan_start
= cursor
;
801 while (*cursor
!= target
&& --cursor
>= ceiling_addr
)
804 /* If we're looking for newlines, cache the fact that
805 the region from after the cursor to start is free of them. */
806 if (target
== '\n' && newline_cache
)
807 know_region_cache (current_buffer
, newline_cache
,
808 start_byte
+ cursor
- base
,
809 start_byte
+ scan_start
- base
);
811 /* Did we find the target character? */
812 if (cursor
>= ceiling_addr
)
817 return BYTE_TO_CHAR (start_byte
+ cursor
- base
);
823 start
= BYTE_TO_CHAR (start_byte
+ cursor
- base
);
829 *shortage
= count
* direction
;
833 /* Search for COUNT instances of a line boundary, which means either a
834 newline or (if selective display enabled) a carriage return.
835 Start at START. If COUNT is negative, search backwards.
837 We report the resulting position by calling TEMP_SET_PT_BOTH.
839 If we find COUNT instances. we position after (always after,
840 even if scanning backwards) the COUNTth match, and return 0.
842 If we don't find COUNT instances before reaching the end of the
843 buffer (or the beginning, if scanning backwards), we return
844 the number of line boundaries left unfound, and position at
845 the limit we bumped up against.
847 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
848 except in special cases. */
851 scan_newline (EMACS_INT start
, EMACS_INT start_byte
,
852 EMACS_INT limit
, EMACS_INT limit_byte
,
853 register EMACS_INT count
, int allow_quit
)
855 int direction
= ((count
> 0) ? 1 : -1);
857 register unsigned char *cursor
;
861 register unsigned char *ceiling_addr
;
863 int old_immediate_quit
= immediate_quit
;
865 /* The code that follows is like scan_buffer
866 but checks for either newline or carriage return. */
871 start_byte
= CHAR_TO_BYTE (start
);
875 while (start_byte
< limit_byte
)
877 ceiling
= BUFFER_CEILING_OF (start_byte
);
878 ceiling
= min (limit_byte
- 1, ceiling
);
879 ceiling_addr
= BYTE_POS_ADDR (ceiling
) + 1;
880 base
= (cursor
= BYTE_POS_ADDR (start_byte
));
883 while (*cursor
!= '\n' && ++cursor
!= ceiling_addr
)
886 if (cursor
!= ceiling_addr
)
890 immediate_quit
= old_immediate_quit
;
891 start_byte
= start_byte
+ cursor
- base
+ 1;
892 start
= BYTE_TO_CHAR (start_byte
);
893 TEMP_SET_PT_BOTH (start
, start_byte
);
897 if (++cursor
== ceiling_addr
)
903 start_byte
+= cursor
- base
;
908 while (start_byte
> limit_byte
)
910 ceiling
= BUFFER_FLOOR_OF (start_byte
- 1);
911 ceiling
= max (limit_byte
, ceiling
);
912 ceiling_addr
= BYTE_POS_ADDR (ceiling
) - 1;
913 base
= (cursor
= BYTE_POS_ADDR (start_byte
- 1) + 1);
916 while (--cursor
!= ceiling_addr
&& *cursor
!= '\n')
919 if (cursor
!= ceiling_addr
)
923 immediate_quit
= old_immediate_quit
;
924 /* Return the position AFTER the match we found. */
925 start_byte
= start_byte
+ cursor
- base
+ 1;
926 start
= BYTE_TO_CHAR (start_byte
);
927 TEMP_SET_PT_BOTH (start
, start_byte
);
934 /* Here we add 1 to compensate for the last decrement
935 of CURSOR, which took it past the valid range. */
936 start_byte
+= cursor
- base
+ 1;
940 TEMP_SET_PT_BOTH (limit
, limit_byte
);
941 immediate_quit
= old_immediate_quit
;
943 return count
* direction
;
947 find_next_newline_no_quit (EMACS_INT from
, EMACS_INT cnt
)
949 return scan_buffer ('\n', from
, 0, cnt
, (int *) 0, 0);
952 /* Like find_next_newline, but returns position before the newline,
953 not after, and only search up to TO. This isn't just
954 find_next_newline (...)-1, because you might hit TO. */
957 find_before_next_newline (EMACS_INT from
, EMACS_INT to
, EMACS_INT cnt
)
960 EMACS_INT pos
= scan_buffer ('\n', from
, to
, cnt
, &shortage
, 1);
968 /* Subroutines of Lisp buffer search functions. */
971 search_command (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
,
972 Lisp_Object count
, int direction
, int RE
, int posix
)
975 EMACS_INT lim
, lim_byte
;
980 CHECK_NUMBER (count
);
984 CHECK_STRING (string
);
988 lim
= ZV
, lim_byte
= ZV_BYTE
;
990 lim
= BEGV
, lim_byte
= BEGV_BYTE
;
994 CHECK_NUMBER_COERCE_MARKER (bound
);
996 if (n
> 0 ? lim
< PT
: lim
> PT
)
997 error ("Invalid search bound (wrong side of point)");
999 lim
= ZV
, lim_byte
= ZV_BYTE
;
1000 else if (lim
< BEGV
)
1001 lim
= BEGV
, lim_byte
= BEGV_BYTE
;
1003 lim_byte
= CHAR_TO_BYTE (lim
);
1006 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
1007 XCHAR_TABLE (current_buffer
->case_canon_table
)->extras
[2]
1008 = current_buffer
->case_eqv_table
;
1010 np
= search_buffer (string
, PT
, PT_BYTE
, lim
, lim_byte
, n
, RE
,
1011 (!NILP (current_buffer
->case_fold_search
)
1012 ? current_buffer
->case_canon_table
1014 (!NILP (current_buffer
->case_fold_search
)
1015 ? current_buffer
->case_eqv_table
1021 xsignal1 (Qsearch_failed
, string
);
1023 if (!EQ (noerror
, Qt
))
1025 if (lim
< BEGV
|| lim
> ZV
)
1027 SET_PT_BOTH (lim
, lim_byte
);
1029 #if 0 /* This would be clean, but maybe programs depend on
1030 a value of nil here. */
1038 if (np
< BEGV
|| np
> ZV
)
1043 return make_number (np
);
1046 /* Return 1 if REGEXP it matches just one constant string. */
1049 trivial_regexp_p (Lisp_Object regexp
)
1051 EMACS_INT len
= SBYTES (regexp
);
1052 unsigned char *s
= SDATA (regexp
);
1057 case '.': case '*': case '+': case '?': case '[': case '^': case '$':
1064 case '|': case '(': case ')': case '`': case '\'': case 'b':
1065 case 'B': case '<': case '>': case 'w': case 'W': case 's':
1066 case 'S': case '=': case '{': case '}': case '_':
1067 case 'c': case 'C': /* for categoryspec and notcategoryspec */
1068 case '1': case '2': case '3': case '4': case '5':
1069 case '6': case '7': case '8': case '9':
1077 /* Search for the n'th occurrence of STRING in the current buffer,
1078 starting at position POS and stopping at position LIM,
1079 treating STRING as a literal string if RE is false or as
1080 a regular expression if RE is true.
1082 If N is positive, searching is forward and LIM must be greater than POS.
1083 If N is negative, searching is backward and LIM must be less than POS.
1085 Returns -x if x occurrences remain to be found (x > 0),
1086 or else the position at the beginning of the Nth occurrence
1087 (if searching backward) or the end (if searching forward).
1089 POSIX is nonzero if we want full backtracking (POSIX style)
1090 for this pattern. 0 means backtrack only enough to get a valid match. */
1092 #define TRANSLATE(out, trt, d) \
1098 temp = Faref (trt, make_number (d)); \
1099 if (INTEGERP (temp)) \
1100 out = XINT (temp); \
1109 /* Only used in search_buffer, to record the end position of the match
1110 when searching regexps and SEARCH_REGS should not be changed
1111 (i.e. Vinhibit_changing_match_data is non-nil). */
1112 static struct re_registers search_regs_1
;
1115 search_buffer (Lisp_Object string
, EMACS_INT pos
, EMACS_INT pos_byte
,
1116 EMACS_INT lim
, EMACS_INT lim_byte
, EMACS_INT n
,
1117 int RE
, Lisp_Object trt
, Lisp_Object inverse_trt
, int posix
)
1119 EMACS_INT len
= SCHARS (string
);
1120 EMACS_INT len_byte
= SBYTES (string
);
1123 if (running_asynch_code
)
1124 save_search_regs ();
1126 /* Searching 0 times means don't move. */
1127 /* Null string is found at starting position. */
1128 if (len
== 0 || n
== 0)
1130 set_search_regs (pos_byte
, 0);
1134 if (RE
&& !(trivial_regexp_p (string
) && NILP (Vsearch_spaces_regexp
)))
1136 unsigned char *p1
, *p2
;
1138 struct re_pattern_buffer
*bufp
;
1140 bufp
= compile_pattern (string
,
1141 (NILP (Vinhibit_changing_match_data
)
1142 ? &search_regs
: &search_regs_1
),
1144 !NILP (current_buffer
->enable_multibyte_characters
));
1146 immediate_quit
= 1; /* Quit immediately if user types ^G,
1147 because letting this function finish
1148 can take too long. */
1149 QUIT
; /* Do a pending quit right away,
1150 to avoid paradoxical behavior */
1151 /* Get pointers and sizes of the two strings
1152 that make up the visible portion of the buffer. */
1155 s1
= GPT_BYTE
- BEGV_BYTE
;
1157 s2
= ZV_BYTE
- GPT_BYTE
;
1161 s2
= ZV_BYTE
- BEGV_BYTE
;
1166 s1
= ZV_BYTE
- BEGV_BYTE
;
1169 re_match_object
= Qnil
;
1174 val
= re_search_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
1175 pos_byte
- BEGV_BYTE
, lim_byte
- pos_byte
,
1176 (NILP (Vinhibit_changing_match_data
)
1177 ? &search_regs
: &search_regs_1
),
1178 /* Don't allow match past current point */
1179 pos_byte
- BEGV_BYTE
);
1182 matcher_overflow ();
1186 if (NILP (Vinhibit_changing_match_data
))
1188 pos_byte
= search_regs
.start
[0] + BEGV_BYTE
;
1189 for (i
= 0; i
< search_regs
.num_regs
; i
++)
1190 if (search_regs
.start
[i
] >= 0)
1192 search_regs
.start
[i
]
1193 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
1195 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
1197 XSETBUFFER (last_thing_searched
, current_buffer
);
1198 /* Set pos to the new position. */
1199 pos
= search_regs
.start
[0];
1203 pos_byte
= search_regs_1
.start
[0] + BEGV_BYTE
;
1204 /* Set pos to the new position. */
1205 pos
= BYTE_TO_CHAR (search_regs_1
.start
[0] + BEGV_BYTE
);
1218 val
= re_search_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
1219 pos_byte
- BEGV_BYTE
, lim_byte
- pos_byte
,
1220 (NILP (Vinhibit_changing_match_data
)
1221 ? &search_regs
: &search_regs_1
),
1222 lim_byte
- BEGV_BYTE
);
1225 matcher_overflow ();
1229 if (NILP (Vinhibit_changing_match_data
))
1231 pos_byte
= search_regs
.end
[0] + BEGV_BYTE
;
1232 for (i
= 0; i
< search_regs
.num_regs
; i
++)
1233 if (search_regs
.start
[i
] >= 0)
1235 search_regs
.start
[i
]
1236 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
1238 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
1240 XSETBUFFER (last_thing_searched
, current_buffer
);
1241 pos
= search_regs
.end
[0];
1245 pos_byte
= search_regs_1
.end
[0] + BEGV_BYTE
;
1246 pos
= BYTE_TO_CHAR (search_regs_1
.end
[0] + BEGV_BYTE
);
1259 else /* non-RE case */
1261 unsigned char *raw_pattern
, *pat
;
1262 EMACS_INT raw_pattern_size
;
1263 EMACS_INT raw_pattern_size_byte
;
1264 unsigned char *patbuf
;
1265 int multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
1266 unsigned char *base_pat
;
1267 /* Set to positive if we find a non-ASCII char that need
1268 translation. Otherwise set to zero later. */
1270 int boyer_moore_ok
= 1;
1272 /* MULTIBYTE says whether the text to be searched is multibyte.
1273 We must convert PATTERN to match that, or we will not really
1274 find things right. */
1276 if (multibyte
== STRING_MULTIBYTE (string
))
1278 raw_pattern
= (unsigned char *) SDATA (string
);
1279 raw_pattern_size
= SCHARS (string
);
1280 raw_pattern_size_byte
= SBYTES (string
);
1284 raw_pattern_size
= SCHARS (string
);
1285 raw_pattern_size_byte
1286 = count_size_as_multibyte (SDATA (string
),
1288 raw_pattern
= (unsigned char *) alloca (raw_pattern_size_byte
+ 1);
1289 copy_text (SDATA (string
), raw_pattern
,
1290 SCHARS (string
), 0, 1);
1294 /* Converting multibyte to single-byte.
1296 ??? Perhaps this conversion should be done in a special way
1297 by subtracting nonascii-insert-offset from each non-ASCII char,
1298 so that only the multibyte chars which really correspond to
1299 the chosen single-byte character set can possibly match. */
1300 raw_pattern_size
= SCHARS (string
);
1301 raw_pattern_size_byte
= SCHARS (string
);
1302 raw_pattern
= (unsigned char *) alloca (raw_pattern_size
+ 1);
1303 copy_text (SDATA (string
), raw_pattern
,
1304 SBYTES (string
), 1, 0);
1307 /* Copy and optionally translate the pattern. */
1308 len
= raw_pattern_size
;
1309 len_byte
= raw_pattern_size_byte
;
1310 patbuf
= (unsigned char *) alloca (len
* MAX_MULTIBYTE_LENGTH
);
1312 base_pat
= raw_pattern
;
1315 /* Fill patbuf by translated characters in STRING while
1316 checking if we can use boyer-moore search. If TRT is
1317 non-nil, we can use boyer-moore search only if TRT can be
1318 represented by the byte array of 256 elements. For that,
1319 all non-ASCII case-equivalents of all case-senstive
1320 characters in STRING must belong to the same charset and
1325 unsigned char str_base
[MAX_MULTIBYTE_LENGTH
], *str
;
1326 int c
, translated
, inverse
;
1327 int in_charlen
, charlen
;
1329 /* If we got here and the RE flag is set, it's because we're
1330 dealing with a regexp known to be trivial, so the backslash
1331 just quotes the next character. */
1332 if (RE
&& *base_pat
== '\\')
1340 c
= STRING_CHAR_AND_LENGTH (base_pat
, in_charlen
);
1345 charlen
= in_charlen
;
1349 /* Translate the character. */
1350 TRANSLATE (translated
, trt
, c
);
1351 charlen
= CHAR_STRING (translated
, str_base
);
1354 /* Check if C has any other case-equivalents. */
1355 TRANSLATE (inverse
, inverse_trt
, c
);
1356 /* If so, check if we can use boyer-moore. */
1357 if (c
!= inverse
&& boyer_moore_ok
)
1359 /* Check if all equivalents belong to the same
1360 group of characters. Note that the check of C
1361 itself is done by the last iteration. */
1362 int this_char_base
= -1;
1364 while (boyer_moore_ok
)
1366 if (ASCII_BYTE_P (inverse
))
1368 if (this_char_base
> 0)
1373 else if (CHAR_BYTE8_P (inverse
))
1374 /* Boyer-moore search can't handle a
1375 translation of an eight-bit
1378 else if (this_char_base
< 0)
1380 this_char_base
= inverse
& ~0x3F;
1382 char_base
= this_char_base
;
1383 else if (this_char_base
!= char_base
)
1386 else if ((inverse
& ~0x3F) != this_char_base
)
1390 TRANSLATE (inverse
, inverse_trt
, inverse
);
1395 /* Store this character into the translated pattern. */
1396 memcpy (pat
, str
, charlen
);
1398 base_pat
+= in_charlen
;
1399 len_byte
-= in_charlen
;
1402 /* If char_base is still negative we didn't find any translated
1403 non-ASCII characters. */
1409 /* Unibyte buffer. */
1415 /* If we got here and the RE flag is set, it's because we're
1416 dealing with a regexp known to be trivial, so the backslash
1417 just quotes the next character. */
1418 if (RE
&& *base_pat
== '\\')
1425 TRANSLATE (translated
, trt
, c
);
1426 *pat
++ = translated
;
1430 len_byte
= pat
- patbuf
;
1431 len
= raw_pattern_size
;
1432 pat
= base_pat
= patbuf
;
1435 return boyer_moore (n
, pat
, len
, len_byte
, trt
, inverse_trt
,
1436 pos
, pos_byte
, lim
, lim_byte
,
1439 return simple_search (n
, pat
, len
, len_byte
, trt
,
1440 pos
, pos_byte
, lim
, lim_byte
);
1444 /* Do a simple string search N times for the string PAT,
1445 whose length is LEN/LEN_BYTE,
1446 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1447 TRT is the translation table.
1449 Return the character position where the match is found.
1450 Otherwise, if M matches remained to be found, return -M.
1452 This kind of search works regardless of what is in PAT and
1453 regardless of what is in TRT. It is used in cases where
1454 boyer_moore cannot work. */
1457 simple_search (EMACS_INT n
, unsigned char *pat
,
1458 EMACS_INT len
, EMACS_INT len_byte
, Lisp_Object trt
,
1459 EMACS_INT pos
, EMACS_INT pos_byte
,
1460 EMACS_INT lim
, EMACS_INT lim_byte
)
1462 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
1463 int forward
= n
> 0;
1464 /* Number of buffer bytes matched. Note that this may be different
1465 from len_byte in a multibyte buffer. */
1466 EMACS_INT match_byte
;
1468 if (lim
> pos
&& multibyte
)
1473 /* Try matching at position POS. */
1474 EMACS_INT this_pos
= pos
;
1475 EMACS_INT this_pos_byte
= pos_byte
;
1476 EMACS_INT this_len
= len
;
1477 unsigned char *p
= pat
;
1478 if (pos
+ len
> lim
|| pos_byte
+ len_byte
> lim_byte
)
1481 while (this_len
> 0)
1483 int charlen
, buf_charlen
;
1486 pat_ch
= STRING_CHAR_AND_LENGTH (p
, charlen
);
1487 buf_ch
= STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte
),
1489 TRANSLATE (buf_ch
, trt
, buf_ch
);
1491 if (buf_ch
!= pat_ch
)
1497 this_pos_byte
+= buf_charlen
;
1503 match_byte
= this_pos_byte
- pos_byte
;
1505 pos_byte
+= match_byte
;
1509 INC_BOTH (pos
, pos_byte
);
1519 /* Try matching at position POS. */
1520 EMACS_INT this_pos
= pos
;
1521 EMACS_INT this_len
= len
;
1522 unsigned char *p
= pat
;
1524 if (pos
+ len
> lim
)
1527 while (this_len
> 0)
1530 int buf_ch
= FETCH_BYTE (this_pos
);
1531 TRANSLATE (buf_ch
, trt
, buf_ch
);
1533 if (buf_ch
!= pat_ch
)
1552 /* Backwards search. */
1553 else if (lim
< pos
&& multibyte
)
1558 /* Try matching at position POS. */
1559 EMACS_INT this_pos
= pos
;
1560 EMACS_INT this_pos_byte
= pos_byte
;
1561 EMACS_INT this_len
= len
;
1562 const unsigned char *p
= pat
+ len_byte
;
1564 if (this_pos
- len
< lim
|| (pos_byte
- len_byte
) < lim_byte
)
1567 while (this_len
> 0)
1572 DEC_BOTH (this_pos
, this_pos_byte
);
1573 PREV_CHAR_BOUNDARY (p
, pat
);
1574 pat_ch
= STRING_CHAR (p
);
1575 buf_ch
= STRING_CHAR (BYTE_POS_ADDR (this_pos_byte
));
1576 TRANSLATE (buf_ch
, trt
, buf_ch
);
1578 if (buf_ch
!= pat_ch
)
1586 match_byte
= pos_byte
- this_pos_byte
;
1588 pos_byte
= this_pos_byte
;
1592 DEC_BOTH (pos
, pos_byte
);
1602 /* Try matching at position POS. */
1603 EMACS_INT this_pos
= pos
- len
;
1604 EMACS_INT this_len
= len
;
1605 unsigned char *p
= pat
;
1610 while (this_len
> 0)
1613 int buf_ch
= FETCH_BYTE (this_pos
);
1614 TRANSLATE (buf_ch
, trt
, buf_ch
);
1616 if (buf_ch
!= pat_ch
)
1639 set_search_regs ((multibyte
? pos_byte
: pos
) - match_byte
, match_byte
);
1641 set_search_regs (multibyte
? pos_byte
: pos
, match_byte
);
1651 /* Do Boyer-Moore search N times for the string BASE_PAT,
1652 whose length is LEN/LEN_BYTE,
1653 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1654 DIRECTION says which direction we search in.
1655 TRT and INVERSE_TRT are translation tables.
1656 Characters in PAT are already translated by TRT.
1658 This kind of search works if all the characters in BASE_PAT that
1659 have nontrivial translation are the same aside from the last byte.
1660 This makes it possible to translate just the last byte of a
1661 character, and do so after just a simple test of the context.
1662 CHAR_BASE is nonzero if there is such a non-ASCII character.
1664 If that criterion is not satisfied, do not call this function. */
1667 boyer_moore (EMACS_INT n
, unsigned char *base_pat
,
1668 EMACS_INT len
, EMACS_INT len_byte
,
1669 Lisp_Object trt
, Lisp_Object inverse_trt
,
1670 EMACS_INT pos
, EMACS_INT pos_byte
,
1671 EMACS_INT lim
, EMACS_INT lim_byte
, int char_base
)
1673 int direction
= ((n
> 0) ? 1 : -1);
1674 register EMACS_INT dirlen
;
1676 int stride_for_teases
= 0;
1678 register unsigned char *cursor
, *p_limit
;
1679 register EMACS_INT i
;
1681 unsigned char *pat
, *pat_end
;
1682 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
1684 unsigned char simple_translate
[0400];
1685 /* These are set to the preceding bytes of a byte to be translated
1686 if char_base is nonzero. As the maximum byte length of a
1687 multibyte character is 5, we have to check at most four previous
1689 int translate_prev_byte1
= 0;
1690 int translate_prev_byte2
= 0;
1691 int translate_prev_byte3
= 0;
1692 int translate_prev_byte4
= 0;
1694 /* The general approach is that we are going to maintain that we know
1695 the first (closest to the present position, in whatever direction
1696 we're searching) character that could possibly be the last
1697 (furthest from present position) character of a valid match. We
1698 advance the state of our knowledge by looking at that character
1699 and seeing whether it indeed matches the last character of the
1700 pattern. If it does, we take a closer look. If it does not, we
1701 move our pointer (to putative last characters) as far as is
1702 logically possible. This amount of movement, which I call a
1703 stride, will be the length of the pattern if the actual character
1704 appears nowhere in the pattern, otherwise it will be the distance
1705 from the last occurrence of that character to the end of the
1706 pattern. If the amount is zero we have a possible match. */
1708 /* Here we make a "mickey mouse" BM table. The stride of the search
1709 is determined only by the last character of the putative match.
1710 If that character does not match, we will stride the proper
1711 distance to propose a match that superimposes it on the last
1712 instance of a character that matches it (per trt), or misses
1713 it entirely if there is none. */
1715 dirlen
= len_byte
* direction
;
1717 /* Record position after the end of the pattern. */
1718 pat_end
= base_pat
+ len_byte
;
1719 /* BASE_PAT points to a character that we start scanning from.
1720 It is the first character in a forward search,
1721 the last character in a backward search. */
1723 base_pat
= pat_end
- 1;
1725 /* A character that does not appear in the pattern induces a
1726 stride equal to the pattern length. */
1727 for (i
= 0; i
< 0400; i
++)
1730 /* We use this for translation, instead of TRT itself.
1731 We fill this in to handle the characters that actually
1732 occur in the pattern. Others don't matter anyway! */
1733 for (i
= 0; i
< 0400; i
++)
1734 simple_translate
[i
] = i
;
1738 /* Setup translate_prev_byte1/2/3/4 from CHAR_BASE. Only a
1739 byte following them are the target of translation. */
1740 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
1741 int len
= CHAR_STRING (char_base
, str
);
1743 translate_prev_byte1
= str
[len
- 2];
1746 translate_prev_byte2
= str
[len
- 3];
1749 translate_prev_byte3
= str
[len
- 4];
1751 translate_prev_byte4
= str
[len
- 5];
1759 unsigned char *ptr
= base_pat
+ i
;
1763 /* If the byte currently looking at is the last of a
1764 character to check case-equivalents, set CH to that
1765 character. An ASCII character and a non-ASCII character
1766 matching with CHAR_BASE are to be checked. */
1769 if (ASCII_BYTE_P (*ptr
) || ! multibyte
)
1772 && ((pat_end
- ptr
) == 1 || CHAR_HEAD_P (ptr
[1])))
1774 unsigned char *charstart
= ptr
- 1;
1776 while (! (CHAR_HEAD_P (*charstart
)))
1778 ch
= STRING_CHAR (charstart
);
1779 if (char_base
!= (ch
& ~0x3F))
1784 j
= (ch
& 0x3F) | 0200;
1789 stride_for_teases
= BM_tab
[j
];
1791 BM_tab
[j
] = dirlen
- i
;
1792 /* A translation table is accompanied by its inverse -- see */
1793 /* comment following downcase_table for details */
1796 int starting_ch
= ch
;
1801 TRANSLATE (ch
, inverse_trt
, ch
);
1803 j
= (ch
& 0x3F) | 0200;
1807 /* For all the characters that map into CH,
1808 set up simple_translate to map the last byte
1810 simple_translate
[j
] = starting_j
;
1811 if (ch
== starting_ch
)
1813 BM_tab
[j
] = dirlen
- i
;
1822 stride_for_teases
= BM_tab
[j
];
1823 BM_tab
[j
] = dirlen
- i
;
1825 /* stride_for_teases tells how much to stride if we get a
1826 match on the far character but are subsequently
1827 disappointed, by recording what the stride would have been
1828 for that character if the last character had been
1831 pos_byte
+= dirlen
- ((direction
> 0) ? direction
: 0);
1832 /* loop invariant - POS_BYTE points at where last char (first
1833 char if reverse) of pattern would align in a possible match. */
1837 unsigned char *tail_end_ptr
;
1839 /* It's been reported that some (broken) compiler thinks that
1840 Boolean expressions in an arithmetic context are unsigned.
1841 Using an explicit ?1:0 prevents this. */
1842 if ((lim_byte
- pos_byte
- ((direction
> 0) ? 1 : 0)) * direction
1844 return (n
* (0 - direction
));
1845 /* First we do the part we can by pointers (maybe nothing) */
1848 limit
= pos_byte
- dirlen
+ direction
;
1851 limit
= BUFFER_CEILING_OF (limit
);
1852 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1853 can take on without hitting edge of buffer or the gap. */
1854 limit
= min (limit
, pos_byte
+ 20000);
1855 limit
= min (limit
, lim_byte
- 1);
1859 limit
= BUFFER_FLOOR_OF (limit
);
1860 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1861 can take on without hitting edge of buffer or the gap. */
1862 limit
= max (limit
, pos_byte
- 20000);
1863 limit
= max (limit
, lim_byte
);
1865 tail_end
= BUFFER_CEILING_OF (pos_byte
) + 1;
1866 tail_end_ptr
= BYTE_POS_ADDR (tail_end
);
1868 if ((limit
- pos_byte
) * direction
> 20)
1872 p_limit
= BYTE_POS_ADDR (limit
);
1873 p2
= (cursor
= BYTE_POS_ADDR (pos_byte
));
1874 /* In this loop, pos + cursor - p2 is the surrogate for pos. */
1875 while (1) /* use one cursor setting as long as i can */
1877 if (direction
> 0) /* worth duplicating */
1879 while (cursor
<= p_limit
)
1881 if (BM_tab
[*cursor
] == 0)
1883 cursor
+= BM_tab
[*cursor
];
1888 while (cursor
>= p_limit
)
1890 if (BM_tab
[*cursor
] == 0)
1892 cursor
+= BM_tab
[*cursor
];
1895 /* If you are here, cursor is beyond the end of the
1896 searched region. You fail to match within the
1897 permitted region and would otherwise try a character
1898 beyond that region. */
1902 i
= dirlen
- direction
;
1905 while ((i
-= direction
) + direction
!= 0)
1908 cursor
-= direction
;
1909 /* Translate only the last byte of a character. */
1911 || ((cursor
== tail_end_ptr
1912 || CHAR_HEAD_P (cursor
[1]))
1913 && (CHAR_HEAD_P (cursor
[0])
1914 /* Check if this is the last byte of
1915 a translable character. */
1916 || (translate_prev_byte1
== cursor
[-1]
1917 && (CHAR_HEAD_P (translate_prev_byte1
)
1918 || (translate_prev_byte2
== cursor
[-2]
1919 && (CHAR_HEAD_P (translate_prev_byte2
)
1920 || (translate_prev_byte3
== cursor
[-3]))))))))
1921 ch
= simple_translate
[*cursor
];
1930 while ((i
-= direction
) + direction
!= 0)
1932 cursor
-= direction
;
1933 if (pat
[i
] != *cursor
)
1937 cursor
+= dirlen
- i
- direction
; /* fix cursor */
1938 if (i
+ direction
== 0)
1940 EMACS_INT position
, start
, end
;
1942 cursor
-= direction
;
1944 position
= pos_byte
+ cursor
- p2
+ ((direction
> 0)
1945 ? 1 - len_byte
: 0);
1946 set_search_regs (position
, len_byte
);
1948 if (NILP (Vinhibit_changing_match_data
))
1950 start
= search_regs
.start
[0];
1951 end
= search_regs
.end
[0];
1954 /* If Vinhibit_changing_match_data is non-nil,
1955 search_regs will not be changed. So let's
1956 compute start and end here. */
1958 start
= BYTE_TO_CHAR (position
);
1959 end
= BYTE_TO_CHAR (position
+ len_byte
);
1962 if ((n
-= direction
) != 0)
1963 cursor
+= dirlen
; /* to resume search */
1965 return direction
> 0 ? end
: start
;
1968 cursor
+= stride_for_teases
; /* <sigh> we lose - */
1970 pos_byte
+= cursor
- p2
;
1973 /* Now we'll pick up a clump that has to be done the hard
1974 way because it covers a discontinuity. */
1976 limit
= ((direction
> 0)
1977 ? BUFFER_CEILING_OF (pos_byte
- dirlen
+ 1)
1978 : BUFFER_FLOOR_OF (pos_byte
- dirlen
- 1));
1979 limit
= ((direction
> 0)
1980 ? min (limit
+ len_byte
, lim_byte
- 1)
1981 : max (limit
- len_byte
, lim_byte
));
1982 /* LIMIT is now the last value POS_BYTE can have
1983 and still be valid for a possible match. */
1986 /* This loop can be coded for space rather than
1987 speed because it will usually run only once.
1988 (the reach is at most len + 21, and typically
1989 does not exceed len). */
1990 while ((limit
- pos_byte
) * direction
>= 0)
1992 int ch
= FETCH_BYTE (pos_byte
);
1993 if (BM_tab
[ch
] == 0)
1995 pos_byte
+= BM_tab
[ch
];
1997 break; /* ran off the end */
2000 /* Found what might be a match. */
2001 i
= dirlen
- direction
;
2002 while ((i
-= direction
) + direction
!= 0)
2006 pos_byte
-= direction
;
2007 ptr
= BYTE_POS_ADDR (pos_byte
);
2008 /* Translate only the last byte of a character. */
2010 || ((ptr
== tail_end_ptr
2011 || CHAR_HEAD_P (ptr
[1]))
2012 && (CHAR_HEAD_P (ptr
[0])
2013 /* Check if this is the last byte of a
2014 translable character. */
2015 || (translate_prev_byte1
== ptr
[-1]
2016 && (CHAR_HEAD_P (translate_prev_byte1
)
2017 || (translate_prev_byte2
== ptr
[-2]
2018 && (CHAR_HEAD_P (translate_prev_byte2
)
2019 || translate_prev_byte3
== ptr
[-3])))))))
2020 ch
= simple_translate
[*ptr
];
2026 /* Above loop has moved POS_BYTE part or all the way
2027 back to the first pos (last pos if reverse).
2028 Set it once again at the last (first if reverse) char. */
2029 pos_byte
+= dirlen
- i
- direction
;
2030 if (i
+ direction
== 0)
2032 EMACS_INT position
, start
, end
;
2033 pos_byte
-= direction
;
2035 position
= pos_byte
+ ((direction
> 0) ? 1 - len_byte
: 0);
2036 set_search_regs (position
, len_byte
);
2038 if (NILP (Vinhibit_changing_match_data
))
2040 start
= search_regs
.start
[0];
2041 end
= search_regs
.end
[0];
2044 /* If Vinhibit_changing_match_data is non-nil,
2045 search_regs will not be changed. So let's
2046 compute start and end here. */
2048 start
= BYTE_TO_CHAR (position
);
2049 end
= BYTE_TO_CHAR (position
+ len_byte
);
2052 if ((n
-= direction
) != 0)
2053 pos_byte
+= dirlen
; /* to resume search */
2055 return direction
> 0 ? end
: start
;
2058 pos_byte
+= stride_for_teases
;
2061 /* We have done one clump. Can we continue? */
2062 if ((lim_byte
- pos_byte
) * direction
< 0)
2063 return ((0 - n
) * direction
);
2065 return BYTE_TO_CHAR (pos_byte
);
2068 /* Record beginning BEG_BYTE and end BEG_BYTE + NBYTES
2069 for the overall match just found in the current buffer.
2070 Also clear out the match data for registers 1 and up. */
2073 set_search_regs (EMACS_INT beg_byte
, EMACS_INT nbytes
)
2077 if (!NILP (Vinhibit_changing_match_data
))
2080 /* Make sure we have registers in which to store
2081 the match position. */
2082 if (search_regs
.num_regs
== 0)
2084 search_regs
.start
= (regoff_t
*) xmalloc (2 * sizeof (regoff_t
));
2085 search_regs
.end
= (regoff_t
*) xmalloc (2 * sizeof (regoff_t
));
2086 search_regs
.num_regs
= 2;
2089 /* Clear out the other registers. */
2090 for (i
= 1; i
< search_regs
.num_regs
; i
++)
2092 search_regs
.start
[i
] = -1;
2093 search_regs
.end
[i
] = -1;
2096 search_regs
.start
[0] = BYTE_TO_CHAR (beg_byte
);
2097 search_regs
.end
[0] = BYTE_TO_CHAR (beg_byte
+ nbytes
);
2098 XSETBUFFER (last_thing_searched
, current_buffer
);
2101 /* Given STRING, a string of words separated by word delimiters,
2102 compute a regexp that matches those exact words separated by
2103 arbitrary punctuation. If LAX is nonzero, the end of the string
2104 need not match a word boundary unless it ends in whitespace. */
2107 wordify (Lisp_Object string
, int lax
)
2109 register unsigned char *p
, *o
;
2110 register EMACS_INT i
, i_byte
, len
, punct_count
= 0, word_count
= 0;
2114 int whitespace_at_end
;
2116 CHECK_STRING (string
);
2118 len
= SCHARS (string
);
2120 for (i
= 0, i_byte
= 0; i
< len
; )
2124 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c
, string
, i
, i_byte
);
2126 if (SYNTAX (c
) != Sword
)
2129 if (i
> 0 && SYNTAX (prev_c
) == Sword
)
2136 if (SYNTAX (prev_c
) == Sword
)
2139 whitespace_at_end
= 0;
2142 whitespace_at_end
= 1;
2145 return empty_unibyte_string
;
2147 adjust
= - punct_count
+ 5 * (word_count
- 1)
2148 + ((lax
&& !whitespace_at_end
) ? 2 : 4);
2149 if (STRING_MULTIBYTE (string
))
2150 val
= make_uninit_multibyte_string (len
+ adjust
,
2154 val
= make_uninit_string (len
+ adjust
);
2161 for (i
= 0, i_byte
= 0; i
< len
; )
2164 EMACS_INT i_byte_orig
= i_byte
;
2166 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c
, string
, i
, i_byte
);
2168 if (SYNTAX (c
) == Sword
)
2170 memcpy (o
, SDATA (string
) + i_byte_orig
, i_byte
- i_byte_orig
);
2171 o
+= i_byte
- i_byte_orig
;
2173 else if (i
> 0 && SYNTAX (prev_c
) == Sword
&& --word_count
)
2185 if (!lax
|| whitespace_at_end
)
2194 DEFUN ("search-backward", Fsearch_backward
, Ssearch_backward
, 1, 4,
2195 "MSearch backward: ",
2196 doc
: /* Search backward from point for STRING.
2197 Set point to the beginning of the occurrence found, and return point.
2198 An optional second argument bounds the search; it is a buffer position.
2199 The match found must not extend before that position.
2200 Optional third argument, if t, means if fail just return nil (no error).
2201 If not nil and not t, position at limit of search and return nil.
2202 Optional fourth argument is repeat count--search for successive occurrences.
2204 Search case-sensitivity is determined by the value of the variable
2205 `case-fold-search', which see.
2207 See also the functions `match-beginning', `match-end' and `replace-match'. */)
2208 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2210 return search_command (string
, bound
, noerror
, count
, -1, 0, 0);
2213 DEFUN ("search-forward", Fsearch_forward
, Ssearch_forward
, 1, 4, "MSearch: ",
2214 doc
: /* Search forward from point for STRING.
2215 Set point to the end of the occurrence found, and return point.
2216 An optional second argument bounds the search; it is a buffer position.
2217 The match found must not extend after that position. A value of nil is
2218 equivalent to (point-max).
2219 Optional third argument, if t, means if fail just return nil (no error).
2220 If not nil and not t, move to limit of search and return nil.
2221 Optional fourth argument is repeat count--search for successive occurrences.
2223 Search case-sensitivity is determined by the value of the variable
2224 `case-fold-search', which see.
2226 See also the functions `match-beginning', `match-end' and `replace-match'. */)
2227 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2229 return search_command (string
, bound
, noerror
, count
, 1, 0, 0);
2232 DEFUN ("word-search-backward", Fword_search_backward
, Sword_search_backward
, 1, 4,
2233 "sWord search backward: ",
2234 doc
: /* Search backward from point for STRING, ignoring differences in punctuation.
2235 Set point to the beginning of the occurrence found, and return point.
2236 An optional second argument bounds the search; it is a buffer position.
2237 The match found must not extend before that position.
2238 Optional third argument, if t, means if fail just return nil (no error).
2239 If not nil and not t, move to limit of search and return nil.
2240 Optional fourth argument is repeat count--search for successive occurrences. */)
2241 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2243 return search_command (wordify (string
, 0), bound
, noerror
, count
, -1, 1, 0);
2246 DEFUN ("word-search-forward", Fword_search_forward
, Sword_search_forward
, 1, 4,
2248 doc
: /* Search forward from point for STRING, ignoring differences in punctuation.
2249 Set point to the end of the occurrence found, and return point.
2250 An optional second argument bounds the search; it is a buffer position.
2251 The match found must not extend after that position.
2252 Optional third argument, if t, means if fail just return nil (no error).
2253 If not nil and not t, move to limit of search and return nil.
2254 Optional fourth argument is repeat count--search for successive occurrences. */)
2255 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2257 return search_command (wordify (string
, 0), bound
, noerror
, count
, 1, 1, 0);
2260 DEFUN ("word-search-backward-lax", Fword_search_backward_lax
, Sword_search_backward_lax
, 1, 4,
2261 "sWord search backward: ",
2262 doc
: /* Search backward from point for STRING, ignoring differences in punctuation.
2263 Set point to the beginning of the occurrence found, and return point.
2265 Unlike `word-search-backward', the end of STRING need not match a word
2266 boundary unless it ends in whitespace.
2268 An optional second argument bounds the search; it is a buffer position.
2269 The match found must not extend before that position.
2270 Optional third argument, if t, means if fail just return nil (no error).
2271 If not nil and not t, move to limit of search and return nil.
2272 Optional fourth argument is repeat count--search for successive occurrences. */)
2273 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2275 return search_command (wordify (string
, 1), bound
, noerror
, count
, -1, 1, 0);
2278 DEFUN ("word-search-forward-lax", Fword_search_forward_lax
, Sword_search_forward_lax
, 1, 4,
2280 doc
: /* Search forward from point for STRING, ignoring differences in punctuation.
2281 Set point to the end of the occurrence found, and return point.
2283 Unlike `word-search-forward', the end of STRING need not match a word
2284 boundary unless it ends in whitespace.
2286 An optional second argument bounds the search; it is a buffer position.
2287 The match found must not extend after that position.
2288 Optional third argument, if t, means if fail just return nil (no error).
2289 If not nil and not t, move to limit of search and return nil.
2290 Optional fourth argument is repeat count--search for successive occurrences. */)
2291 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2293 return search_command (wordify (string
, 1), bound
, noerror
, count
, 1, 1, 0);
2296 DEFUN ("re-search-backward", Fre_search_backward
, Sre_search_backward
, 1, 4,
2297 "sRE search backward: ",
2298 doc
: /* Search backward from point for match for regular expression REGEXP.
2299 Set point to the beginning of the match, and return point.
2300 The match found is the one starting last in the buffer
2301 and yet ending before the origin of the search.
2302 An optional second argument bounds the search; it is a buffer position.
2303 The match found must start at or after that position.
2304 Optional third argument, if t, means if fail just return nil (no error).
2305 If not nil and not t, move to limit of search and return nil.
2306 Optional fourth argument is repeat count--search for successive occurrences.
2307 See also the functions `match-beginning', `match-end', `match-string',
2308 and `replace-match'. */)
2309 (Lisp_Object regexp
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2311 return search_command (regexp
, bound
, noerror
, count
, -1, 1, 0);
2314 DEFUN ("re-search-forward", Fre_search_forward
, Sre_search_forward
, 1, 4,
2316 doc
: /* Search forward from point for regular expression REGEXP.
2317 Set point to the end of the occurrence found, and return point.
2318 An optional second argument bounds the search; it is a buffer position.
2319 The match found must not extend after that position.
2320 Optional third argument, if t, means if fail just return nil (no error).
2321 If not nil and not t, move to limit of search and return nil.
2322 Optional fourth argument is repeat count--search for successive occurrences.
2323 See also the functions `match-beginning', `match-end', `match-string',
2324 and `replace-match'. */)
2325 (Lisp_Object regexp
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2327 return search_command (regexp
, bound
, noerror
, count
, 1, 1, 0);
2330 DEFUN ("posix-search-backward", Fposix_search_backward
, Sposix_search_backward
, 1, 4,
2331 "sPosix search backward: ",
2332 doc
: /* Search backward from point for match for regular expression REGEXP.
2333 Find the longest match in accord with Posix regular expression rules.
2334 Set point to the beginning of the match, and return point.
2335 The match found is the one starting last in the buffer
2336 and yet ending before the origin of the search.
2337 An optional second argument bounds the search; it is a buffer position.
2338 The match found must start at or after that position.
2339 Optional third argument, if t, means if fail just return nil (no error).
2340 If not nil and not t, move to limit of search and return nil.
2341 Optional fourth argument is repeat count--search for successive occurrences.
2342 See also the functions `match-beginning', `match-end', `match-string',
2343 and `replace-match'. */)
2344 (Lisp_Object regexp
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2346 return search_command (regexp
, bound
, noerror
, count
, -1, 1, 1);
2349 DEFUN ("posix-search-forward", Fposix_search_forward
, Sposix_search_forward
, 1, 4,
2351 doc
: /* Search forward from point for regular expression REGEXP.
2352 Find the longest match in accord with Posix regular expression rules.
2353 Set point to the end of the occurrence found, and return point.
2354 An optional second argument bounds the search; it is a buffer position.
2355 The match found must not extend after that position.
2356 Optional third argument, if t, means if fail just return nil (no error).
2357 If not nil and not t, move to limit of search and return nil.
2358 Optional fourth argument is repeat count--search for successive occurrences.
2359 See also the functions `match-beginning', `match-end', `match-string',
2360 and `replace-match'. */)
2361 (Lisp_Object regexp
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2363 return search_command (regexp
, bound
, noerror
, count
, 1, 1, 1);
2366 DEFUN ("replace-match", Freplace_match
, Sreplace_match
, 1, 5, 0,
2367 doc
: /* Replace text matched by last search with NEWTEXT.
2368 Leave point at the end of the replacement text.
2370 If second arg FIXEDCASE is non-nil, do not alter case of replacement text.
2371 Otherwise maybe capitalize the whole text, or maybe just word initials,
2372 based on the replaced text.
2373 If the replaced text has only capital letters
2374 and has at least one multiletter word, convert NEWTEXT to all caps.
2375 Otherwise if all words are capitalized in the replaced text,
2376 capitalize each word in NEWTEXT.
2378 If third arg LITERAL is non-nil, insert NEWTEXT literally.
2379 Otherwise treat `\\' as special:
2380 `\\&' in NEWTEXT means substitute original matched text.
2381 `\\N' means substitute what matched the Nth `\\(...\\)'.
2382 If Nth parens didn't match, substitute nothing.
2383 `\\\\' means insert one `\\'.
2384 Case conversion does not apply to these substitutions.
2386 FIXEDCASE and LITERAL are optional arguments.
2388 The optional fourth argument STRING can be a string to modify.
2389 This is meaningful when the previous match was done against STRING,
2390 using `string-match'. When used this way, `replace-match'
2391 creates and returns a new string made by copying STRING and replacing
2392 the part of STRING that was matched.
2394 The optional fifth argument SUBEXP specifies a subexpression;
2395 it says to replace just that subexpression with NEWTEXT,
2396 rather than replacing the entire matched text.
2397 This is, in a vague sense, the inverse of using `\\N' in NEWTEXT;
2398 `\\N' copies subexp N into NEWTEXT, but using N as SUBEXP puts
2399 NEWTEXT in place of subexp N.
2400 This is useful only after a regular expression search or match,
2401 since only regular expressions have distinguished subexpressions. */)
2402 (Lisp_Object newtext
, Lisp_Object fixedcase
, Lisp_Object literal
, Lisp_Object string
, Lisp_Object subexp
)
2404 enum { nochange
, all_caps
, cap_initial
} case_action
;
2405 register EMACS_INT pos
, pos_byte
;
2406 int some_multiletter_word
;
2409 int some_nonuppercase_initial
;
2410 register int c
, prevc
;
2412 EMACS_INT opoint
, newpoint
;
2414 CHECK_STRING (newtext
);
2416 if (! NILP (string
))
2417 CHECK_STRING (string
);
2419 case_action
= nochange
; /* We tried an initialization */
2420 /* but some C compilers blew it */
2422 if (search_regs
.num_regs
<= 0)
2423 error ("`replace-match' called before any match found");
2429 CHECK_NUMBER (subexp
);
2430 sub
= XINT (subexp
);
2431 if (sub
< 0 || sub
>= search_regs
.num_regs
)
2432 args_out_of_range (subexp
, make_number (search_regs
.num_regs
));
2437 if (search_regs
.start
[sub
] < BEGV
2438 || search_regs
.start
[sub
] > search_regs
.end
[sub
]
2439 || search_regs
.end
[sub
] > ZV
)
2440 args_out_of_range (make_number (search_regs
.start
[sub
]),
2441 make_number (search_regs
.end
[sub
]));
2445 if (search_regs
.start
[sub
] < 0
2446 || search_regs
.start
[sub
] > search_regs
.end
[sub
]
2447 || search_regs
.end
[sub
] > SCHARS (string
))
2448 args_out_of_range (make_number (search_regs
.start
[sub
]),
2449 make_number (search_regs
.end
[sub
]));
2452 if (NILP (fixedcase
))
2454 /* Decide how to casify by examining the matched text. */
2457 pos
= search_regs
.start
[sub
];
2458 last
= search_regs
.end
[sub
];
2461 pos_byte
= CHAR_TO_BYTE (pos
);
2463 pos_byte
= string_char_to_byte (string
, pos
);
2466 case_action
= all_caps
;
2468 /* some_multiletter_word is set nonzero if any original word
2469 is more than one letter long. */
2470 some_multiletter_word
= 0;
2472 some_nonuppercase_initial
= 0;
2479 c
= FETCH_CHAR_AS_MULTIBYTE (pos_byte
);
2480 INC_BOTH (pos
, pos_byte
);
2483 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c
, string
, pos
, pos_byte
);
2487 /* Cannot be all caps if any original char is lower case */
2490 if (SYNTAX (prevc
) != Sword
)
2491 some_nonuppercase_initial
= 1;
2493 some_multiletter_word
= 1;
2495 else if (UPPERCASEP (c
))
2498 if (SYNTAX (prevc
) != Sword
)
2501 some_multiletter_word
= 1;
2505 /* If the initial is a caseless word constituent,
2506 treat that like a lowercase initial. */
2507 if (SYNTAX (prevc
) != Sword
)
2508 some_nonuppercase_initial
= 1;
2514 /* Convert to all caps if the old text is all caps
2515 and has at least one multiletter word. */
2516 if (! some_lowercase
&& some_multiletter_word
)
2517 case_action
= all_caps
;
2518 /* Capitalize each word, if the old text has all capitalized words. */
2519 else if (!some_nonuppercase_initial
&& some_multiletter_word
)
2520 case_action
= cap_initial
;
2521 else if (!some_nonuppercase_initial
&& some_uppercase
)
2522 /* Should x -> yz, operating on X, give Yz or YZ?
2523 We'll assume the latter. */
2524 case_action
= all_caps
;
2526 case_action
= nochange
;
2529 /* Do replacement in a string. */
2532 Lisp_Object before
, after
;
2534 before
= Fsubstring (string
, make_number (0),
2535 make_number (search_regs
.start
[sub
]));
2536 after
= Fsubstring (string
, make_number (search_regs
.end
[sub
]), Qnil
);
2538 /* Substitute parts of the match into NEWTEXT
2542 EMACS_INT lastpos
= 0;
2543 EMACS_INT lastpos_byte
= 0;
2544 /* We build up the substituted string in ACCUM. */
2547 int length
= SBYTES (newtext
);
2551 for (pos_byte
= 0, pos
= 0; pos_byte
< length
;)
2553 EMACS_INT substart
= -1;
2554 EMACS_INT subend
= 0;
2555 int delbackslash
= 0;
2557 FETCH_STRING_CHAR_ADVANCE (c
, newtext
, pos
, pos_byte
);
2561 FETCH_STRING_CHAR_ADVANCE (c
, newtext
, pos
, pos_byte
);
2565 substart
= search_regs
.start
[sub
];
2566 subend
= search_regs
.end
[sub
];
2568 else if (c
>= '1' && c
<= '9')
2570 if (search_regs
.start
[c
- '0'] >= 0
2571 && c
<= search_regs
.num_regs
+ '0')
2573 substart
= search_regs
.start
[c
- '0'];
2574 subend
= search_regs
.end
[c
- '0'];
2578 /* If that subexp did not match,
2579 replace \\N with nothing. */
2587 error ("Invalid use of `\\' in replacement text");
2591 if (pos
- 2 != lastpos
)
2592 middle
= substring_both (newtext
, lastpos
,
2594 pos
- 2, pos_byte
- 2);
2597 accum
= concat3 (accum
, middle
,
2599 make_number (substart
),
2600 make_number (subend
)));
2602 lastpos_byte
= pos_byte
;
2604 else if (delbackslash
)
2606 middle
= substring_both (newtext
, lastpos
,
2608 pos
- 1, pos_byte
- 1);
2610 accum
= concat2 (accum
, middle
);
2612 lastpos_byte
= pos_byte
;
2617 middle
= substring_both (newtext
, lastpos
,
2623 newtext
= concat2 (accum
, middle
);
2626 /* Do case substitution in NEWTEXT if desired. */
2627 if (case_action
== all_caps
)
2628 newtext
= Fupcase (newtext
);
2629 else if (case_action
== cap_initial
)
2630 newtext
= Fupcase_initials (newtext
);
2632 return concat3 (before
, newtext
, after
);
2635 /* Record point, then move (quietly) to the start of the match. */
2636 if (PT
>= search_regs
.end
[sub
])
2638 else if (PT
> search_regs
.start
[sub
])
2639 opoint
= search_regs
.end
[sub
] - ZV
;
2643 /* If we want non-literal replacement,
2644 perform substitution on the replacement string. */
2647 EMACS_INT length
= SBYTES (newtext
);
2648 unsigned char *substed
;
2649 EMACS_INT substed_alloc_size
, substed_len
;
2650 int buf_multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
2651 int str_multibyte
= STRING_MULTIBYTE (newtext
);
2652 Lisp_Object rev_tbl
;
2653 int really_changed
= 0;
2657 substed_alloc_size
= length
* 2 + 100;
2658 substed
= (unsigned char *) xmalloc (substed_alloc_size
+ 1);
2661 /* Go thru NEWTEXT, producing the actual text to insert in
2662 SUBSTED while adjusting multibyteness to that of the current
2665 for (pos_byte
= 0, pos
= 0; pos_byte
< length
;)
2667 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
2668 const unsigned char *add_stuff
= NULL
;
2669 EMACS_INT add_len
= 0;
2674 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, newtext
, pos
, pos_byte
);
2676 c
= multibyte_char_to_unibyte (c
, rev_tbl
);
2680 /* Note that we don't have to increment POS. */
2681 c
= SREF (newtext
, pos_byte
++);
2683 MAKE_CHAR_MULTIBYTE (c
);
2686 /* Either set ADD_STUFF and ADD_LEN to the text to put in SUBSTED,
2687 or set IDX to a match index, which means put that part
2688 of the buffer text into SUBSTED. */
2696 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, newtext
,
2698 if (!buf_multibyte
&& !ASCII_CHAR_P (c
))
2699 c
= multibyte_char_to_unibyte (c
, rev_tbl
);
2703 c
= SREF (newtext
, pos_byte
++);
2705 MAKE_CHAR_MULTIBYTE (c
);
2710 else if (c
>= '1' && c
<= '9' && c
<= search_regs
.num_regs
+ '0')
2712 if (search_regs
.start
[c
- '0'] >= 1)
2716 add_len
= 1, add_stuff
= "\\";
2720 error ("Invalid use of `\\' in replacement text");
2725 add_len
= CHAR_STRING (c
, str
);
2729 /* If we want to copy part of a previous match,
2730 set up ADD_STUFF and ADD_LEN to point to it. */
2733 EMACS_INT begbyte
= CHAR_TO_BYTE (search_regs
.start
[idx
]);
2734 add_len
= CHAR_TO_BYTE (search_regs
.end
[idx
]) - begbyte
;
2735 if (search_regs
.start
[idx
] < GPT
&& GPT
< search_regs
.end
[idx
])
2736 move_gap (search_regs
.start
[idx
]);
2737 add_stuff
= BYTE_POS_ADDR (begbyte
);
2740 /* Now the stuff we want to add to SUBSTED
2741 is invariably ADD_LEN bytes starting at ADD_STUFF. */
2743 /* Make sure SUBSTED is big enough. */
2744 if (substed_len
+ add_len
>= substed_alloc_size
)
2746 substed_alloc_size
= substed_len
+ add_len
+ 500;
2747 substed
= (unsigned char *) xrealloc (substed
,
2748 substed_alloc_size
+ 1);
2751 /* Now add to the end of SUBSTED. */
2754 memcpy (substed
+ substed_len
, add_stuff
, add_len
);
2755 substed_len
+= add_len
;
2764 multibyte_chars_in_text (substed
, substed_len
);
2766 newtext
= make_multibyte_string (substed
, nchars
, substed_len
);
2769 newtext
= make_unibyte_string (substed
, substed_len
);
2774 /* Replace the old text with the new in the cleanest possible way. */
2775 replace_range (search_regs
.start
[sub
], search_regs
.end
[sub
],
2777 newpoint
= search_regs
.start
[sub
] + SCHARS (newtext
);
2779 if (case_action
== all_caps
)
2780 Fupcase_region (make_number (search_regs
.start
[sub
]),
2781 make_number (newpoint
));
2782 else if (case_action
== cap_initial
)
2783 Fupcase_initials_region (make_number (search_regs
.start
[sub
]),
2784 make_number (newpoint
));
2786 /* Adjust search data for this change. */
2788 EMACS_INT oldend
= search_regs
.end
[sub
];
2789 EMACS_INT oldstart
= search_regs
.start
[sub
];
2790 EMACS_INT change
= newpoint
- search_regs
.end
[sub
];
2793 for (i
= 0; i
< search_regs
.num_regs
; i
++)
2795 if (search_regs
.start
[i
] >= oldend
)
2796 search_regs
.start
[i
] += change
;
2797 else if (search_regs
.start
[i
] > oldstart
)
2798 search_regs
.start
[i
] = oldstart
;
2799 if (search_regs
.end
[i
] >= oldend
)
2800 search_regs
.end
[i
] += change
;
2801 else if (search_regs
.end
[i
] > oldstart
)
2802 search_regs
.end
[i
] = oldstart
;
2806 /* Put point back where it was in the text. */
2808 TEMP_SET_PT (opoint
+ ZV
);
2810 TEMP_SET_PT (opoint
);
2812 /* Now move point "officially" to the start of the inserted replacement. */
2813 move_if_not_intangible (newpoint
);
2819 match_limit (Lisp_Object num
, int beginningp
)
2826 args_out_of_range (num
, make_number (0));
2827 if (search_regs
.num_regs
<= 0)
2828 error ("No match data, because no search succeeded");
2829 if (n
>= search_regs
.num_regs
2830 || search_regs
.start
[n
] < 0)
2832 return (make_number ((beginningp
) ? search_regs
.start
[n
]
2833 : search_regs
.end
[n
]));
2836 DEFUN ("match-beginning", Fmatch_beginning
, Smatch_beginning
, 1, 1, 0,
2837 doc
: /* Return position of start of text matched by last search.
2838 SUBEXP, a number, specifies which parenthesized expression in the last
2840 Value is nil if SUBEXPth pair didn't match, or there were less than
2842 Zero means the entire text matched by the whole regexp or whole string. */)
2843 (Lisp_Object subexp
)
2845 return match_limit (subexp
, 1);
2848 DEFUN ("match-end", Fmatch_end
, Smatch_end
, 1, 1, 0,
2849 doc
: /* Return position of end of text matched by last search.
2850 SUBEXP, a number, specifies which parenthesized expression in the last
2852 Value is nil if SUBEXPth pair didn't match, or there were less than
2854 Zero means the entire text matched by the whole regexp or whole string. */)
2855 (Lisp_Object subexp
)
2857 return match_limit (subexp
, 0);
2860 DEFUN ("match-data", Fmatch_data
, Smatch_data
, 0, 3, 0,
2861 doc
: /* Return a list containing all info on what the last search matched.
2862 Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.
2863 All the elements are markers or nil (nil if the Nth pair didn't match)
2864 if the last match was on a buffer; integers or nil if a string was matched.
2865 Use `set-match-data' to reinstate the data in this list.
2867 If INTEGERS (the optional first argument) is non-nil, always use
2868 integers \(rather than markers) to represent buffer positions. In
2869 this case, and if the last match was in a buffer, the buffer will get
2870 stored as one additional element at the end of the list.
2872 If REUSE is a list, reuse it as part of the value. If REUSE is long
2873 enough to hold all the values, and if INTEGERS is non-nil, no consing
2876 If optional third arg RESEAT is non-nil, any previous markers on the
2877 REUSE list will be modified to point to nowhere.
2879 Return value is undefined if the last search failed. */)
2880 (Lisp_Object integers
, Lisp_Object reuse
, Lisp_Object reseat
)
2882 Lisp_Object tail
, prev
;
2887 for (tail
= reuse
; CONSP (tail
); tail
= XCDR (tail
))
2888 if (MARKERP (XCAR (tail
)))
2890 unchain_marker (XMARKER (XCAR (tail
)));
2891 XSETCAR (tail
, Qnil
);
2894 if (NILP (last_thing_searched
))
2899 data
= (Lisp_Object
*) alloca ((2 * search_regs
.num_regs
+ 1)
2900 * sizeof (Lisp_Object
));
2903 for (i
= 0; i
< search_regs
.num_regs
; i
++)
2905 int start
= search_regs
.start
[i
];
2908 if (EQ (last_thing_searched
, Qt
)
2909 || ! NILP (integers
))
2911 XSETFASTINT (data
[2 * i
], start
);
2912 XSETFASTINT (data
[2 * i
+ 1], search_regs
.end
[i
]);
2914 else if (BUFFERP (last_thing_searched
))
2916 data
[2 * i
] = Fmake_marker ();
2917 Fset_marker (data
[2 * i
],
2918 make_number (start
),
2919 last_thing_searched
);
2920 data
[2 * i
+ 1] = Fmake_marker ();
2921 Fset_marker (data
[2 * i
+ 1],
2922 make_number (search_regs
.end
[i
]),
2923 last_thing_searched
);
2926 /* last_thing_searched must always be Qt, a buffer, or Qnil. */
2932 data
[2 * i
] = data
[2 * i
+ 1] = Qnil
;
2935 if (BUFFERP (last_thing_searched
) && !NILP (integers
))
2937 data
[len
] = last_thing_searched
;
2941 /* If REUSE is not usable, cons up the values and return them. */
2942 if (! CONSP (reuse
))
2943 return Flist (len
, data
);
2945 /* If REUSE is a list, store as many value elements as will fit
2946 into the elements of REUSE. */
2947 for (i
= 0, tail
= reuse
; CONSP (tail
);
2948 i
++, tail
= XCDR (tail
))
2951 XSETCAR (tail
, data
[i
]);
2953 XSETCAR (tail
, Qnil
);
2957 /* If we couldn't fit all value elements into REUSE,
2958 cons up the rest of them and add them to the end of REUSE. */
2960 XSETCDR (prev
, Flist (len
- i
, data
+ i
));
2965 /* We used to have an internal use variant of `reseat' described as:
2967 If RESEAT is `evaporate', put the markers back on the free list
2968 immediately. No other references to the markers must exist in this
2969 case, so it is used only internally on the unwind stack and
2970 save-match-data from Lisp.
2972 But it was ill-conceived: those supposedly-internal markers get exposed via
2973 the undo-list, so freeing them here is unsafe. */
2975 DEFUN ("set-match-data", Fset_match_data
, Sset_match_data
, 1, 2, 0,
2976 doc
: /* Set internal data on last search match from elements of LIST.
2977 LIST should have been created by calling `match-data' previously.
2979 If optional arg RESEAT is non-nil, make markers on LIST point nowhere. */)
2980 (register Lisp_Object list
, Lisp_Object reseat
)
2983 register Lisp_Object marker
;
2985 if (running_asynch_code
)
2986 save_search_regs ();
2990 /* Unless we find a marker with a buffer or an explicit buffer
2991 in LIST, assume that this match data came from a string. */
2992 last_thing_searched
= Qt
;
2994 /* Allocate registers if they don't already exist. */
2996 int length
= XFASTINT (Flength (list
)) / 2;
2998 if (length
> search_regs
.num_regs
)
3000 if (search_regs
.num_regs
== 0)
3003 = (regoff_t
*) xmalloc (length
* sizeof (regoff_t
));
3005 = (regoff_t
*) xmalloc (length
* sizeof (regoff_t
));
3010 = (regoff_t
*) xrealloc (search_regs
.start
,
3011 length
* sizeof (regoff_t
));
3013 = (regoff_t
*) xrealloc (search_regs
.end
,
3014 length
* sizeof (regoff_t
));
3017 for (i
= search_regs
.num_regs
; i
< length
; i
++)
3018 search_regs
.start
[i
] = -1;
3020 search_regs
.num_regs
= length
;
3023 for (i
= 0; CONSP (list
); i
++)
3025 marker
= XCAR (list
);
3026 if (BUFFERP (marker
))
3028 last_thing_searched
= marker
;
3035 search_regs
.start
[i
] = -1;
3044 if (MARKERP (marker
))
3046 if (XMARKER (marker
)->buffer
== 0)
3047 XSETFASTINT (marker
, 0);
3049 XSETBUFFER (last_thing_searched
, XMARKER (marker
)->buffer
);
3052 CHECK_NUMBER_COERCE_MARKER (marker
);
3053 from
= XINT (marker
);
3055 if (!NILP (reseat
) && MARKERP (m
))
3057 unchain_marker (XMARKER (m
));
3058 XSETCAR (list
, Qnil
);
3061 if ((list
= XCDR (list
), !CONSP (list
)))
3064 m
= marker
= XCAR (list
);
3066 if (MARKERP (marker
) && XMARKER (marker
)->buffer
== 0)
3067 XSETFASTINT (marker
, 0);
3069 CHECK_NUMBER_COERCE_MARKER (marker
);
3070 search_regs
.start
[i
] = from
;
3071 search_regs
.end
[i
] = XINT (marker
);
3073 if (!NILP (reseat
) && MARKERP (m
))
3075 unchain_marker (XMARKER (m
));
3076 XSETCAR (list
, Qnil
);
3082 for (; i
< search_regs
.num_regs
; i
++)
3083 search_regs
.start
[i
] = -1;
3089 /* If non-zero the match data have been saved in saved_search_regs
3090 during the execution of a sentinel or filter. */
3091 static int search_regs_saved
;
3092 static struct re_registers saved_search_regs
;
3093 static Lisp_Object saved_last_thing_searched
;
3095 /* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data
3096 if asynchronous code (filter or sentinel) is running. */
3098 save_search_regs (void)
3100 if (!search_regs_saved
)
3102 saved_search_regs
.num_regs
= search_regs
.num_regs
;
3103 saved_search_regs
.start
= search_regs
.start
;
3104 saved_search_regs
.end
= search_regs
.end
;
3105 saved_last_thing_searched
= last_thing_searched
;
3106 last_thing_searched
= Qnil
;
3107 search_regs
.num_regs
= 0;
3108 search_regs
.start
= 0;
3109 search_regs
.end
= 0;
3111 search_regs_saved
= 1;
3115 /* Called upon exit from filters and sentinels. */
3117 restore_search_regs (void)
3119 if (search_regs_saved
)
3121 if (search_regs
.num_regs
> 0)
3123 xfree (search_regs
.start
);
3124 xfree (search_regs
.end
);
3126 search_regs
.num_regs
= saved_search_regs
.num_regs
;
3127 search_regs
.start
= saved_search_regs
.start
;
3128 search_regs
.end
= saved_search_regs
.end
;
3129 last_thing_searched
= saved_last_thing_searched
;
3130 saved_last_thing_searched
= Qnil
;
3131 search_regs_saved
= 0;
3136 unwind_set_match_data (Lisp_Object list
)
3138 /* It is NOT ALWAYS safe to free (evaporate) the markers immediately. */
3139 return Fset_match_data (list
, Qt
);
3142 /* Called to unwind protect the match data. */
3144 record_unwind_save_match_data (void)
3146 record_unwind_protect (unwind_set_match_data
,
3147 Fmatch_data (Qnil
, Qnil
, Qnil
));
3150 /* Quote a string to inactivate reg-expr chars */
3152 DEFUN ("regexp-quote", Fregexp_quote
, Sregexp_quote
, 1, 1, 0,
3153 doc
: /* Return a regexp string which matches exactly STRING and nothing else. */)
3154 (Lisp_Object string
)
3156 register unsigned char *in
, *out
, *end
;
3157 register unsigned char *temp
;
3158 int backslashes_added
= 0;
3160 CHECK_STRING (string
);
3162 temp
= (unsigned char *) alloca (SBYTES (string
) * 2);
3164 /* Now copy the data into the new string, inserting escapes. */
3166 in
= SDATA (string
);
3167 end
= in
+ SBYTES (string
);
3170 for (; in
!= end
; in
++)
3173 || *in
== '*' || *in
== '.' || *in
== '\\'
3174 || *in
== '?' || *in
== '+'
3175 || *in
== '^' || *in
== '$')
3176 *out
++ = '\\', backslashes_added
++;
3180 return make_specified_string (temp
,
3181 SCHARS (string
) + backslashes_added
,
3183 STRING_MULTIBYTE (string
));
3187 syms_of_search (void)
3191 for (i
= 0; i
< REGEXP_CACHE_SIZE
; ++i
)
3193 searchbufs
[i
].buf
.allocated
= 100;
3194 searchbufs
[i
].buf
.buffer
= (unsigned char *) xmalloc (100);
3195 searchbufs
[i
].buf
.fastmap
= searchbufs
[i
].fastmap
;
3196 searchbufs
[i
].regexp
= Qnil
;
3197 searchbufs
[i
].whitespace_regexp
= Qnil
;
3198 searchbufs
[i
].syntax_table
= Qnil
;
3199 staticpro (&searchbufs
[i
].regexp
);
3200 staticpro (&searchbufs
[i
].whitespace_regexp
);
3201 staticpro (&searchbufs
[i
].syntax_table
);
3202 searchbufs
[i
].next
= (i
== REGEXP_CACHE_SIZE
-1 ? 0 : &searchbufs
[i
+1]);
3204 searchbuf_head
= &searchbufs
[0];
3206 Qsearch_failed
= intern_c_string ("search-failed");
3207 staticpro (&Qsearch_failed
);
3208 Qinvalid_regexp
= intern_c_string ("invalid-regexp");
3209 staticpro (&Qinvalid_regexp
);
3211 Fput (Qsearch_failed
, Qerror_conditions
,
3212 pure_cons (Qsearch_failed
, pure_cons (Qerror
, Qnil
)));
3213 Fput (Qsearch_failed
, Qerror_message
,
3214 make_pure_c_string ("Search failed"));
3216 Fput (Qinvalid_regexp
, Qerror_conditions
,
3217 pure_cons (Qinvalid_regexp
, pure_cons (Qerror
, Qnil
)));
3218 Fput (Qinvalid_regexp
, Qerror_message
,
3219 make_pure_c_string ("Invalid regexp"));
3221 last_thing_searched
= Qnil
;
3222 staticpro (&last_thing_searched
);
3224 saved_last_thing_searched
= Qnil
;
3225 staticpro (&saved_last_thing_searched
);
3227 DEFVAR_LISP ("search-spaces-regexp", &Vsearch_spaces_regexp
,
3228 doc
: /* Regexp to substitute for bunches of spaces in regexp search.
3229 Some commands use this for user-specified regexps.
3230 Spaces that occur inside character classes or repetition operators
3231 or other such regexp constructs are not replaced with this.
3232 A value of nil (which is the normal value) means treat spaces literally. */);
3233 Vsearch_spaces_regexp
= Qnil
;
3235 DEFVAR_LISP ("inhibit-changing-match-data", &Vinhibit_changing_match_data
,
3236 doc
: /* Internal use only.
3237 If non-nil, the primitive searching and matching functions
3238 such as `looking-at', `string-match', `re-search-forward', etc.,
3239 do not set the match data. The proper way to use this variable
3240 is to bind it with `let' around a small expression. */);
3241 Vinhibit_changing_match_data
= Qnil
;
3243 defsubr (&Slooking_at
);
3244 defsubr (&Sposix_looking_at
);
3245 defsubr (&Sstring_match
);
3246 defsubr (&Sposix_string_match
);
3247 defsubr (&Ssearch_forward
);
3248 defsubr (&Ssearch_backward
);
3249 defsubr (&Sword_search_forward
);
3250 defsubr (&Sword_search_backward
);
3251 defsubr (&Sword_search_forward_lax
);
3252 defsubr (&Sword_search_backward_lax
);
3253 defsubr (&Sre_search_forward
);
3254 defsubr (&Sre_search_backward
);
3255 defsubr (&Sposix_search_forward
);
3256 defsubr (&Sposix_search_backward
);
3257 defsubr (&Sreplace_match
);
3258 defsubr (&Smatch_beginning
);
3259 defsubr (&Smatch_end
);
3260 defsubr (&Smatch_data
);
3261 defsubr (&Sset_match_data
);
3262 defsubr (&Sregexp_quote
);
3265 /* arch-tag: a6059d79-0552-4f14-a2cb-d379a4e3c78f
3266 (do not change this comment) */