1 /* String search routines for GNU Emacs.
2 Copyright (C) 1985-1987, 1993-1994, 1997-1999, 2001-2012
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
27 #include "character.h"
29 #include "region-cache.h"
31 #include "blockinput.h"
32 #include "intervals.h"
34 #include <sys/types.h>
37 #define REGEXP_CACHE_SIZE 20
39 /* If the regexp is non-nil, then the buffer contains the compiled form
40 of that regexp, suitable for searching. */
43 struct regexp_cache
*next
;
44 Lisp_Object regexp
, whitespace_regexp
;
45 /* Syntax table for which the regexp applies. We need this because
46 of character classes. If this is t, then the compiled pattern is valid
47 for any syntax-table. */
48 Lisp_Object syntax_table
;
49 struct re_pattern_buffer buf
;
51 /* Nonzero means regexp was compiled to do full POSIX backtracking. */
55 /* The instances of that struct. */
56 static struct regexp_cache searchbufs
[REGEXP_CACHE_SIZE
];
58 /* The head of the linked list; points to the most recently used buffer. */
59 static struct regexp_cache
*searchbuf_head
;
62 /* Every call to re_match, etc., must pass &search_regs as the regs
63 argument unless you can show it is unnecessary (i.e., if re_match
64 is certainly going to be called again before region-around-match
67 Since the registers are now dynamically allocated, we need to make
68 sure not to refer to the Nth register before checking that it has
69 been allocated by checking search_regs.num_regs.
71 The regex code keeps track of whether it has allocated the search
72 buffer using bits in the re_pattern_buffer. This means that whenever
73 you compile a new pattern, it completely forgets whether it has
74 allocated any registers, and will allocate new registers the next
75 time you call a searching or matching function. Therefore, we need
76 to call re_set_registers after compiling a new pattern or after
77 setting the match registers, so that the regex functions will be
78 able to free or re-allocate it properly. */
79 static struct re_registers search_regs
;
81 /* The buffer in which the last search was performed, or
82 Qt if the last search was done in a string;
83 Qnil if no searching has been done yet. */
84 static Lisp_Object last_thing_searched
;
86 /* Error condition signaled when regexp compile_pattern fails. */
87 static Lisp_Object Qinvalid_regexp
;
89 /* Error condition used for failing searches. */
90 static Lisp_Object Qsearch_failed
;
92 static void set_search_regs (EMACS_INT
, EMACS_INT
);
93 static void save_search_regs (void);
94 static EMACS_INT
simple_search (EMACS_INT
, unsigned char *, EMACS_INT
,
95 EMACS_INT
, Lisp_Object
, EMACS_INT
, EMACS_INT
,
96 EMACS_INT
, EMACS_INT
);
97 static EMACS_INT
boyer_moore (EMACS_INT
, unsigned char *, EMACS_INT
,
98 Lisp_Object
, Lisp_Object
, EMACS_INT
,
100 static EMACS_INT
search_buffer (Lisp_Object
, EMACS_INT
, EMACS_INT
,
101 EMACS_INT
, EMACS_INT
, EMACS_INT
, int,
102 Lisp_Object
, Lisp_Object
, int);
103 static void matcher_overflow (void) NO_RETURN
;
106 matcher_overflow (void)
108 error ("Stack overflow in regexp matcher");
111 /* Compile a regexp and signal a Lisp error if anything goes wrong.
112 PATTERN is the pattern to compile.
113 CP is the place to put the result.
114 TRANSLATE is a translation table for ignoring case, or nil for none.
115 POSIX is nonzero if we want full backtracking (POSIX style)
116 for this pattern. 0 means backtrack only enough to get a valid match.
118 The behavior also depends on Vsearch_spaces_regexp. */
121 compile_pattern_1 (struct regexp_cache
*cp
, Lisp_Object pattern
, Lisp_Object translate
, int posix
)
127 cp
->buf
.translate
= (! NILP (translate
) ? translate
: make_number (0));
129 cp
->buf
.multibyte
= STRING_MULTIBYTE (pattern
);
130 cp
->buf
.charset_unibyte
= charset_unibyte
;
131 if (STRINGP (Vsearch_spaces_regexp
))
132 cp
->whitespace_regexp
= Vsearch_spaces_regexp
;
134 cp
->whitespace_regexp
= Qnil
;
136 /* rms: I think BLOCK_INPUT is not needed here any more,
137 because regex.c defines malloc to call xmalloc.
138 Using BLOCK_INPUT here means the debugger won't run if an error occurs.
139 So let's turn it off. */
141 old
= re_set_syntax (RE_SYNTAX_EMACS
142 | (posix
? 0 : RE_NO_POSIX_BACKTRACKING
));
144 if (STRINGP (Vsearch_spaces_regexp
))
145 re_set_whitespace_regexp (SSDATA (Vsearch_spaces_regexp
));
147 re_set_whitespace_regexp (NULL
);
149 val
= (char *) re_compile_pattern (SSDATA (pattern
),
150 SBYTES (pattern
), &cp
->buf
);
152 /* If the compiled pattern hard codes some of the contents of the
153 syntax-table, it can only be reused with *this* syntax table. */
154 cp
->syntax_table
= cp
->buf
.used_syntax
? BVAR (current_buffer
, syntax_table
) : Qt
;
156 re_set_whitespace_regexp (NULL
);
161 xsignal1 (Qinvalid_regexp
, build_string (val
));
163 cp
->regexp
= Fcopy_sequence (pattern
);
166 /* Shrink each compiled regexp buffer in the cache
167 to the size actually used right now.
168 This is called from garbage collection. */
171 shrink_regexp_cache (void)
173 struct regexp_cache
*cp
;
175 for (cp
= searchbuf_head
; cp
!= 0; cp
= cp
->next
)
177 cp
->buf
.allocated
= cp
->buf
.used
;
179 = (unsigned char *) xrealloc (cp
->buf
.buffer
, cp
->buf
.used
);
183 /* Clear the regexp cache w.r.t. a particular syntax table,
184 because it was changed.
185 There is no danger of memory leak here because re_compile_pattern
186 automagically manages the memory in each re_pattern_buffer struct,
187 based on its `allocated' and `buffer' values. */
189 clear_regexp_cache (void)
193 for (i
= 0; i
< REGEXP_CACHE_SIZE
; ++i
)
194 /* It's tempting to compare with the syntax-table we've actually changed,
195 but it's not sufficient because char-table inheritance means that
196 modifying one syntax-table can change others at the same time. */
197 if (!EQ (searchbufs
[i
].syntax_table
, Qt
))
198 searchbufs
[i
].regexp
= Qnil
;
201 /* Compile a regexp if necessary, but first check to see if there's one in
203 PATTERN is the pattern to compile.
204 TRANSLATE is a translation table for ignoring case, or nil for none.
205 REGP is the structure that says where to store the "register"
206 values that will result from matching this pattern.
207 If it is 0, we should compile the pattern not to record any
208 subexpression bounds.
209 POSIX is nonzero if we want full backtracking (POSIX style)
210 for this pattern. 0 means backtrack only enough to get a valid match. */
212 struct re_pattern_buffer
*
213 compile_pattern (Lisp_Object pattern
, struct re_registers
*regp
, Lisp_Object translate
, int posix
, int multibyte
)
215 struct regexp_cache
*cp
, **cpp
;
217 for (cpp
= &searchbuf_head
; ; cpp
= &cp
->next
)
220 /* Entries are initialized to nil, and may be set to nil by
221 compile_pattern_1 if the pattern isn't valid. Don't apply
222 string accessors in those cases. However, compile_pattern_1
223 is only applied to the cache entry we pick here to reuse. So
224 nil should never appear before a non-nil entry. */
225 if (NILP (cp
->regexp
))
227 if (SCHARS (cp
->regexp
) == SCHARS (pattern
)
228 && STRING_MULTIBYTE (cp
->regexp
) == STRING_MULTIBYTE (pattern
)
229 && !NILP (Fstring_equal (cp
->regexp
, pattern
))
230 && EQ (cp
->buf
.translate
, (! NILP (translate
) ? translate
: make_number (0)))
231 && cp
->posix
== posix
232 && (EQ (cp
->syntax_table
, Qt
)
233 || EQ (cp
->syntax_table
, BVAR (current_buffer
, syntax_table
)))
234 && !NILP (Fequal (cp
->whitespace_regexp
, Vsearch_spaces_regexp
))
235 && cp
->buf
.charset_unibyte
== charset_unibyte
)
238 /* If we're at the end of the cache, compile into the nil cell
239 we found, or the last (least recently used) cell with a
244 compile_pattern_1 (cp
, pattern
, translate
, posix
);
249 /* When we get here, cp (aka *cpp) contains the compiled pattern,
250 either because we found it in the cache or because we just compiled it.
251 Move it to the front of the queue to mark it as most recently used. */
253 cp
->next
= searchbuf_head
;
256 /* Advise the searching functions about the space we have allocated
257 for register data. */
259 re_set_registers (&cp
->buf
, regp
, regp
->num_regs
, regp
->start
, regp
->end
);
261 /* The compiled pattern can be used both for multibyte and unibyte
262 target. But, we have to tell which the pattern is used for. */
263 cp
->buf
.target_multibyte
= multibyte
;
270 looking_at_1 (Lisp_Object string
, int posix
)
273 unsigned char *p1
, *p2
;
275 register EMACS_INT i
;
276 struct re_pattern_buffer
*bufp
;
278 if (running_asynch_code
)
281 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
282 XCHAR_TABLE (BVAR (current_buffer
, case_canon_table
))->extras
[2]
283 = BVAR (current_buffer
, case_eqv_table
);
285 CHECK_STRING (string
);
286 bufp
= compile_pattern (string
,
287 (NILP (Vinhibit_changing_match_data
)
288 ? &search_regs
: NULL
),
289 (!NILP (BVAR (current_buffer
, case_fold_search
))
290 ? BVAR (current_buffer
, case_canon_table
) : Qnil
),
292 !NILP (BVAR (current_buffer
, enable_multibyte_characters
)));
295 QUIT
; /* Do a pending quit right away, to avoid paradoxical behavior */
297 /* Get pointers and sizes of the two strings
298 that make up the visible portion of the buffer. */
301 s1
= GPT_BYTE
- BEGV_BYTE
;
303 s2
= ZV_BYTE
- GPT_BYTE
;
307 s2
= ZV_BYTE
- BEGV_BYTE
;
312 s1
= ZV_BYTE
- BEGV_BYTE
;
316 re_match_object
= Qnil
;
318 i
= re_match_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
320 (NILP (Vinhibit_changing_match_data
)
321 ? &search_regs
: NULL
),
322 ZV_BYTE
- BEGV_BYTE
);
328 val
= (0 <= i
? Qt
: Qnil
);
329 if (NILP (Vinhibit_changing_match_data
) && i
>= 0)
330 for (i
= 0; i
< search_regs
.num_regs
; i
++)
331 if (search_regs
.start
[i
] >= 0)
334 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
336 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
339 /* Set last_thing_searched only when match data is changed. */
340 if (NILP (Vinhibit_changing_match_data
))
341 XSETBUFFER (last_thing_searched
, current_buffer
);
346 DEFUN ("looking-at", Flooking_at
, Slooking_at
, 1, 1, 0,
347 doc
: /* Return t if text after point matches regular expression REGEXP.
348 This function modifies the match data that `match-beginning',
349 `match-end' and `match-data' access; save and restore the match
350 data if you want to preserve them. */)
353 return looking_at_1 (regexp
, 0);
356 DEFUN ("posix-looking-at", Fposix_looking_at
, Sposix_looking_at
, 1, 1, 0,
357 doc
: /* Return t if text after point matches regular expression REGEXP.
358 Find the longest match, in accord with Posix regular expression rules.
359 This function modifies the match data that `match-beginning',
360 `match-end' and `match-data' access; save and restore the match
361 data if you want to preserve them. */)
364 return looking_at_1 (regexp
, 1);
368 string_match_1 (Lisp_Object regexp
, Lisp_Object string
, Lisp_Object start
, int posix
)
371 struct re_pattern_buffer
*bufp
;
372 EMACS_INT pos
, pos_byte
;
375 if (running_asynch_code
)
378 CHECK_STRING (regexp
);
379 CHECK_STRING (string
);
382 pos
= 0, pos_byte
= 0;
385 EMACS_INT len
= SCHARS (string
);
387 CHECK_NUMBER (start
);
389 if (pos
< 0 && -pos
<= len
)
391 else if (0 > pos
|| pos
> len
)
392 args_out_of_range (string
, start
);
393 pos_byte
= string_char_to_byte (string
, pos
);
396 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
397 XCHAR_TABLE (BVAR (current_buffer
, case_canon_table
))->extras
[2]
398 = BVAR (current_buffer
, case_eqv_table
);
400 bufp
= compile_pattern (regexp
,
401 (NILP (Vinhibit_changing_match_data
)
402 ? &search_regs
: NULL
),
403 (!NILP (BVAR (current_buffer
, case_fold_search
))
404 ? BVAR (current_buffer
, case_canon_table
) : Qnil
),
406 STRING_MULTIBYTE (string
));
408 re_match_object
= string
;
410 val
= re_search (bufp
, SSDATA (string
),
411 SBYTES (string
), pos_byte
,
412 SBYTES (string
) - pos_byte
,
413 (NILP (Vinhibit_changing_match_data
)
414 ? &search_regs
: NULL
));
417 /* Set last_thing_searched only when match data is changed. */
418 if (NILP (Vinhibit_changing_match_data
))
419 last_thing_searched
= Qt
;
423 if (val
< 0) return Qnil
;
425 if (NILP (Vinhibit_changing_match_data
))
426 for (i
= 0; i
< search_regs
.num_regs
; i
++)
427 if (search_regs
.start
[i
] >= 0)
430 = string_byte_to_char (string
, search_regs
.start
[i
]);
432 = string_byte_to_char (string
, search_regs
.end
[i
]);
435 return make_number (string_byte_to_char (string
, val
));
438 DEFUN ("string-match", Fstring_match
, Sstring_match
, 2, 3, 0,
439 doc
: /* Return index of start of first match for REGEXP in STRING, or nil.
440 Matching ignores case if `case-fold-search' is non-nil.
441 If third arg START is non-nil, start search at that index in STRING.
442 For index of first char beyond the match, do (match-end 0).
443 `match-end' and `match-beginning' also give indices of substrings
444 matched by parenthesis constructs in the pattern.
446 You can use the function `match-string' to extract the substrings
447 matched by the parenthesis constructions in REGEXP. */)
448 (Lisp_Object regexp
, Lisp_Object string
, Lisp_Object start
)
450 return string_match_1 (regexp
, string
, start
, 0);
453 DEFUN ("posix-string-match", Fposix_string_match
, Sposix_string_match
, 2, 3, 0,
454 doc
: /* Return index of start of first match for REGEXP in STRING, or nil.
455 Find the longest match, in accord with Posix regular expression rules.
456 Case is ignored if `case-fold-search' is non-nil in the current buffer.
457 If third arg START is non-nil, start search at that index in STRING.
458 For index of first char beyond the match, do (match-end 0).
459 `match-end' and `match-beginning' also give indices of substrings
460 matched by parenthesis constructs in the pattern. */)
461 (Lisp_Object regexp
, Lisp_Object string
, Lisp_Object start
)
463 return string_match_1 (regexp
, string
, start
, 1);
466 /* Match REGEXP against STRING, searching all of STRING,
467 and return the index of the match, or negative on failure.
468 This does not clobber the match data. */
471 fast_string_match (Lisp_Object regexp
, Lisp_Object string
)
474 struct re_pattern_buffer
*bufp
;
476 bufp
= compile_pattern (regexp
, 0, Qnil
,
477 0, STRING_MULTIBYTE (string
));
479 re_match_object
= string
;
481 val
= re_search (bufp
, SSDATA (string
),
488 /* Match REGEXP against STRING, searching all of STRING ignoring case,
489 and return the index of the match, or negative on failure.
490 This does not clobber the match data.
491 We assume that STRING contains single-byte characters. */
494 fast_c_string_match_ignore_case (Lisp_Object regexp
, const char *string
)
497 struct re_pattern_buffer
*bufp
;
498 size_t len
= strlen (string
);
500 regexp
= string_make_unibyte (regexp
);
501 re_match_object
= Qt
;
502 bufp
= compile_pattern (regexp
, 0,
503 Vascii_canon_table
, 0,
506 val
= re_search (bufp
, string
, len
, 0, len
, 0);
511 /* Like fast_string_match but ignore case. */
514 fast_string_match_ignore_case (Lisp_Object regexp
, Lisp_Object string
)
517 struct re_pattern_buffer
*bufp
;
519 bufp
= compile_pattern (regexp
, 0, Vascii_canon_table
,
520 0, STRING_MULTIBYTE (string
));
522 re_match_object
= string
;
524 val
= re_search (bufp
, SSDATA (string
),
531 /* Match REGEXP against the characters after POS to LIMIT, and return
532 the number of matched characters. If STRING is non-nil, match
533 against the characters in it. In that case, POS and LIMIT are
534 indices into the string. This function doesn't modify the match
538 fast_looking_at (Lisp_Object regexp
, EMACS_INT pos
, EMACS_INT pos_byte
, EMACS_INT limit
, EMACS_INT limit_byte
, Lisp_Object string
)
541 struct re_pattern_buffer
*buf
;
542 unsigned char *p1
, *p2
;
546 if (STRINGP (string
))
549 pos_byte
= string_char_to_byte (string
, pos
);
551 limit_byte
= string_char_to_byte (string
, limit
);
555 s2
= SBYTES (string
);
556 re_match_object
= string
;
557 multibyte
= STRING_MULTIBYTE (string
);
562 pos_byte
= CHAR_TO_BYTE (pos
);
564 limit_byte
= CHAR_TO_BYTE (limit
);
565 pos_byte
-= BEGV_BYTE
;
566 limit_byte
-= BEGV_BYTE
;
568 s1
= GPT_BYTE
- BEGV_BYTE
;
570 s2
= ZV_BYTE
- GPT_BYTE
;
574 s2
= ZV_BYTE
- BEGV_BYTE
;
579 s1
= ZV_BYTE
- BEGV_BYTE
;
582 re_match_object
= Qnil
;
583 multibyte
= ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
586 buf
= compile_pattern (regexp
, 0, Qnil
, 0, multibyte
);
588 len
= re_match_2 (buf
, (char *) p1
, s1
, (char *) p2
, s2
,
589 pos_byte
, NULL
, limit_byte
);
596 /* The newline cache: remembering which sections of text have no newlines. */
598 /* If the user has requested newline caching, make sure it's on.
599 Otherwise, make sure it's off.
600 This is our cheezy way of associating an action with the change of
601 state of a buffer-local variable. */
603 newline_cache_on_off (struct buffer
*buf
)
605 if (NILP (BVAR (buf
, cache_long_line_scans
)))
607 /* It should be off. */
608 if (buf
->newline_cache
)
610 free_region_cache (buf
->newline_cache
);
611 buf
->newline_cache
= 0;
616 /* It should be on. */
617 if (buf
->newline_cache
== 0)
618 buf
->newline_cache
= new_region_cache ();
623 /* Search for COUNT instances of the character TARGET between START and END.
625 If COUNT is positive, search forwards; END must be >= START.
626 If COUNT is negative, search backwards for the -COUNTth instance;
627 END must be <= START.
628 If COUNT is zero, do anything you please; run rogue, for all I care.
630 If END is zero, use BEGV or ZV instead, as appropriate for the
631 direction indicated by COUNT.
633 If we find COUNT instances, set *SHORTAGE to zero, and return the
634 position past the COUNTth match. Note that for reverse motion
635 this is not the same as the usual convention for Emacs motion commands.
637 If we don't find COUNT instances before reaching END, set *SHORTAGE
638 to the number of TARGETs left unfound, and return END.
640 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
641 except when inside redisplay. */
644 scan_buffer (register int target
, EMACS_INT start
, EMACS_INT end
,
645 EMACS_INT count
, EMACS_INT
*shortage
, int allow_quit
)
647 struct region_cache
*newline_cache
;
658 if (! end
) end
= BEGV
;
661 newline_cache_on_off (current_buffer
);
662 newline_cache
= current_buffer
->newline_cache
;
667 immediate_quit
= allow_quit
;
672 /* Our innermost scanning loop is very simple; it doesn't know
673 about gaps, buffer ends, or the newline cache. ceiling is
674 the position of the last character before the next such
675 obstacle --- the last character the dumb search loop should
677 EMACS_INT ceiling_byte
= CHAR_TO_BYTE (end
) - 1;
678 EMACS_INT start_byte
= CHAR_TO_BYTE (start
);
681 /* If we're looking for a newline, consult the newline cache
682 to see where we can avoid some scanning. */
683 if (target
== '\n' && newline_cache
)
685 ptrdiff_t next_change
;
687 while (region_cache_forward
688 (current_buffer
, newline_cache
, start_byte
, &next_change
))
689 start_byte
= next_change
;
690 immediate_quit
= allow_quit
;
692 /* START should never be after END. */
693 if (start_byte
> ceiling_byte
)
694 start_byte
= ceiling_byte
;
696 /* Now the text after start is an unknown region, and
697 next_change is the position of the next known region. */
698 ceiling_byte
= min (next_change
- 1, ceiling_byte
);
701 /* The dumb loop can only scan text stored in contiguous
702 bytes. BUFFER_CEILING_OF returns the last character
703 position that is contiguous, so the ceiling is the
704 position after that. */
705 tem
= BUFFER_CEILING_OF (start_byte
);
706 ceiling_byte
= min (tem
, ceiling_byte
);
709 /* The termination address of the dumb loop. */
710 register unsigned char *ceiling_addr
711 = BYTE_POS_ADDR (ceiling_byte
) + 1;
712 register unsigned char *cursor
713 = BYTE_POS_ADDR (start_byte
);
714 unsigned char *base
= cursor
;
716 while (cursor
< ceiling_addr
)
718 unsigned char *scan_start
= cursor
;
721 while (*cursor
!= target
&& ++cursor
< ceiling_addr
)
724 /* If we're looking for newlines, cache the fact that
725 the region from start to cursor is free of them. */
726 if (target
== '\n' && newline_cache
)
727 know_region_cache (current_buffer
, newline_cache
,
728 BYTE_TO_CHAR (start_byte
+ scan_start
- base
),
729 BYTE_TO_CHAR (start_byte
+ cursor
- base
));
731 /* Did we find the target character? */
732 if (cursor
< ceiling_addr
)
737 return BYTE_TO_CHAR (start_byte
+ cursor
- base
+ 1);
743 start
= BYTE_TO_CHAR (start_byte
+ cursor
- base
);
749 /* The last character to check before the next obstacle. */
750 EMACS_INT ceiling_byte
= CHAR_TO_BYTE (end
);
751 EMACS_INT start_byte
= CHAR_TO_BYTE (start
);
754 /* Consult the newline cache, if appropriate. */
755 if (target
== '\n' && newline_cache
)
757 ptrdiff_t next_change
;
759 while (region_cache_backward
760 (current_buffer
, newline_cache
, start_byte
, &next_change
))
761 start_byte
= next_change
;
762 immediate_quit
= allow_quit
;
764 /* Start should never be at or before end. */
765 if (start_byte
<= ceiling_byte
)
766 start_byte
= ceiling_byte
+ 1;
768 /* Now the text before start is an unknown region, and
769 next_change is the position of the next known region. */
770 ceiling_byte
= max (next_change
, ceiling_byte
);
773 /* Stop scanning before the gap. */
774 tem
= BUFFER_FLOOR_OF (start_byte
- 1);
775 ceiling_byte
= max (tem
, ceiling_byte
);
778 /* The termination address of the dumb loop. */
779 register unsigned char *ceiling_addr
= BYTE_POS_ADDR (ceiling_byte
);
780 register unsigned char *cursor
= BYTE_POS_ADDR (start_byte
- 1);
781 unsigned char *base
= cursor
;
783 while (cursor
>= ceiling_addr
)
785 unsigned char *scan_start
= cursor
;
787 while (*cursor
!= target
&& --cursor
>= ceiling_addr
)
790 /* If we're looking for newlines, cache the fact that
791 the region from after the cursor to start is free of them. */
792 if (target
== '\n' && newline_cache
)
793 know_region_cache (current_buffer
, newline_cache
,
794 BYTE_TO_CHAR (start_byte
+ cursor
- base
),
795 BYTE_TO_CHAR (start_byte
+ scan_start
- base
));
797 /* Did we find the target character? */
798 if (cursor
>= ceiling_addr
)
803 return BYTE_TO_CHAR (start_byte
+ cursor
- base
);
809 start
= BYTE_TO_CHAR (start_byte
+ cursor
- base
);
815 *shortage
= count
* direction
;
819 /* Search for COUNT instances of a line boundary, which means either a
820 newline or (if selective display enabled) a carriage return.
821 Start at START. If COUNT is negative, search backwards.
823 We report the resulting position by calling TEMP_SET_PT_BOTH.
825 If we find COUNT instances. we position after (always after,
826 even if scanning backwards) the COUNTth match, and return 0.
828 If we don't find COUNT instances before reaching the end of the
829 buffer (or the beginning, if scanning backwards), we return
830 the number of line boundaries left unfound, and position at
831 the limit we bumped up against.
833 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
834 except in special cases. */
837 scan_newline (EMACS_INT start
, EMACS_INT start_byte
,
838 EMACS_INT limit
, EMACS_INT limit_byte
,
839 register EMACS_INT count
, int allow_quit
)
841 int direction
= ((count
> 0) ? 1 : -1);
843 register unsigned char *cursor
;
847 register unsigned char *ceiling_addr
;
849 int old_immediate_quit
= immediate_quit
;
851 /* The code that follows is like scan_buffer
852 but checks for either newline or carriage return. */
857 start_byte
= CHAR_TO_BYTE (start
);
861 while (start_byte
< limit_byte
)
863 ceiling
= BUFFER_CEILING_OF (start_byte
);
864 ceiling
= min (limit_byte
- 1, ceiling
);
865 ceiling_addr
= BYTE_POS_ADDR (ceiling
) + 1;
866 base
= (cursor
= BYTE_POS_ADDR (start_byte
));
869 while (*cursor
!= '\n' && ++cursor
!= ceiling_addr
)
872 if (cursor
!= ceiling_addr
)
876 immediate_quit
= old_immediate_quit
;
877 start_byte
= start_byte
+ cursor
- base
+ 1;
878 start
= BYTE_TO_CHAR (start_byte
);
879 TEMP_SET_PT_BOTH (start
, start_byte
);
883 if (++cursor
== ceiling_addr
)
889 start_byte
+= cursor
- base
;
894 while (start_byte
> limit_byte
)
896 ceiling
= BUFFER_FLOOR_OF (start_byte
- 1);
897 ceiling
= max (limit_byte
, ceiling
);
898 ceiling_addr
= BYTE_POS_ADDR (ceiling
) - 1;
899 base
= (cursor
= BYTE_POS_ADDR (start_byte
- 1) + 1);
902 while (--cursor
!= ceiling_addr
&& *cursor
!= '\n')
905 if (cursor
!= ceiling_addr
)
909 immediate_quit
= old_immediate_quit
;
910 /* Return the position AFTER the match we found. */
911 start_byte
= start_byte
+ cursor
- base
+ 1;
912 start
= BYTE_TO_CHAR (start_byte
);
913 TEMP_SET_PT_BOTH (start
, start_byte
);
920 /* Here we add 1 to compensate for the last decrement
921 of CURSOR, which took it past the valid range. */
922 start_byte
+= cursor
- base
+ 1;
926 TEMP_SET_PT_BOTH (limit
, limit_byte
);
927 immediate_quit
= old_immediate_quit
;
929 return count
* direction
;
933 find_next_newline_no_quit (EMACS_INT from
, EMACS_INT cnt
)
935 return scan_buffer ('\n', from
, 0, cnt
, (EMACS_INT
*) 0, 0);
938 /* Like find_next_newline, but returns position before the newline,
939 not after, and only search up to TO. This isn't just
940 find_next_newline (...)-1, because you might hit TO. */
943 find_before_next_newline (EMACS_INT from
, EMACS_INT to
, EMACS_INT cnt
)
946 EMACS_INT pos
= scan_buffer ('\n', from
, to
, cnt
, &shortage
, 1);
954 /* Subroutines of Lisp buffer search functions. */
957 search_command (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
,
958 Lisp_Object count
, int direction
, int RE
, int posix
)
960 register EMACS_INT np
;
961 EMACS_INT lim
, lim_byte
;
962 EMACS_INT n
= direction
;
966 CHECK_NUMBER (count
);
970 CHECK_STRING (string
);
974 lim
= ZV
, lim_byte
= ZV_BYTE
;
976 lim
= BEGV
, lim_byte
= BEGV_BYTE
;
980 CHECK_NUMBER_COERCE_MARKER (bound
);
982 if (n
> 0 ? lim
< PT
: lim
> PT
)
983 error ("Invalid search bound (wrong side of point)");
985 lim
= ZV
, lim_byte
= ZV_BYTE
;
987 lim
= BEGV
, lim_byte
= BEGV_BYTE
;
989 lim_byte
= CHAR_TO_BYTE (lim
);
992 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
993 XCHAR_TABLE (BVAR (current_buffer
, case_canon_table
))->extras
[2]
994 = BVAR (current_buffer
, case_eqv_table
);
996 np
= search_buffer (string
, PT
, PT_BYTE
, lim
, lim_byte
, n
, RE
,
997 (!NILP (BVAR (current_buffer
, case_fold_search
))
998 ? BVAR (current_buffer
, case_canon_table
)
1000 (!NILP (BVAR (current_buffer
, case_fold_search
))
1001 ? BVAR (current_buffer
, case_eqv_table
)
1007 xsignal1 (Qsearch_failed
, string
);
1009 if (!EQ (noerror
, Qt
))
1011 if (lim
< BEGV
|| lim
> ZV
)
1013 SET_PT_BOTH (lim
, lim_byte
);
1015 #if 0 /* This would be clean, but maybe programs depend on
1016 a value of nil here. */
1024 if (np
< BEGV
|| np
> ZV
)
1029 return make_number (np
);
1032 /* Return 1 if REGEXP it matches just one constant string. */
1035 trivial_regexp_p (Lisp_Object regexp
)
1037 EMACS_INT len
= SBYTES (regexp
);
1038 unsigned char *s
= SDATA (regexp
);
1043 case '.': case '*': case '+': case '?': case '[': case '^': case '$':
1050 case '|': case '(': case ')': case '`': case '\'': case 'b':
1051 case 'B': case '<': case '>': case 'w': case 'W': case 's':
1052 case 'S': case '=': case '{': case '}': case '_':
1053 case 'c': case 'C': /* for categoryspec and notcategoryspec */
1054 case '1': case '2': case '3': case '4': case '5':
1055 case '6': case '7': case '8': case '9':
1063 /* Search for the n'th occurrence of STRING in the current buffer,
1064 starting at position POS and stopping at position LIM,
1065 treating STRING as a literal string if RE is false or as
1066 a regular expression if RE is true.
1068 If N is positive, searching is forward and LIM must be greater than POS.
1069 If N is negative, searching is backward and LIM must be less than POS.
1071 Returns -x if x occurrences remain to be found (x > 0),
1072 or else the position at the beginning of the Nth occurrence
1073 (if searching backward) or the end (if searching forward).
1075 POSIX is nonzero if we want full backtracking (POSIX style)
1076 for this pattern. 0 means backtrack only enough to get a valid match. */
1078 #define TRANSLATE(out, trt, d) \
1084 temp = Faref (trt, make_number (d)); \
1085 if (INTEGERP (temp)) \
1086 out = XINT (temp); \
1095 /* Only used in search_buffer, to record the end position of the match
1096 when searching regexps and SEARCH_REGS should not be changed
1097 (i.e. Vinhibit_changing_match_data is non-nil). */
1098 static struct re_registers search_regs_1
;
1101 search_buffer (Lisp_Object string
, EMACS_INT pos
, EMACS_INT pos_byte
,
1102 EMACS_INT lim
, EMACS_INT lim_byte
, EMACS_INT n
,
1103 int RE
, Lisp_Object trt
, Lisp_Object inverse_trt
, int posix
)
1105 EMACS_INT len
= SCHARS (string
);
1106 EMACS_INT len_byte
= SBYTES (string
);
1109 if (running_asynch_code
)
1110 save_search_regs ();
1112 /* Searching 0 times means don't move. */
1113 /* Null string is found at starting position. */
1114 if (len
== 0 || n
== 0)
1116 set_search_regs (pos_byte
, 0);
1120 if (RE
&& !(trivial_regexp_p (string
) && NILP (Vsearch_spaces_regexp
)))
1122 unsigned char *p1
, *p2
;
1124 struct re_pattern_buffer
*bufp
;
1126 bufp
= compile_pattern (string
,
1127 (NILP (Vinhibit_changing_match_data
)
1128 ? &search_regs
: &search_regs_1
),
1130 !NILP (BVAR (current_buffer
, enable_multibyte_characters
)));
1132 immediate_quit
= 1; /* Quit immediately if user types ^G,
1133 because letting this function finish
1134 can take too long. */
1135 QUIT
; /* Do a pending quit right away,
1136 to avoid paradoxical behavior */
1137 /* Get pointers and sizes of the two strings
1138 that make up the visible portion of the buffer. */
1141 s1
= GPT_BYTE
- BEGV_BYTE
;
1143 s2
= ZV_BYTE
- GPT_BYTE
;
1147 s2
= ZV_BYTE
- BEGV_BYTE
;
1152 s1
= ZV_BYTE
- BEGV_BYTE
;
1155 re_match_object
= Qnil
;
1160 val
= re_search_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
1161 pos_byte
- BEGV_BYTE
, lim_byte
- pos_byte
,
1162 (NILP (Vinhibit_changing_match_data
)
1163 ? &search_regs
: &search_regs_1
),
1164 /* Don't allow match past current point */
1165 pos_byte
- BEGV_BYTE
);
1168 matcher_overflow ();
1172 if (NILP (Vinhibit_changing_match_data
))
1174 pos_byte
= search_regs
.start
[0] + BEGV_BYTE
;
1175 for (i
= 0; i
< search_regs
.num_regs
; i
++)
1176 if (search_regs
.start
[i
] >= 0)
1178 search_regs
.start
[i
]
1179 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
1181 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
1183 XSETBUFFER (last_thing_searched
, current_buffer
);
1184 /* Set pos to the new position. */
1185 pos
= search_regs
.start
[0];
1189 pos_byte
= search_regs_1
.start
[0] + BEGV_BYTE
;
1190 /* Set pos to the new position. */
1191 pos
= BYTE_TO_CHAR (search_regs_1
.start
[0] + BEGV_BYTE
);
1204 val
= re_search_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
1205 pos_byte
- BEGV_BYTE
, lim_byte
- pos_byte
,
1206 (NILP (Vinhibit_changing_match_data
)
1207 ? &search_regs
: &search_regs_1
),
1208 lim_byte
- BEGV_BYTE
);
1211 matcher_overflow ();
1215 if (NILP (Vinhibit_changing_match_data
))
1217 pos_byte
= search_regs
.end
[0] + BEGV_BYTE
;
1218 for (i
= 0; i
< search_regs
.num_regs
; i
++)
1219 if (search_regs
.start
[i
] >= 0)
1221 search_regs
.start
[i
]
1222 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
1224 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
1226 XSETBUFFER (last_thing_searched
, current_buffer
);
1227 pos
= search_regs
.end
[0];
1231 pos_byte
= search_regs_1
.end
[0] + BEGV_BYTE
;
1232 pos
= BYTE_TO_CHAR (search_regs_1
.end
[0] + BEGV_BYTE
);
1245 else /* non-RE case */
1247 unsigned char *raw_pattern
, *pat
;
1248 EMACS_INT raw_pattern_size
;
1249 EMACS_INT raw_pattern_size_byte
;
1250 unsigned char *patbuf
;
1251 int multibyte
= !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
1252 unsigned char *base_pat
;
1253 /* Set to positive if we find a non-ASCII char that need
1254 translation. Otherwise set to zero later. */
1256 int boyer_moore_ok
= 1;
1258 /* MULTIBYTE says whether the text to be searched is multibyte.
1259 We must convert PATTERN to match that, or we will not really
1260 find things right. */
1262 if (multibyte
== STRING_MULTIBYTE (string
))
1264 raw_pattern
= SDATA (string
);
1265 raw_pattern_size
= SCHARS (string
);
1266 raw_pattern_size_byte
= SBYTES (string
);
1270 raw_pattern_size
= SCHARS (string
);
1271 raw_pattern_size_byte
1272 = count_size_as_multibyte (SDATA (string
),
1274 raw_pattern
= (unsigned char *) alloca (raw_pattern_size_byte
+ 1);
1275 copy_text (SDATA (string
), raw_pattern
,
1276 SCHARS (string
), 0, 1);
1280 /* Converting multibyte to single-byte.
1282 ??? Perhaps this conversion should be done in a special way
1283 by subtracting nonascii-insert-offset from each non-ASCII char,
1284 so that only the multibyte chars which really correspond to
1285 the chosen single-byte character set can possibly match. */
1286 raw_pattern_size
= SCHARS (string
);
1287 raw_pattern_size_byte
= SCHARS (string
);
1288 raw_pattern
= (unsigned char *) alloca (raw_pattern_size
+ 1);
1289 copy_text (SDATA (string
), raw_pattern
,
1290 SBYTES (string
), 1, 0);
1293 /* Copy and optionally translate the pattern. */
1294 len
= raw_pattern_size
;
1295 len_byte
= raw_pattern_size_byte
;
1296 patbuf
= (unsigned char *) alloca (len
* MAX_MULTIBYTE_LENGTH
);
1298 base_pat
= raw_pattern
;
1301 /* Fill patbuf by translated characters in STRING while
1302 checking if we can use boyer-moore search. If TRT is
1303 non-nil, we can use boyer-moore search only if TRT can be
1304 represented by the byte array of 256 elements. For that,
1305 all non-ASCII case-equivalents of all case-sensitive
1306 characters in STRING must belong to the same charset and
1311 unsigned char str_base
[MAX_MULTIBYTE_LENGTH
], *str
;
1312 int c
, translated
, inverse
;
1313 int in_charlen
, charlen
;
1315 /* If we got here and the RE flag is set, it's because we're
1316 dealing with a regexp known to be trivial, so the backslash
1317 just quotes the next character. */
1318 if (RE
&& *base_pat
== '\\')
1326 c
= STRING_CHAR_AND_LENGTH (base_pat
, in_charlen
);
1331 charlen
= in_charlen
;
1335 /* Translate the character. */
1336 TRANSLATE (translated
, trt
, c
);
1337 charlen
= CHAR_STRING (translated
, str_base
);
1340 /* Check if C has any other case-equivalents. */
1341 TRANSLATE (inverse
, inverse_trt
, c
);
1342 /* If so, check if we can use boyer-moore. */
1343 if (c
!= inverse
&& boyer_moore_ok
)
1345 /* Check if all equivalents belong to the same
1346 group of characters. Note that the check of C
1347 itself is done by the last iteration. */
1348 int this_char_base
= -1;
1350 while (boyer_moore_ok
)
1352 if (ASCII_BYTE_P (inverse
))
1354 if (this_char_base
> 0)
1359 else if (CHAR_BYTE8_P (inverse
))
1360 /* Boyer-moore search can't handle a
1361 translation of an eight-bit
1364 else if (this_char_base
< 0)
1366 this_char_base
= inverse
& ~0x3F;
1368 char_base
= this_char_base
;
1369 else if (this_char_base
!= char_base
)
1372 else if ((inverse
& ~0x3F) != this_char_base
)
1376 TRANSLATE (inverse
, inverse_trt
, inverse
);
1381 /* Store this character into the translated pattern. */
1382 memcpy (pat
, str
, charlen
);
1384 base_pat
+= in_charlen
;
1385 len_byte
-= in_charlen
;
1388 /* If char_base is still negative we didn't find any translated
1389 non-ASCII characters. */
1395 /* Unibyte buffer. */
1401 /* If we got here and the RE flag is set, it's because we're
1402 dealing with a regexp known to be trivial, so the backslash
1403 just quotes the next character. */
1404 if (RE
&& *base_pat
== '\\')
1411 TRANSLATE (translated
, trt
, c
);
1412 *pat
++ = translated
;
1416 len_byte
= pat
- patbuf
;
1417 pat
= base_pat
= patbuf
;
1420 return boyer_moore (n
, pat
, len_byte
, trt
, inverse_trt
,
1424 return simple_search (n
, pat
, raw_pattern_size
, len_byte
, trt
,
1425 pos
, pos_byte
, lim
, lim_byte
);
1429 /* Do a simple string search N times for the string PAT,
1430 whose length is LEN/LEN_BYTE,
1431 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1432 TRT is the translation table.
1434 Return the character position where the match is found.
1435 Otherwise, if M matches remained to be found, return -M.
1437 This kind of search works regardless of what is in PAT and
1438 regardless of what is in TRT. It is used in cases where
1439 boyer_moore cannot work. */
1442 simple_search (EMACS_INT n
, unsigned char *pat
,
1443 EMACS_INT len
, EMACS_INT len_byte
, Lisp_Object trt
,
1444 EMACS_INT pos
, EMACS_INT pos_byte
,
1445 EMACS_INT lim
, EMACS_INT lim_byte
)
1447 int multibyte
= ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
1448 int forward
= n
> 0;
1449 /* Number of buffer bytes matched. Note that this may be different
1450 from len_byte in a multibyte buffer. */
1451 EMACS_INT match_byte
;
1453 if (lim
> pos
&& multibyte
)
1458 /* Try matching at position POS. */
1459 EMACS_INT this_pos
= pos
;
1460 EMACS_INT this_pos_byte
= pos_byte
;
1461 EMACS_INT this_len
= len
;
1462 unsigned char *p
= pat
;
1463 if (pos
+ len
> lim
|| pos_byte
+ len_byte
> lim_byte
)
1466 while (this_len
> 0)
1468 int charlen
, buf_charlen
;
1471 pat_ch
= STRING_CHAR_AND_LENGTH (p
, charlen
);
1472 buf_ch
= STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte
),
1474 TRANSLATE (buf_ch
, trt
, buf_ch
);
1476 if (buf_ch
!= pat_ch
)
1482 this_pos_byte
+= buf_charlen
;
1488 match_byte
= this_pos_byte
- pos_byte
;
1490 pos_byte
+= match_byte
;
1494 INC_BOTH (pos
, pos_byte
);
1504 /* Try matching at position POS. */
1505 EMACS_INT this_pos
= pos
;
1506 EMACS_INT this_len
= len
;
1507 unsigned char *p
= pat
;
1509 if (pos
+ len
> lim
)
1512 while (this_len
> 0)
1515 int buf_ch
= FETCH_BYTE (this_pos
);
1516 TRANSLATE (buf_ch
, trt
, buf_ch
);
1518 if (buf_ch
!= pat_ch
)
1537 /* Backwards search. */
1538 else if (lim
< pos
&& multibyte
)
1543 /* Try matching at position POS. */
1544 EMACS_INT this_pos
= pos
;
1545 EMACS_INT this_pos_byte
= pos_byte
;
1546 EMACS_INT this_len
= len
;
1547 const unsigned char *p
= pat
+ len_byte
;
1549 if (this_pos
- len
< lim
|| (pos_byte
- len_byte
) < lim_byte
)
1552 while (this_len
> 0)
1556 DEC_BOTH (this_pos
, this_pos_byte
);
1557 PREV_CHAR_BOUNDARY (p
, pat
);
1558 pat_ch
= STRING_CHAR (p
);
1559 buf_ch
= STRING_CHAR (BYTE_POS_ADDR (this_pos_byte
));
1560 TRANSLATE (buf_ch
, trt
, buf_ch
);
1562 if (buf_ch
!= pat_ch
)
1570 match_byte
= pos_byte
- this_pos_byte
;
1572 pos_byte
= this_pos_byte
;
1576 DEC_BOTH (pos
, pos_byte
);
1586 /* Try matching at position POS. */
1587 EMACS_INT this_pos
= pos
- len
;
1588 EMACS_INT this_len
= len
;
1589 unsigned char *p
= pat
;
1594 while (this_len
> 0)
1597 int buf_ch
= FETCH_BYTE (this_pos
);
1598 TRANSLATE (buf_ch
, trt
, buf_ch
);
1600 if (buf_ch
!= pat_ch
)
1623 set_search_regs ((multibyte
? pos_byte
: pos
) - match_byte
, match_byte
);
1625 set_search_regs (multibyte
? pos_byte
: pos
, match_byte
);
1635 /* Do Boyer-Moore search N times for the string BASE_PAT,
1636 whose length is LEN_BYTE,
1637 from buffer position POS_BYTE until LIM_BYTE.
1638 DIRECTION says which direction we search in.
1639 TRT and INVERSE_TRT are translation tables.
1640 Characters in PAT are already translated by TRT.
1642 This kind of search works if all the characters in BASE_PAT that
1643 have nontrivial translation are the same aside from the last byte.
1644 This makes it possible to translate just the last byte of a
1645 character, and do so after just a simple test of the context.
1646 CHAR_BASE is nonzero if there is such a non-ASCII character.
1648 If that criterion is not satisfied, do not call this function. */
1651 boyer_moore (EMACS_INT n
, unsigned char *base_pat
,
1653 Lisp_Object trt
, Lisp_Object inverse_trt
,
1654 EMACS_INT pos_byte
, EMACS_INT lim_byte
,
1657 int direction
= ((n
> 0) ? 1 : -1);
1658 register EMACS_INT dirlen
;
1660 int stride_for_teases
= 0;
1662 register unsigned char *cursor
, *p_limit
;
1663 register EMACS_INT i
;
1665 unsigned char *pat
, *pat_end
;
1666 int multibyte
= ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
1668 unsigned char simple_translate
[0400];
1669 /* These are set to the preceding bytes of a byte to be translated
1670 if char_base is nonzero. As the maximum byte length of a
1671 multibyte character is 5, we have to check at most four previous
1673 int translate_prev_byte1
= 0;
1674 int translate_prev_byte2
= 0;
1675 int translate_prev_byte3
= 0;
1677 /* The general approach is that we are going to maintain that we know
1678 the first (closest to the present position, in whatever direction
1679 we're searching) character that could possibly be the last
1680 (furthest from present position) character of a valid match. We
1681 advance the state of our knowledge by looking at that character
1682 and seeing whether it indeed matches the last character of the
1683 pattern. If it does, we take a closer look. If it does not, we
1684 move our pointer (to putative last characters) as far as is
1685 logically possible. This amount of movement, which I call a
1686 stride, will be the length of the pattern if the actual character
1687 appears nowhere in the pattern, otherwise it will be the distance
1688 from the last occurrence of that character to the end of the
1689 pattern. If the amount is zero we have a possible match. */
1691 /* Here we make a "mickey mouse" BM table. The stride of the search
1692 is determined only by the last character of the putative match.
1693 If that character does not match, we will stride the proper
1694 distance to propose a match that superimposes it on the last
1695 instance of a character that matches it (per trt), or misses
1696 it entirely if there is none. */
1698 dirlen
= len_byte
* direction
;
1700 /* Record position after the end of the pattern. */
1701 pat_end
= base_pat
+ len_byte
;
1702 /* BASE_PAT points to a character that we start scanning from.
1703 It is the first character in a forward search,
1704 the last character in a backward search. */
1706 base_pat
= pat_end
- 1;
1708 /* A character that does not appear in the pattern induces a
1709 stride equal to the pattern length. */
1710 for (i
= 0; i
< 0400; i
++)
1713 /* We use this for translation, instead of TRT itself.
1714 We fill this in to handle the characters that actually
1715 occur in the pattern. Others don't matter anyway! */
1716 for (i
= 0; i
< 0400; i
++)
1717 simple_translate
[i
] = i
;
1721 /* Setup translate_prev_byte1/2/3/4 from CHAR_BASE. Only a
1722 byte following them are the target of translation. */
1723 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
1724 int cblen
= CHAR_STRING (char_base
, str
);
1726 translate_prev_byte1
= str
[cblen
- 2];
1729 translate_prev_byte2
= str
[cblen
- 3];
1731 translate_prev_byte3
= str
[cblen
- 4];
1738 unsigned char *ptr
= base_pat
+ i
;
1742 /* If the byte currently looking at is the last of a
1743 character to check case-equivalents, set CH to that
1744 character. An ASCII character and a non-ASCII character
1745 matching with CHAR_BASE are to be checked. */
1748 if (ASCII_BYTE_P (*ptr
) || ! multibyte
)
1751 && ((pat_end
- ptr
) == 1 || CHAR_HEAD_P (ptr
[1])))
1753 unsigned char *charstart
= ptr
- 1;
1755 while (! (CHAR_HEAD_P (*charstart
)))
1757 ch
= STRING_CHAR (charstart
);
1758 if (char_base
!= (ch
& ~0x3F))
1762 if (ch
>= 0200 && multibyte
)
1763 j
= (ch
& 0x3F) | 0200;
1768 stride_for_teases
= BM_tab
[j
];
1770 BM_tab
[j
] = dirlen
- i
;
1771 /* A translation table is accompanied by its inverse -- see
1772 comment following downcase_table for details. */
1775 int starting_ch
= ch
;
1780 TRANSLATE (ch
, inverse_trt
, ch
);
1781 if (ch
>= 0200 && multibyte
)
1782 j
= (ch
& 0x3F) | 0200;
1786 /* For all the characters that map into CH,
1787 set up simple_translate to map the last byte
1789 simple_translate
[j
] = starting_j
;
1790 if (ch
== starting_ch
)
1792 BM_tab
[j
] = dirlen
- i
;
1801 stride_for_teases
= BM_tab
[j
];
1802 BM_tab
[j
] = dirlen
- i
;
1804 /* stride_for_teases tells how much to stride if we get a
1805 match on the far character but are subsequently
1806 disappointed, by recording what the stride would have been
1807 for that character if the last character had been
1810 pos_byte
+= dirlen
- ((direction
> 0) ? direction
: 0);
1811 /* loop invariant - POS_BYTE points at where last char (first
1812 char if reverse) of pattern would align in a possible match. */
1816 unsigned char *tail_end_ptr
;
1818 /* It's been reported that some (broken) compiler thinks that
1819 Boolean expressions in an arithmetic context are unsigned.
1820 Using an explicit ?1:0 prevents this. */
1821 if ((lim_byte
- pos_byte
- ((direction
> 0) ? 1 : 0)) * direction
1823 return (n
* (0 - direction
));
1824 /* First we do the part we can by pointers (maybe nothing) */
1827 limit
= pos_byte
- dirlen
+ direction
;
1830 limit
= BUFFER_CEILING_OF (limit
);
1831 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1832 can take on without hitting edge of buffer or the gap. */
1833 limit
= min (limit
, pos_byte
+ 20000);
1834 limit
= min (limit
, lim_byte
- 1);
1838 limit
= BUFFER_FLOOR_OF (limit
);
1839 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1840 can take on without hitting edge of buffer or the gap. */
1841 limit
= max (limit
, pos_byte
- 20000);
1842 limit
= max (limit
, lim_byte
);
1844 tail_end
= BUFFER_CEILING_OF (pos_byte
) + 1;
1845 tail_end_ptr
= BYTE_POS_ADDR (tail_end
);
1847 if ((limit
- pos_byte
) * direction
> 20)
1851 p_limit
= BYTE_POS_ADDR (limit
);
1852 p2
= (cursor
= BYTE_POS_ADDR (pos_byte
));
1853 /* In this loop, pos + cursor - p2 is the surrogate for pos. */
1854 while (1) /* use one cursor setting as long as i can */
1856 if (direction
> 0) /* worth duplicating */
1858 while (cursor
<= p_limit
)
1860 if (BM_tab
[*cursor
] == 0)
1862 cursor
+= BM_tab
[*cursor
];
1867 while (cursor
>= p_limit
)
1869 if (BM_tab
[*cursor
] == 0)
1871 cursor
+= BM_tab
[*cursor
];
1874 /* If you are here, cursor is beyond the end of the
1875 searched region. You fail to match within the
1876 permitted region and would otherwise try a character
1877 beyond that region. */
1881 i
= dirlen
- direction
;
1884 while ((i
-= direction
) + direction
!= 0)
1887 cursor
-= direction
;
1888 /* Translate only the last byte of a character. */
1890 || ((cursor
== tail_end_ptr
1891 || CHAR_HEAD_P (cursor
[1]))
1892 && (CHAR_HEAD_P (cursor
[0])
1893 /* Check if this is the last byte of
1894 a translatable character. */
1895 || (translate_prev_byte1
== cursor
[-1]
1896 && (CHAR_HEAD_P (translate_prev_byte1
)
1897 || (translate_prev_byte2
== cursor
[-2]
1898 && (CHAR_HEAD_P (translate_prev_byte2
)
1899 || (translate_prev_byte3
== cursor
[-3]))))))))
1900 ch
= simple_translate
[*cursor
];
1909 while ((i
-= direction
) + direction
!= 0)
1911 cursor
-= direction
;
1912 if (pat
[i
] != *cursor
)
1916 cursor
+= dirlen
- i
- direction
; /* fix cursor */
1917 if (i
+ direction
== 0)
1919 EMACS_INT position
, start
, end
;
1921 cursor
-= direction
;
1923 position
= pos_byte
+ cursor
- p2
+ ((direction
> 0)
1924 ? 1 - len_byte
: 0);
1925 set_search_regs (position
, len_byte
);
1927 if (NILP (Vinhibit_changing_match_data
))
1929 start
= search_regs
.start
[0];
1930 end
= search_regs
.end
[0];
1933 /* If Vinhibit_changing_match_data is non-nil,
1934 search_regs will not be changed. So let's
1935 compute start and end here. */
1937 start
= BYTE_TO_CHAR (position
);
1938 end
= BYTE_TO_CHAR (position
+ len_byte
);
1941 if ((n
-= direction
) != 0)
1942 cursor
+= dirlen
; /* to resume search */
1944 return direction
> 0 ? end
: start
;
1947 cursor
+= stride_for_teases
; /* <sigh> we lose - */
1949 pos_byte
+= cursor
- p2
;
1952 /* Now we'll pick up a clump that has to be done the hard
1953 way because it covers a discontinuity. */
1955 limit
= ((direction
> 0)
1956 ? BUFFER_CEILING_OF (pos_byte
- dirlen
+ 1)
1957 : BUFFER_FLOOR_OF (pos_byte
- dirlen
- 1));
1958 limit
= ((direction
> 0)
1959 ? min (limit
+ len_byte
, lim_byte
- 1)
1960 : max (limit
- len_byte
, lim_byte
));
1961 /* LIMIT is now the last value POS_BYTE can have
1962 and still be valid for a possible match. */
1965 /* This loop can be coded for space rather than
1966 speed because it will usually run only once.
1967 (the reach is at most len + 21, and typically
1968 does not exceed len). */
1969 while ((limit
- pos_byte
) * direction
>= 0)
1971 int ch
= FETCH_BYTE (pos_byte
);
1972 if (BM_tab
[ch
] == 0)
1974 pos_byte
+= BM_tab
[ch
];
1976 break; /* ran off the end */
1979 /* Found what might be a match. */
1980 i
= dirlen
- direction
;
1981 while ((i
-= direction
) + direction
!= 0)
1985 pos_byte
-= direction
;
1986 ptr
= BYTE_POS_ADDR (pos_byte
);
1987 /* Translate only the last byte of a character. */
1989 || ((ptr
== tail_end_ptr
1990 || CHAR_HEAD_P (ptr
[1]))
1991 && (CHAR_HEAD_P (ptr
[0])
1992 /* Check if this is the last byte of a
1993 translatable character. */
1994 || (translate_prev_byte1
== ptr
[-1]
1995 && (CHAR_HEAD_P (translate_prev_byte1
)
1996 || (translate_prev_byte2
== ptr
[-2]
1997 && (CHAR_HEAD_P (translate_prev_byte2
)
1998 || translate_prev_byte3
== ptr
[-3])))))))
1999 ch
= simple_translate
[*ptr
];
2005 /* Above loop has moved POS_BYTE part or all the way
2006 back to the first pos (last pos if reverse).
2007 Set it once again at the last (first if reverse) char. */
2008 pos_byte
+= dirlen
- i
- direction
;
2009 if (i
+ direction
== 0)
2011 EMACS_INT position
, start
, end
;
2012 pos_byte
-= direction
;
2014 position
= pos_byte
+ ((direction
> 0) ? 1 - len_byte
: 0);
2015 set_search_regs (position
, len_byte
);
2017 if (NILP (Vinhibit_changing_match_data
))
2019 start
= search_regs
.start
[0];
2020 end
= search_regs
.end
[0];
2023 /* If Vinhibit_changing_match_data is non-nil,
2024 search_regs will not be changed. So let's
2025 compute start and end here. */
2027 start
= BYTE_TO_CHAR (position
);
2028 end
= BYTE_TO_CHAR (position
+ len_byte
);
2031 if ((n
-= direction
) != 0)
2032 pos_byte
+= dirlen
; /* to resume search */
2034 return direction
> 0 ? end
: start
;
2037 pos_byte
+= stride_for_teases
;
2040 /* We have done one clump. Can we continue? */
2041 if ((lim_byte
- pos_byte
) * direction
< 0)
2042 return ((0 - n
) * direction
);
2044 return BYTE_TO_CHAR (pos_byte
);
2047 /* Record beginning BEG_BYTE and end BEG_BYTE + NBYTES
2048 for the overall match just found in the current buffer.
2049 Also clear out the match data for registers 1 and up. */
2052 set_search_regs (EMACS_INT beg_byte
, EMACS_INT nbytes
)
2056 if (!NILP (Vinhibit_changing_match_data
))
2059 /* Make sure we have registers in which to store
2060 the match position. */
2061 if (search_regs
.num_regs
== 0)
2063 search_regs
.start
= (regoff_t
*) xmalloc (2 * sizeof (regoff_t
));
2064 search_regs
.end
= (regoff_t
*) xmalloc (2 * sizeof (regoff_t
));
2065 search_regs
.num_regs
= 2;
2068 /* Clear out the other registers. */
2069 for (i
= 1; i
< search_regs
.num_regs
; i
++)
2071 search_regs
.start
[i
] = -1;
2072 search_regs
.end
[i
] = -1;
2075 search_regs
.start
[0] = BYTE_TO_CHAR (beg_byte
);
2076 search_regs
.end
[0] = BYTE_TO_CHAR (beg_byte
+ nbytes
);
2077 XSETBUFFER (last_thing_searched
, current_buffer
);
2080 DEFUN ("word-search-regexp", Fword_search_regexp
, Sword_search_regexp
, 1, 2, 0,
2081 doc
: /* Return a regexp which matches words, ignoring punctuation.
2082 Given STRING, a string of words separated by word delimiters,
2083 compute a regexp that matches those exact words separated by
2084 arbitrary punctuation. If LAX is non-nil, the end of the string
2085 need not match a word boundary unless it ends in whitespace.
2087 Used in `word-search-forward', `word-search-backward',
2088 `word-search-forward-lax', `word-search-backward-lax'. */)
2089 (Lisp_Object string
, Lisp_Object lax
)
2091 register unsigned char *o
;
2092 register EMACS_INT i
, i_byte
, len
, punct_count
= 0, word_count
= 0;
2096 int whitespace_at_end
;
2098 CHECK_STRING (string
);
2099 len
= SCHARS (string
);
2101 for (i
= 0, i_byte
= 0; i
< len
; )
2105 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c
, string
, i
, i_byte
);
2107 if (SYNTAX (c
) != Sword
)
2110 if (SYNTAX (prev_c
) == Sword
)
2117 if (SYNTAX (prev_c
) == Sword
)
2120 whitespace_at_end
= 0;
2124 whitespace_at_end
= 1;
2126 return empty_unibyte_string
;
2129 adjust
= - punct_count
+ 5 * (word_count
- 1)
2130 + ((!NILP (lax
) && !whitespace_at_end
) ? 2 : 4);
2131 if (STRING_MULTIBYTE (string
))
2132 val
= make_uninit_multibyte_string (len
+ adjust
,
2136 val
= make_uninit_string (len
+ adjust
);
2143 for (i
= 0, i_byte
= 0; i
< len
; )
2146 EMACS_INT i_byte_orig
= i_byte
;
2148 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c
, string
, i
, i_byte
);
2150 if (SYNTAX (c
) == Sword
)
2152 memcpy (o
, SDATA (string
) + i_byte_orig
, i_byte
- i_byte_orig
);
2153 o
+= i_byte
- i_byte_orig
;
2155 else if (SYNTAX (prev_c
) == Sword
&& --word_count
)
2167 if (NILP (lax
) || whitespace_at_end
)
2176 DEFUN ("search-backward", Fsearch_backward
, Ssearch_backward
, 1, 4,
2177 "MSearch backward: ",
2178 doc
: /* Search backward from point for STRING.
2179 Set point to the beginning of the occurrence found, and return point.
2180 An optional second argument bounds the search; it is a buffer position.
2181 The match found must not extend before that position.
2182 Optional third argument, if t, means if fail just return nil (no error).
2183 If not nil and not t, position at limit of search and return nil.
2184 Optional fourth argument COUNT, if non-nil, means to search for COUNT
2185 successive occurrences. If COUNT is negative, search forward,
2186 instead of backward, for -COUNT occurrences.
2188 Search case-sensitivity is determined by the value of the variable
2189 `case-fold-search', which see.
2191 See also the functions `match-beginning', `match-end' and `replace-match'. */)
2192 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2194 return search_command (string
, bound
, noerror
, count
, -1, 0, 0);
2197 DEFUN ("search-forward", Fsearch_forward
, Ssearch_forward
, 1, 4, "MSearch: ",
2198 doc
: /* Search forward from point for STRING.
2199 Set point to the end of the occurrence found, and return point.
2200 An optional second argument bounds the search; it is a buffer position.
2201 The match found must not extend after that position. A value of nil is
2202 equivalent to (point-max).
2203 Optional third argument, if t, means if fail just return nil (no error).
2204 If not nil and not t, move to limit of search and return nil.
2205 Optional fourth argument COUNT, if non-nil, means to search for COUNT
2206 successive occurrences. If COUNT is negative, search backward,
2207 instead of forward, for -COUNT occurrences.
2209 Search case-sensitivity is determined by the value of the variable
2210 `case-fold-search', which see.
2212 See also the functions `match-beginning', `match-end' and `replace-match'. */)
2213 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2215 return search_command (string
, bound
, noerror
, count
, 1, 0, 0);
2218 DEFUN ("word-search-backward", Fword_search_backward
, Sword_search_backward
, 1, 4,
2219 "sWord search backward: ",
2220 doc
: /* Search backward from point for STRING, ignoring differences in punctuation.
2221 Set point to the beginning of the occurrence found, and return point.
2222 An optional second argument bounds the search; it is a buffer position.
2223 The match found must not extend before that position.
2224 Optional third argument, if t, means if fail just return nil (no error).
2225 If not nil and not t, move to limit of search and return nil.
2226 Optional fourth argument is repeat count--search for successive occurrences.
2228 Relies on the function `word-search-regexp' to convert a sequence
2229 of words in STRING to a regexp used to search words without regard
2231 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2233 return search_command (Fword_search_regexp (string
, Qnil
), bound
, noerror
, count
, -1, 1, 0);
2236 DEFUN ("word-search-forward", Fword_search_forward
, Sword_search_forward
, 1, 4,
2238 doc
: /* Search forward from point for STRING, ignoring differences in punctuation.
2239 Set point to the end of the occurrence found, and return point.
2240 An optional second argument bounds the search; it is a buffer position.
2241 The match found must not extend after that position.
2242 Optional third argument, if t, means if fail just return nil (no error).
2243 If not nil and not t, move to limit of search and return nil.
2244 Optional fourth argument is repeat count--search for successive occurrences.
2246 Relies on the function `word-search-regexp' to convert a sequence
2247 of words in STRING to a regexp used to search words without regard
2249 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2251 return search_command (Fword_search_regexp (string
, Qnil
), bound
, noerror
, count
, 1, 1, 0);
2254 DEFUN ("word-search-backward-lax", Fword_search_backward_lax
, Sword_search_backward_lax
, 1, 4,
2255 "sWord search backward: ",
2256 doc
: /* Search backward from point for STRING, ignoring differences in punctuation.
2257 Set point to the beginning of the occurrence found, and return point.
2259 Unlike `word-search-backward', the end of STRING need not match a word
2260 boundary unless it ends in whitespace.
2262 An optional second argument bounds the search; it is a buffer position.
2263 The match found must not extend before that position.
2264 Optional third argument, if t, means if fail just return nil (no error).
2265 If not nil and not t, move to limit of search and return nil.
2266 Optional fourth argument is repeat count--search for successive occurrences.
2268 Relies on the function `word-search-regexp' to convert a sequence
2269 of words in STRING to a regexp used to search words without regard
2271 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2273 return search_command (Fword_search_regexp (string
, Qt
), bound
, noerror
, count
, -1, 1, 0);
2276 DEFUN ("word-search-forward-lax", Fword_search_forward_lax
, Sword_search_forward_lax
, 1, 4,
2278 doc
: /* Search forward from point for STRING, ignoring differences in punctuation.
2279 Set point to the end of the occurrence found, and return point.
2281 Unlike `word-search-forward', the end of STRING need not match a word
2282 boundary unless it ends in whitespace.
2284 An optional second argument bounds the search; it is a buffer position.
2285 The match found must not extend after that position.
2286 Optional third argument, if t, means if fail just return nil (no error).
2287 If not nil and not t, move to limit of search and return nil.
2288 Optional fourth argument is repeat count--search for successive occurrences.
2290 Relies on the function `word-search-regexp' to convert a sequence
2291 of words in STRING to a regexp used to search words without regard
2293 (Lisp_Object string
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2295 return search_command (Fword_search_regexp (string
, Qt
), bound
, noerror
, count
, 1, 1, 0);
2298 DEFUN ("re-search-backward", Fre_search_backward
, Sre_search_backward
, 1, 4,
2299 "sRE search backward: ",
2300 doc
: /* Search backward from point for match for regular expression REGEXP.
2301 Set point to the beginning of the match, and return point.
2302 The match found is the one starting last in the buffer
2303 and yet ending before the origin of the search.
2304 An optional second argument bounds the search; it is a buffer position.
2305 The match found must start at or after that position.
2306 Optional third argument, if t, means if fail just return nil (no error).
2307 If not nil and not t, move to limit of search and return nil.
2308 Optional fourth argument is repeat count--search for successive occurrences.
2310 Search case-sensitivity is determined by the value of the variable
2311 `case-fold-search', which see.
2313 See also the functions `match-beginning', `match-end', `match-string',
2314 and `replace-match'. */)
2315 (Lisp_Object regexp
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2317 return search_command (regexp
, bound
, noerror
, count
, -1, 1, 0);
2320 DEFUN ("re-search-forward", Fre_search_forward
, Sre_search_forward
, 1, 4,
2322 doc
: /* Search forward from point for regular expression REGEXP.
2323 Set point to the end of the occurrence found, and return point.
2324 An optional second argument bounds the search; it is a buffer position.
2325 The match found must not extend after that position.
2326 Optional third argument, if t, means if fail just return nil (no error).
2327 If not nil and not t, move to limit of search and return nil.
2328 Optional fourth argument is repeat count--search for successive occurrences.
2330 Search case-sensitivity is determined by the value of the variable
2331 `case-fold-search', which see.
2333 See also the functions `match-beginning', `match-end', `match-string',
2334 and `replace-match'. */)
2335 (Lisp_Object regexp
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2337 return search_command (regexp
, bound
, noerror
, count
, 1, 1, 0);
2340 DEFUN ("posix-search-backward", Fposix_search_backward
, Sposix_search_backward
, 1, 4,
2341 "sPosix search backward: ",
2342 doc
: /* Search backward from point for match for regular expression REGEXP.
2343 Find the longest match in accord with Posix regular expression rules.
2344 Set point to the beginning of the match, and return point.
2345 The match found is the one starting last in the buffer
2346 and yet ending before the origin of the search.
2347 An optional second argument bounds the search; it is a buffer position.
2348 The match found must start at or after that position.
2349 Optional third argument, if t, means if fail just return nil (no error).
2350 If not nil and not t, move to limit of search and return nil.
2351 Optional fourth argument is repeat count--search for successive occurrences.
2353 Search case-sensitivity is determined by the value of the variable
2354 `case-fold-search', which see.
2356 See also the functions `match-beginning', `match-end', `match-string',
2357 and `replace-match'. */)
2358 (Lisp_Object regexp
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2360 return search_command (regexp
, bound
, noerror
, count
, -1, 1, 1);
2363 DEFUN ("posix-search-forward", Fposix_search_forward
, Sposix_search_forward
, 1, 4,
2365 doc
: /* Search forward from point for regular expression REGEXP.
2366 Find the longest match in accord with Posix regular expression rules.
2367 Set point to the end of the occurrence found, and return point.
2368 An optional second argument bounds the search; it is a buffer position.
2369 The match found must not extend after that position.
2370 Optional third argument, if t, means if fail just return nil (no error).
2371 If not nil and not t, move to limit of search and return nil.
2372 Optional fourth argument is repeat count--search for successive occurrences.
2374 Search case-sensitivity is determined by the value of the variable
2375 `case-fold-search', which see.
2377 See also the functions `match-beginning', `match-end', `match-string',
2378 and `replace-match'. */)
2379 (Lisp_Object regexp
, Lisp_Object bound
, Lisp_Object noerror
, Lisp_Object count
)
2381 return search_command (regexp
, bound
, noerror
, count
, 1, 1, 1);
2384 DEFUN ("replace-match", Freplace_match
, Sreplace_match
, 1, 5, 0,
2385 doc
: /* Replace text matched by last search with NEWTEXT.
2386 Leave point at the end of the replacement text.
2388 If second arg FIXEDCASE is non-nil, do not alter case of replacement text.
2389 Otherwise maybe capitalize the whole text, or maybe just word initials,
2390 based on the replaced text.
2391 If the replaced text has only capital letters
2392 and has at least one multiletter word, convert NEWTEXT to all caps.
2393 Otherwise if all words are capitalized in the replaced text,
2394 capitalize each word in NEWTEXT.
2396 If third arg LITERAL is non-nil, insert NEWTEXT literally.
2397 Otherwise treat `\\' as special:
2398 `\\&' in NEWTEXT means substitute original matched text.
2399 `\\N' means substitute what matched the Nth `\\(...\\)'.
2400 If Nth parens didn't match, substitute nothing.
2401 `\\\\' means insert one `\\'.
2402 Case conversion does not apply to these substitutions.
2404 FIXEDCASE and LITERAL are optional arguments.
2406 The optional fourth argument STRING can be a string to modify.
2407 This is meaningful when the previous match was done against STRING,
2408 using `string-match'. When used this way, `replace-match'
2409 creates and returns a new string made by copying STRING and replacing
2410 the part of STRING that was matched.
2412 The optional fifth argument SUBEXP specifies a subexpression;
2413 it says to replace just that subexpression with NEWTEXT,
2414 rather than replacing the entire matched text.
2415 This is, in a vague sense, the inverse of using `\\N' in NEWTEXT;
2416 `\\N' copies subexp N into NEWTEXT, but using N as SUBEXP puts
2417 NEWTEXT in place of subexp N.
2418 This is useful only after a regular expression search or match,
2419 since only regular expressions have distinguished subexpressions. */)
2420 (Lisp_Object newtext
, Lisp_Object fixedcase
, Lisp_Object literal
, Lisp_Object string
, Lisp_Object subexp
)
2422 enum { nochange
, all_caps
, cap_initial
} case_action
;
2423 register EMACS_INT pos
, pos_byte
;
2424 int some_multiletter_word
;
2427 int some_nonuppercase_initial
;
2428 register int c
, prevc
;
2430 EMACS_INT opoint
, newpoint
;
2432 CHECK_STRING (newtext
);
2434 if (! NILP (string
))
2435 CHECK_STRING (string
);
2437 case_action
= nochange
; /* We tried an initialization */
2438 /* but some C compilers blew it */
2440 if (search_regs
.num_regs
<= 0)
2441 error ("`replace-match' called before any match found");
2447 CHECK_NUMBER (subexp
);
2448 if (! (0 <= XINT (subexp
) && XINT (subexp
) < search_regs
.num_regs
))
2449 args_out_of_range (subexp
, make_number (search_regs
.num_regs
));
2450 sub
= XINT (subexp
);
2455 if (search_regs
.start
[sub
] < BEGV
2456 || search_regs
.start
[sub
] > search_regs
.end
[sub
]
2457 || search_regs
.end
[sub
] > ZV
)
2458 args_out_of_range (make_number (search_regs
.start
[sub
]),
2459 make_number (search_regs
.end
[sub
]));
2463 if (search_regs
.start
[sub
] < 0
2464 || search_regs
.start
[sub
] > search_regs
.end
[sub
]
2465 || search_regs
.end
[sub
] > SCHARS (string
))
2466 args_out_of_range (make_number (search_regs
.start
[sub
]),
2467 make_number (search_regs
.end
[sub
]));
2470 if (NILP (fixedcase
))
2472 /* Decide how to casify by examining the matched text. */
2475 pos
= search_regs
.start
[sub
];
2476 last
= search_regs
.end
[sub
];
2479 pos_byte
= CHAR_TO_BYTE (pos
);
2481 pos_byte
= string_char_to_byte (string
, pos
);
2484 case_action
= all_caps
;
2486 /* some_multiletter_word is set nonzero if any original word
2487 is more than one letter long. */
2488 some_multiletter_word
= 0;
2490 some_nonuppercase_initial
= 0;
2497 c
= FETCH_CHAR_AS_MULTIBYTE (pos_byte
);
2498 INC_BOTH (pos
, pos_byte
);
2501 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c
, string
, pos
, pos_byte
);
2505 /* Cannot be all caps if any original char is lower case */
2508 if (SYNTAX (prevc
) != Sword
)
2509 some_nonuppercase_initial
= 1;
2511 some_multiletter_word
= 1;
2513 else if (uppercasep (c
))
2516 if (SYNTAX (prevc
) != Sword
)
2519 some_multiletter_word
= 1;
2523 /* If the initial is a caseless word constituent,
2524 treat that like a lowercase initial. */
2525 if (SYNTAX (prevc
) != Sword
)
2526 some_nonuppercase_initial
= 1;
2532 /* Convert to all caps if the old text is all caps
2533 and has at least one multiletter word. */
2534 if (! some_lowercase
&& some_multiletter_word
)
2535 case_action
= all_caps
;
2536 /* Capitalize each word, if the old text has all capitalized words. */
2537 else if (!some_nonuppercase_initial
&& some_multiletter_word
)
2538 case_action
= cap_initial
;
2539 else if (!some_nonuppercase_initial
&& some_uppercase
)
2540 /* Should x -> yz, operating on X, give Yz or YZ?
2541 We'll assume the latter. */
2542 case_action
= all_caps
;
2544 case_action
= nochange
;
2547 /* Do replacement in a string. */
2550 Lisp_Object before
, after
;
2552 before
= Fsubstring (string
, make_number (0),
2553 make_number (search_regs
.start
[sub
]));
2554 after
= Fsubstring (string
, make_number (search_regs
.end
[sub
]), Qnil
);
2556 /* Substitute parts of the match into NEWTEXT
2560 EMACS_INT lastpos
= 0;
2561 EMACS_INT lastpos_byte
= 0;
2562 /* We build up the substituted string in ACCUM. */
2565 EMACS_INT length
= SBYTES (newtext
);
2569 for (pos_byte
= 0, pos
= 0; pos_byte
< length
;)
2571 EMACS_INT substart
= -1;
2572 EMACS_INT subend
= 0;
2573 int delbackslash
= 0;
2575 FETCH_STRING_CHAR_ADVANCE (c
, newtext
, pos
, pos_byte
);
2579 FETCH_STRING_CHAR_ADVANCE (c
, newtext
, pos
, pos_byte
);
2583 substart
= search_regs
.start
[sub
];
2584 subend
= search_regs
.end
[sub
];
2586 else if (c
>= '1' && c
<= '9')
2588 if (search_regs
.start
[c
- '0'] >= 0
2589 && c
<= search_regs
.num_regs
+ '0')
2591 substart
= search_regs
.start
[c
- '0'];
2592 subend
= search_regs
.end
[c
- '0'];
2596 /* If that subexp did not match,
2597 replace \\N with nothing. */
2605 error ("Invalid use of `\\' in replacement text");
2609 if (pos
- 2 != lastpos
)
2610 middle
= substring_both (newtext
, lastpos
,
2612 pos
- 2, pos_byte
- 2);
2615 accum
= concat3 (accum
, middle
,
2617 make_number (substart
),
2618 make_number (subend
)));
2620 lastpos_byte
= pos_byte
;
2622 else if (delbackslash
)
2624 middle
= substring_both (newtext
, lastpos
,
2626 pos
- 1, pos_byte
- 1);
2628 accum
= concat2 (accum
, middle
);
2630 lastpos_byte
= pos_byte
;
2635 middle
= substring_both (newtext
, lastpos
,
2641 newtext
= concat2 (accum
, middle
);
2644 /* Do case substitution in NEWTEXT if desired. */
2645 if (case_action
== all_caps
)
2646 newtext
= Fupcase (newtext
);
2647 else if (case_action
== cap_initial
)
2648 newtext
= Fupcase_initials (newtext
);
2650 return concat3 (before
, newtext
, after
);
2653 /* Record point, then move (quietly) to the start of the match. */
2654 if (PT
>= search_regs
.end
[sub
])
2656 else if (PT
> search_regs
.start
[sub
])
2657 opoint
= search_regs
.end
[sub
] - ZV
;
2661 /* If we want non-literal replacement,
2662 perform substitution on the replacement string. */
2665 ptrdiff_t length
= SBYTES (newtext
);
2666 unsigned char *substed
;
2667 ptrdiff_t substed_alloc_size
, substed_len
;
2668 int buf_multibyte
= !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
2669 int str_multibyte
= STRING_MULTIBYTE (newtext
);
2670 int really_changed
= 0;
2672 substed_alloc_size
= ((STRING_BYTES_BOUND
- 100) / 2 < length
2673 ? STRING_BYTES_BOUND
2674 : length
* 2 + 100);
2675 substed
= (unsigned char *) xmalloc (substed_alloc_size
);
2678 /* Go thru NEWTEXT, producing the actual text to insert in
2679 SUBSTED while adjusting multibyteness to that of the current
2682 for (pos_byte
= 0, pos
= 0; pos_byte
< length
;)
2684 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
2685 const unsigned char *add_stuff
= NULL
;
2686 ptrdiff_t add_len
= 0;
2691 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, newtext
, pos
, pos_byte
);
2693 c
= multibyte_char_to_unibyte (c
);
2697 /* Note that we don't have to increment POS. */
2698 c
= SREF (newtext
, pos_byte
++);
2700 MAKE_CHAR_MULTIBYTE (c
);
2703 /* Either set ADD_STUFF and ADD_LEN to the text to put in SUBSTED,
2704 or set IDX to a match index, which means put that part
2705 of the buffer text into SUBSTED. */
2713 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, newtext
,
2715 if (!buf_multibyte
&& !ASCII_CHAR_P (c
))
2716 c
= multibyte_char_to_unibyte (c
);
2720 c
= SREF (newtext
, pos_byte
++);
2722 MAKE_CHAR_MULTIBYTE (c
);
2727 else if (c
>= '1' && c
<= '9' && c
<= search_regs
.num_regs
+ '0')
2729 if (search_regs
.start
[c
- '0'] >= 1)
2733 add_len
= 1, add_stuff
= (unsigned char *) "\\";
2737 error ("Invalid use of `\\' in replacement text");
2742 add_len
= CHAR_STRING (c
, str
);
2746 /* If we want to copy part of a previous match,
2747 set up ADD_STUFF and ADD_LEN to point to it. */
2750 ptrdiff_t begbyte
= CHAR_TO_BYTE (search_regs
.start
[idx
]);
2751 add_len
= CHAR_TO_BYTE (search_regs
.end
[idx
]) - begbyte
;
2752 if (search_regs
.start
[idx
] < GPT
&& GPT
< search_regs
.end
[idx
])
2753 move_gap (search_regs
.start
[idx
]);
2754 add_stuff
= BYTE_POS_ADDR (begbyte
);
2757 /* Now the stuff we want to add to SUBSTED
2758 is invariably ADD_LEN bytes starting at ADD_STUFF. */
2760 /* Make sure SUBSTED is big enough. */
2761 if (substed_alloc_size
- substed_len
< add_len
)
2763 xpalloc (substed
, &substed_alloc_size
,
2764 add_len
- (substed_alloc_size
- substed_len
),
2765 STRING_BYTES_BOUND
, 1);
2767 /* Now add to the end of SUBSTED. */
2770 memcpy (substed
+ substed_len
, add_stuff
, add_len
);
2771 substed_len
+= add_len
;
2780 multibyte_chars_in_text (substed
, substed_len
);
2782 newtext
= make_multibyte_string ((char *) substed
, nchars
,
2786 newtext
= make_unibyte_string ((char *) substed
, substed_len
);
2791 /* Replace the old text with the new in the cleanest possible way. */
2792 replace_range (search_regs
.start
[sub
], search_regs
.end
[sub
],
2794 newpoint
= search_regs
.start
[sub
] + SCHARS (newtext
);
2796 if (case_action
== all_caps
)
2797 Fupcase_region (make_number (search_regs
.start
[sub
]),
2798 make_number (newpoint
));
2799 else if (case_action
== cap_initial
)
2800 Fupcase_initials_region (make_number (search_regs
.start
[sub
]),
2801 make_number (newpoint
));
2803 /* Adjust search data for this change. */
2805 EMACS_INT oldend
= search_regs
.end
[sub
];
2806 EMACS_INT oldstart
= search_regs
.start
[sub
];
2807 EMACS_INT change
= newpoint
- search_regs
.end
[sub
];
2810 for (i
= 0; i
< search_regs
.num_regs
; i
++)
2812 if (search_regs
.start
[i
] >= oldend
)
2813 search_regs
.start
[i
] += change
;
2814 else if (search_regs
.start
[i
] > oldstart
)
2815 search_regs
.start
[i
] = oldstart
;
2816 if (search_regs
.end
[i
] >= oldend
)
2817 search_regs
.end
[i
] += change
;
2818 else if (search_regs
.end
[i
] > oldstart
)
2819 search_regs
.end
[i
] = oldstart
;
2823 /* Put point back where it was in the text. */
2825 TEMP_SET_PT (opoint
+ ZV
);
2827 TEMP_SET_PT (opoint
);
2829 /* Now move point "officially" to the start of the inserted replacement. */
2830 move_if_not_intangible (newpoint
);
2836 match_limit (Lisp_Object num
, int beginningp
)
2843 args_out_of_range (num
, make_number (0));
2844 if (search_regs
.num_regs
<= 0)
2845 error ("No match data, because no search succeeded");
2846 if (n
>= search_regs
.num_regs
2847 || search_regs
.start
[n
] < 0)
2849 return (make_number ((beginningp
) ? search_regs
.start
[n
]
2850 : search_regs
.end
[n
]));
2853 DEFUN ("match-beginning", Fmatch_beginning
, Smatch_beginning
, 1, 1, 0,
2854 doc
: /* Return position of start of text matched by last search.
2855 SUBEXP, a number, specifies which parenthesized expression in the last
2857 Value is nil if SUBEXPth pair didn't match, or there were less than
2859 Zero means the entire text matched by the whole regexp or whole string. */)
2860 (Lisp_Object subexp
)
2862 return match_limit (subexp
, 1);
2865 DEFUN ("match-end", Fmatch_end
, Smatch_end
, 1, 1, 0,
2866 doc
: /* Return position of end of text matched by last search.
2867 SUBEXP, a number, specifies which parenthesized expression in the last
2869 Value is nil if SUBEXPth pair didn't match, or there were less than
2871 Zero means the entire text matched by the whole regexp or whole string. */)
2872 (Lisp_Object subexp
)
2874 return match_limit (subexp
, 0);
2877 DEFUN ("match-data", Fmatch_data
, Smatch_data
, 0, 3, 0,
2878 doc
: /* Return a list containing all info on what the last search matched.
2879 Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.
2880 All the elements are markers or nil (nil if the Nth pair didn't match)
2881 if the last match was on a buffer; integers or nil if a string was matched.
2882 Use `set-match-data' to reinstate the data in this list.
2884 If INTEGERS (the optional first argument) is non-nil, always use
2885 integers \(rather than markers) to represent buffer positions. In
2886 this case, and if the last match was in a buffer, the buffer will get
2887 stored as one additional element at the end of the list.
2889 If REUSE is a list, reuse it as part of the value. If REUSE is long
2890 enough to hold all the values, and if INTEGERS is non-nil, no consing
2893 If optional third arg RESEAT is non-nil, any previous markers on the
2894 REUSE list will be modified to point to nowhere.
2896 Return value is undefined if the last search failed. */)
2897 (Lisp_Object integers
, Lisp_Object reuse
, Lisp_Object reseat
)
2899 Lisp_Object tail
, prev
;
2904 for (tail
= reuse
; CONSP (tail
); tail
= XCDR (tail
))
2905 if (MARKERP (XCAR (tail
)))
2907 unchain_marker (XMARKER (XCAR (tail
)));
2908 XSETCAR (tail
, Qnil
);
2911 if (NILP (last_thing_searched
))
2916 data
= (Lisp_Object
*) alloca ((2 * search_regs
.num_regs
+ 1)
2917 * sizeof (Lisp_Object
));
2920 for (i
= 0; i
< search_regs
.num_regs
; i
++)
2922 EMACS_INT start
= search_regs
.start
[i
];
2925 if (EQ (last_thing_searched
, Qt
)
2926 || ! NILP (integers
))
2928 XSETFASTINT (data
[2 * i
], start
);
2929 XSETFASTINT (data
[2 * i
+ 1], search_regs
.end
[i
]);
2931 else if (BUFFERP (last_thing_searched
))
2933 data
[2 * i
] = Fmake_marker ();
2934 Fset_marker (data
[2 * i
],
2935 make_number (start
),
2936 last_thing_searched
);
2937 data
[2 * i
+ 1] = Fmake_marker ();
2938 Fset_marker (data
[2 * i
+ 1],
2939 make_number (search_regs
.end
[i
]),
2940 last_thing_searched
);
2943 /* last_thing_searched must always be Qt, a buffer, or Qnil. */
2949 data
[2 * i
] = data
[2 * i
+ 1] = Qnil
;
2952 if (BUFFERP (last_thing_searched
) && !NILP (integers
))
2954 data
[len
] = last_thing_searched
;
2958 /* If REUSE is not usable, cons up the values and return them. */
2959 if (! CONSP (reuse
))
2960 return Flist (len
, data
);
2962 /* If REUSE is a list, store as many value elements as will fit
2963 into the elements of REUSE. */
2964 for (i
= 0, tail
= reuse
; CONSP (tail
);
2965 i
++, tail
= XCDR (tail
))
2968 XSETCAR (tail
, data
[i
]);
2970 XSETCAR (tail
, Qnil
);
2974 /* If we couldn't fit all value elements into REUSE,
2975 cons up the rest of them and add them to the end of REUSE. */
2977 XSETCDR (prev
, Flist (len
- i
, data
+ i
));
2982 /* We used to have an internal use variant of `reseat' described as:
2984 If RESEAT is `evaporate', put the markers back on the free list
2985 immediately. No other references to the markers must exist in this
2986 case, so it is used only internally on the unwind stack and
2987 save-match-data from Lisp.
2989 But it was ill-conceived: those supposedly-internal markers get exposed via
2990 the undo-list, so freeing them here is unsafe. */
2992 DEFUN ("set-match-data", Fset_match_data
, Sset_match_data
, 1, 2, 0,
2993 doc
: /* Set internal data on last search match from elements of LIST.
2994 LIST should have been created by calling `match-data' previously.
2996 If optional arg RESEAT is non-nil, make markers on LIST point nowhere. */)
2997 (register Lisp_Object list
, Lisp_Object reseat
)
3000 register Lisp_Object marker
;
3002 if (running_asynch_code
)
3003 save_search_regs ();
3007 /* Unless we find a marker with a buffer or an explicit buffer
3008 in LIST, assume that this match data came from a string. */
3009 last_thing_searched
= Qt
;
3011 /* Allocate registers if they don't already exist. */
3013 ptrdiff_t length
= XFASTINT (Flength (list
)) / 2;
3015 if (length
> search_regs
.num_regs
)
3017 ptrdiff_t num_regs
= search_regs
.num_regs
;
3019 xpalloc (search_regs
.start
, &num_regs
, length
- num_regs
,
3020 min (PTRDIFF_MAX
, UINT_MAX
), sizeof (regoff_t
));
3022 xrealloc (search_regs
.end
, num_regs
* sizeof (regoff_t
));
3024 for (i
= search_regs
.num_regs
; i
< num_regs
; i
++)
3025 search_regs
.start
[i
] = -1;
3027 search_regs
.num_regs
= num_regs
;
3030 for (i
= 0; CONSP (list
); i
++)
3032 marker
= XCAR (list
);
3033 if (BUFFERP (marker
))
3035 last_thing_searched
= marker
;
3042 search_regs
.start
[i
] = -1;
3051 if (MARKERP (marker
))
3053 if (XMARKER (marker
)->buffer
== 0)
3054 XSETFASTINT (marker
, 0);
3056 XSETBUFFER (last_thing_searched
, XMARKER (marker
)->buffer
);
3059 CHECK_NUMBER_COERCE_MARKER (marker
);
3060 from
= XINT (marker
);
3062 if (!NILP (reseat
) && MARKERP (m
))
3064 unchain_marker (XMARKER (m
));
3065 XSETCAR (list
, Qnil
);
3068 if ((list
= XCDR (list
), !CONSP (list
)))
3071 m
= marker
= XCAR (list
);
3073 if (MARKERP (marker
) && XMARKER (marker
)->buffer
== 0)
3074 XSETFASTINT (marker
, 0);
3076 CHECK_NUMBER_COERCE_MARKER (marker
);
3077 search_regs
.start
[i
] = from
;
3078 search_regs
.end
[i
] = XINT (marker
);
3080 if (!NILP (reseat
) && MARKERP (m
))
3082 unchain_marker (XMARKER (m
));
3083 XSETCAR (list
, Qnil
);
3089 for (; i
< search_regs
.num_regs
; i
++)
3090 search_regs
.start
[i
] = -1;
3096 /* If non-zero the match data have been saved in saved_search_regs
3097 during the execution of a sentinel or filter. */
3098 static int search_regs_saved
;
3099 static struct re_registers saved_search_regs
;
3100 static Lisp_Object saved_last_thing_searched
;
3102 /* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data
3103 if asynchronous code (filter or sentinel) is running. */
3105 save_search_regs (void)
3107 if (!search_regs_saved
)
3109 saved_search_regs
.num_regs
= search_regs
.num_regs
;
3110 saved_search_regs
.start
= search_regs
.start
;
3111 saved_search_regs
.end
= search_regs
.end
;
3112 saved_last_thing_searched
= last_thing_searched
;
3113 last_thing_searched
= Qnil
;
3114 search_regs
.num_regs
= 0;
3115 search_regs
.start
= 0;
3116 search_regs
.end
= 0;
3118 search_regs_saved
= 1;
3122 /* Called upon exit from filters and sentinels. */
3124 restore_search_regs (void)
3126 if (search_regs_saved
)
3128 if (search_regs
.num_regs
> 0)
3130 xfree (search_regs
.start
);
3131 xfree (search_regs
.end
);
3133 search_regs
.num_regs
= saved_search_regs
.num_regs
;
3134 search_regs
.start
= saved_search_regs
.start
;
3135 search_regs
.end
= saved_search_regs
.end
;
3136 last_thing_searched
= saved_last_thing_searched
;
3137 saved_last_thing_searched
= Qnil
;
3138 search_regs_saved
= 0;
3143 unwind_set_match_data (Lisp_Object list
)
3145 /* It is NOT ALWAYS safe to free (evaporate) the markers immediately. */
3146 return Fset_match_data (list
, Qt
);
3149 /* Called to unwind protect the match data. */
3151 record_unwind_save_match_data (void)
3153 record_unwind_protect (unwind_set_match_data
,
3154 Fmatch_data (Qnil
, Qnil
, Qnil
));
3157 /* Quote a string to deactivate reg-expr chars */
3159 DEFUN ("regexp-quote", Fregexp_quote
, Sregexp_quote
, 1, 1, 0,
3160 doc
: /* Return a regexp string which matches exactly STRING and nothing else. */)
3161 (Lisp_Object string
)
3163 register char *in
, *out
, *end
;
3164 register char *temp
;
3165 int backslashes_added
= 0;
3167 CHECK_STRING (string
);
3169 temp
= (char *) alloca (SBYTES (string
) * 2);
3171 /* Now copy the data into the new string, inserting escapes. */
3173 in
= SSDATA (string
);
3174 end
= in
+ SBYTES (string
);
3177 for (; in
!= end
; in
++)
3180 || *in
== '*' || *in
== '.' || *in
== '\\'
3181 || *in
== '?' || *in
== '+'
3182 || *in
== '^' || *in
== '$')
3183 *out
++ = '\\', backslashes_added
++;
3187 return make_specified_string (temp
,
3188 SCHARS (string
) + backslashes_added
,
3190 STRING_MULTIBYTE (string
));
3194 syms_of_search (void)
3198 for (i
= 0; i
< REGEXP_CACHE_SIZE
; ++i
)
3200 searchbufs
[i
].buf
.allocated
= 100;
3201 searchbufs
[i
].buf
.buffer
= (unsigned char *) xmalloc (100);
3202 searchbufs
[i
].buf
.fastmap
= searchbufs
[i
].fastmap
;
3203 searchbufs
[i
].regexp
= Qnil
;
3204 searchbufs
[i
].whitespace_regexp
= Qnil
;
3205 searchbufs
[i
].syntax_table
= Qnil
;
3206 staticpro (&searchbufs
[i
].regexp
);
3207 staticpro (&searchbufs
[i
].whitespace_regexp
);
3208 staticpro (&searchbufs
[i
].syntax_table
);
3209 searchbufs
[i
].next
= (i
== REGEXP_CACHE_SIZE
-1 ? 0 : &searchbufs
[i
+1]);
3211 searchbuf_head
= &searchbufs
[0];
3213 DEFSYM (Qsearch_failed
, "search-failed");
3214 DEFSYM (Qinvalid_regexp
, "invalid-regexp");
3216 Fput (Qsearch_failed
, Qerror_conditions
,
3217 pure_cons (Qsearch_failed
, pure_cons (Qerror
, Qnil
)));
3218 Fput (Qsearch_failed
, Qerror_message
,
3219 make_pure_c_string ("Search failed"));
3221 Fput (Qinvalid_regexp
, Qerror_conditions
,
3222 pure_cons (Qinvalid_regexp
, pure_cons (Qerror
, Qnil
)));
3223 Fput (Qinvalid_regexp
, Qerror_message
,
3224 make_pure_c_string ("Invalid regexp"));
3226 last_thing_searched
= Qnil
;
3227 staticpro (&last_thing_searched
);
3229 saved_last_thing_searched
= Qnil
;
3230 staticpro (&saved_last_thing_searched
);
3232 DEFVAR_LISP ("search-spaces-regexp", Vsearch_spaces_regexp
,
3233 doc
: /* Regexp to substitute for bunches of spaces in regexp search.
3234 Some commands use this for user-specified regexps.
3235 Spaces that occur inside character classes or repetition operators
3236 or other such regexp constructs are not replaced with this.
3237 A value of nil (which is the normal value) means treat spaces literally. */);
3238 Vsearch_spaces_regexp
= Qnil
;
3240 DEFVAR_LISP ("inhibit-changing-match-data", Vinhibit_changing_match_data
,
3241 doc
: /* Internal use only.
3242 If non-nil, the primitive searching and matching functions
3243 such as `looking-at', `string-match', `re-search-forward', etc.,
3244 do not set the match data. The proper way to use this variable
3245 is to bind it with `let' around a small expression. */);
3246 Vinhibit_changing_match_data
= Qnil
;
3248 defsubr (&Slooking_at
);
3249 defsubr (&Sposix_looking_at
);
3250 defsubr (&Sstring_match
);
3251 defsubr (&Sposix_string_match
);
3252 defsubr (&Ssearch_forward
);
3253 defsubr (&Ssearch_backward
);
3254 defsubr (&Sword_search_regexp
);
3255 defsubr (&Sword_search_forward
);
3256 defsubr (&Sword_search_backward
);
3257 defsubr (&Sword_search_forward_lax
);
3258 defsubr (&Sword_search_backward_lax
);
3259 defsubr (&Sre_search_forward
);
3260 defsubr (&Sre_search_backward
);
3261 defsubr (&Sposix_search_forward
);
3262 defsubr (&Sposix_search_backward
);
3263 defsubr (&Sreplace_match
);
3264 defsubr (&Smatch_beginning
);
3265 defsubr (&Smatch_end
);
3266 defsubr (&Smatch_data
);
3267 defsubr (&Sset_match_data
);
3268 defsubr (&Sregexp_quote
);