1 /* String search routines for GNU Emacs.
2 Copyright (C) 1985, 86,87,93,94,97,98, 1999 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
28 #include "region-cache.h"
30 #include "blockinput.h"
31 #include "intervals.h"
33 #include <sys/types.h>
36 #define REGEXP_CACHE_SIZE 20
38 /* If the regexp is non-nil, then the buffer contains the compiled form
39 of that regexp, suitable for searching. */
42 struct regexp_cache
*next
;
44 struct re_pattern_buffer buf
;
46 /* Nonzero means regexp was compiled to do full POSIX backtracking. */
50 /* The instances of that struct. */
51 struct regexp_cache searchbufs
[REGEXP_CACHE_SIZE
];
53 /* The head of the linked list; points to the most recently used buffer. */
54 struct regexp_cache
*searchbuf_head
;
57 /* Every call to re_match, etc., must pass &search_regs as the regs
58 argument unless you can show it is unnecessary (i.e., if re_match
59 is certainly going to be called again before region-around-match
62 Since the registers are now dynamically allocated, we need to make
63 sure not to refer to the Nth register before checking that it has
64 been allocated by checking search_regs.num_regs.
66 The regex code keeps track of whether it has allocated the search
67 buffer using bits in the re_pattern_buffer. This means that whenever
68 you compile a new pattern, it completely forgets whether it has
69 allocated any registers, and will allocate new registers the next
70 time you call a searching or matching function. Therefore, we need
71 to call re_set_registers after compiling a new pattern or after
72 setting the match registers, so that the regex functions will be
73 able to free or re-allocate it properly. */
74 static struct re_registers search_regs
;
76 /* The buffer in which the last search was performed, or
77 Qt if the last search was done in a string;
78 Qnil if no searching has been done yet. */
79 static Lisp_Object last_thing_searched
;
81 /* error condition signaled when regexp compile_pattern fails */
83 Lisp_Object Qinvalid_regexp
;
85 static void set_search_regs ();
86 static void save_search_regs ();
87 static int simple_search ();
88 static int boyer_moore ();
89 static int search_buffer ();
94 error ("Stack overflow in regexp matcher");
97 /* Compile a regexp and signal a Lisp error if anything goes wrong.
98 PATTERN is the pattern to compile.
99 CP is the place to put the result.
100 TRANSLATE is a translation table for ignoring case, or nil for none.
101 REGP is the structure that says where to store the "register"
102 values that will result from matching this pattern.
103 If it is 0, we should compile the pattern not to record any
104 subexpression bounds.
105 POSIX is nonzero if we want full backtracking (POSIX style)
106 for this pattern. 0 means backtrack only enough to get a valid match.
107 MULTIBYTE is nonzero if we want to handle multibyte characters in
108 PATTERN. 0 means all multibyte characters are recognized just as
109 sequences of binary data. */
112 compile_pattern_1 (cp
, pattern
, translate
, regp
, posix
, multibyte
)
113 struct regexp_cache
*cp
;
115 Lisp_Object translate
;
116 struct re_registers
*regp
;
120 unsigned char *raw_pattern
;
121 int raw_pattern_size
;
125 /* MULTIBYTE says whether the text to be searched is multibyte.
126 We must convert PATTERN to match that, or we will not really
127 find things right. */
129 if (multibyte
== STRING_MULTIBYTE (pattern
))
131 raw_pattern
= (unsigned char *) XSTRING (pattern
)->data
;
132 raw_pattern_size
= STRING_BYTES (XSTRING (pattern
));
136 raw_pattern_size
= count_size_as_multibyte (XSTRING (pattern
)->data
,
137 XSTRING (pattern
)->size
);
138 raw_pattern
= (unsigned char *) alloca (raw_pattern_size
+ 1);
139 copy_text (XSTRING (pattern
)->data
, raw_pattern
,
140 XSTRING (pattern
)->size
, 0, 1);
144 /* Converting multibyte to single-byte.
146 ??? Perhaps this conversion should be done in a special way
147 by subtracting nonascii-insert-offset from each non-ASCII char,
148 so that only the multibyte chars which really correspond to
149 the chosen single-byte character set can possibly match. */
150 raw_pattern_size
= XSTRING (pattern
)->size
;
151 raw_pattern
= (unsigned char *) alloca (raw_pattern_size
+ 1);
152 copy_text (XSTRING (pattern
)->data
, raw_pattern
,
153 STRING_BYTES (XSTRING (pattern
)), 1, 0);
157 cp
->buf
.translate
= (! NILP (translate
) ? translate
: make_number (0));
159 cp
->buf
.multibyte
= multibyte
;
161 old
= re_set_syntax (RE_SYNTAX_EMACS
162 | (posix
? 0 : RE_NO_POSIX_BACKTRACKING
));
163 val
= (char *) re_compile_pattern ((char *)raw_pattern
,
164 raw_pattern_size
, &cp
->buf
);
168 Fsignal (Qinvalid_regexp
, Fcons (build_string (val
), Qnil
));
170 cp
->regexp
= Fcopy_sequence (pattern
);
173 /* Shrink each compiled regexp buffer in the cache
174 to the size actually used right now.
175 This is called from garbage collection. */
178 shrink_regexp_cache ()
180 struct regexp_cache
*cp
;
182 for (cp
= searchbuf_head
; cp
!= 0; cp
= cp
->next
)
184 cp
->buf
.allocated
= cp
->buf
.used
;
186 = (unsigned char *) realloc (cp
->buf
.buffer
, cp
->buf
.used
);
190 /* Compile a regexp if necessary, but first check to see if there's one in
192 PATTERN is the pattern to compile.
193 TRANSLATE is a translation table for ignoring case, or nil for none.
194 REGP is the structure that says where to store the "register"
195 values that will result from matching this pattern.
196 If it is 0, we should compile the pattern not to record any
197 subexpression bounds.
198 POSIX is nonzero if we want full backtracking (POSIX style)
199 for this pattern. 0 means backtrack only enough to get a valid match. */
201 struct re_pattern_buffer
*
202 compile_pattern (pattern
, regp
, translate
, posix
, multibyte
)
204 struct re_registers
*regp
;
205 Lisp_Object translate
;
206 int posix
, multibyte
;
208 struct regexp_cache
*cp
, **cpp
;
210 for (cpp
= &searchbuf_head
; ; cpp
= &cp
->next
)
213 /* Entries are initialized to nil, and may be set to nil by
214 compile_pattern_1 if the pattern isn't valid. Don't apply
215 XSTRING in those cases. However, compile_pattern_1 is only
216 applied to the cache entry we pick here to reuse. So nil
217 should never appear before a non-nil entry. */
218 if (NILP (cp
->regexp
))
220 if (XSTRING (cp
->regexp
)->size
== XSTRING (pattern
)->size
221 && STRING_MULTIBYTE (cp
->regexp
) == STRING_MULTIBYTE (pattern
)
222 && !NILP (Fstring_equal (cp
->regexp
, pattern
))
223 && EQ (cp
->buf
.translate
, (! NILP (translate
) ? translate
: make_number (0)))
224 && cp
->posix
== posix
225 && cp
->buf
.multibyte
== multibyte
)
228 /* If we're at the end of the cache, compile into the nil cell
229 we found, or the last (least recently used) cell with a
234 compile_pattern_1 (cp
, pattern
, translate
, regp
, posix
, multibyte
);
239 /* When we get here, cp (aka *cpp) contains the compiled pattern,
240 either because we found it in the cache or because we just compiled it.
241 Move it to the front of the queue to mark it as most recently used. */
243 cp
->next
= searchbuf_head
;
246 /* Advise the searching functions about the space we have allocated
247 for register data. */
249 re_set_registers (&cp
->buf
, regp
, regp
->num_regs
, regp
->start
, regp
->end
);
254 /* Error condition used for failing searches */
255 Lisp_Object Qsearch_failed
;
261 Fsignal (Qsearch_failed
, Fcons (arg
, Qnil
));
266 looking_at_1 (string
, posix
)
271 unsigned char *p1
, *p2
;
274 struct re_pattern_buffer
*bufp
;
276 if (running_asynch_code
)
279 CHECK_STRING (string
);
280 bufp
= compile_pattern (string
, &search_regs
,
281 (!NILP (current_buffer
->case_fold_search
)
282 ? DOWNCASE_TABLE
: Qnil
),
284 !NILP (current_buffer
->enable_multibyte_characters
));
287 QUIT
; /* Do a pending quit right away, to avoid paradoxical behavior */
289 /* Get pointers and sizes of the two strings
290 that make up the visible portion of the buffer. */
293 s1
= GPT_BYTE
- BEGV_BYTE
;
295 s2
= ZV_BYTE
- GPT_BYTE
;
299 s2
= ZV_BYTE
- BEGV_BYTE
;
304 s1
= ZV_BYTE
- BEGV_BYTE
;
308 re_match_object
= Qnil
;
310 i
= re_match_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
311 PT_BYTE
- BEGV_BYTE
, &search_regs
,
312 ZV_BYTE
- BEGV_BYTE
);
318 val
= (0 <= i
? Qt
: Qnil
);
320 for (i
= 0; i
< search_regs
.num_regs
; i
++)
321 if (search_regs
.start
[i
] >= 0)
324 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
326 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
328 XSETBUFFER (last_thing_searched
, current_buffer
);
332 DEFUN ("looking-at", Flooking_at
, Slooking_at
, 1, 1, 0,
333 doc
: /* Return t if text after point matches regular expression REGEXP.
334 This function modifies the match data that `match-beginning',
335 `match-end' and `match-data' access; save and restore the match
336 data if you want to preserve them. */)
340 return looking_at_1 (regexp
, 0);
343 DEFUN ("posix-looking-at", Fposix_looking_at
, Sposix_looking_at
, 1, 1, 0,
344 doc
: /* Return t if text after point matches regular expression REGEXP.
345 Find the longest match, in accord with Posix regular expression rules.
346 This function modifies the match data that `match-beginning',
347 `match-end' and `match-data' access; save and restore the match
348 data if you want to preserve them. */)
352 return looking_at_1 (regexp
, 1);
356 string_match_1 (regexp
, string
, start
, posix
)
357 Lisp_Object regexp
, string
, start
;
361 struct re_pattern_buffer
*bufp
;
365 if (running_asynch_code
)
368 CHECK_STRING (regexp
);
369 CHECK_STRING (string
);
372 pos
= 0, pos_byte
= 0;
375 int len
= XSTRING (string
)->size
;
377 CHECK_NUMBER (start
);
379 if (pos
< 0 && -pos
<= len
)
381 else if (0 > pos
|| pos
> len
)
382 args_out_of_range (string
, start
);
383 pos_byte
= string_char_to_byte (string
, pos
);
386 bufp
= compile_pattern (regexp
, &search_regs
,
387 (!NILP (current_buffer
->case_fold_search
)
388 ? DOWNCASE_TABLE
: Qnil
),
390 STRING_MULTIBYTE (string
));
392 re_match_object
= string
;
394 val
= re_search (bufp
, (char *) XSTRING (string
)->data
,
395 STRING_BYTES (XSTRING (string
)), pos_byte
,
396 STRING_BYTES (XSTRING (string
)) - pos_byte
,
399 last_thing_searched
= Qt
;
402 if (val
< 0) return Qnil
;
404 for (i
= 0; i
< search_regs
.num_regs
; i
++)
405 if (search_regs
.start
[i
] >= 0)
408 = string_byte_to_char (string
, search_regs
.start
[i
]);
410 = string_byte_to_char (string
, search_regs
.end
[i
]);
413 return make_number (string_byte_to_char (string
, val
));
416 DEFUN ("string-match", Fstring_match
, Sstring_match
, 2, 3, 0,
417 doc
: /* Return index of start of first match for REGEXP in STRING, or nil.
418 Case is ignored if `case-fold-search' is non-nil in the current buffer.
419 If third arg START is non-nil, start search at that index in STRING.
420 For index of first char beyond the match, do (match-end 0).
421 `match-end' and `match-beginning' also give indices of substrings
422 matched by parenthesis constructs in the pattern. */)
423 (regexp
, string
, start
)
424 Lisp_Object regexp
, string
, start
;
426 return string_match_1 (regexp
, string
, start
, 0);
429 DEFUN ("posix-string-match", Fposix_string_match
, Sposix_string_match
, 2, 3, 0,
430 doc
: /* Return index of start of first match for REGEXP in STRING, or nil.
431 Find the longest match, in accord with Posix regular expression rules.
432 Case is ignored if `case-fold-search' is non-nil in the current buffer.
433 If third arg START is non-nil, start search at that index in STRING.
434 For index of first char beyond the match, do (match-end 0).
435 `match-end' and `match-beginning' also give indices of substrings
436 matched by parenthesis constructs in the pattern. */)
437 (regexp
, string
, start
)
438 Lisp_Object regexp
, string
, start
;
440 return string_match_1 (regexp
, string
, start
, 1);
443 /* Match REGEXP against STRING, searching all of STRING,
444 and return the index of the match, or negative on failure.
445 This does not clobber the match data. */
448 fast_string_match (regexp
, string
)
449 Lisp_Object regexp
, string
;
452 struct re_pattern_buffer
*bufp
;
454 bufp
= compile_pattern (regexp
, 0, Qnil
,
455 0, STRING_MULTIBYTE (string
));
457 re_match_object
= string
;
459 val
= re_search (bufp
, (char *) XSTRING (string
)->data
,
460 STRING_BYTES (XSTRING (string
)), 0,
461 STRING_BYTES (XSTRING (string
)), 0);
466 /* Match REGEXP against STRING, searching all of STRING ignoring case,
467 and return the index of the match, or negative on failure.
468 This does not clobber the match data.
469 We assume that STRING contains single-byte characters. */
471 extern Lisp_Object Vascii_downcase_table
;
474 fast_c_string_match_ignore_case (regexp
, string
)
479 struct re_pattern_buffer
*bufp
;
480 int len
= strlen (string
);
482 regexp
= string_make_unibyte (regexp
);
483 re_match_object
= Qt
;
484 bufp
= compile_pattern (regexp
, 0,
485 Vascii_downcase_table
, 0,
488 val
= re_search (bufp
, string
, len
, 0, len
, 0);
493 /* The newline cache: remembering which sections of text have no newlines. */
495 /* If the user has requested newline caching, make sure it's on.
496 Otherwise, make sure it's off.
497 This is our cheezy way of associating an action with the change of
498 state of a buffer-local variable. */
500 newline_cache_on_off (buf
)
503 if (NILP (buf
->cache_long_line_scans
))
505 /* It should be off. */
506 if (buf
->newline_cache
)
508 free_region_cache (buf
->newline_cache
);
509 buf
->newline_cache
= 0;
514 /* It should be on. */
515 if (buf
->newline_cache
== 0)
516 buf
->newline_cache
= new_region_cache ();
521 /* Search for COUNT instances of the character TARGET between START and END.
523 If COUNT is positive, search forwards; END must be >= START.
524 If COUNT is negative, search backwards for the -COUNTth instance;
525 END must be <= START.
526 If COUNT is zero, do anything you please; run rogue, for all I care.
528 If END is zero, use BEGV or ZV instead, as appropriate for the
529 direction indicated by COUNT.
531 If we find COUNT instances, set *SHORTAGE to zero, and return the
532 position after the COUNTth match. Note that for reverse motion
533 this is not the same as the usual convention for Emacs motion commands.
535 If we don't find COUNT instances before reaching END, set *SHORTAGE
536 to the number of TARGETs left unfound, and return END.
538 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
539 except when inside redisplay. */
542 scan_buffer (target
, start
, end
, count
, shortage
, allow_quit
)
549 struct region_cache
*newline_cache
;
560 if (! end
) end
= BEGV
;
563 newline_cache_on_off (current_buffer
);
564 newline_cache
= current_buffer
->newline_cache
;
569 immediate_quit
= allow_quit
;
574 /* Our innermost scanning loop is very simple; it doesn't know
575 about gaps, buffer ends, or the newline cache. ceiling is
576 the position of the last character before the next such
577 obstacle --- the last character the dumb search loop should
579 int ceiling_byte
= CHAR_TO_BYTE (end
) - 1;
580 int start_byte
= CHAR_TO_BYTE (start
);
583 /* If we're looking for a newline, consult the newline cache
584 to see where we can avoid some scanning. */
585 if (target
== '\n' && newline_cache
)
589 while (region_cache_forward
590 (current_buffer
, newline_cache
, start_byte
, &next_change
))
591 start_byte
= next_change
;
592 immediate_quit
= allow_quit
;
594 /* START should never be after END. */
595 if (start_byte
> ceiling_byte
)
596 start_byte
= ceiling_byte
;
598 /* Now the text after start is an unknown region, and
599 next_change is the position of the next known region. */
600 ceiling_byte
= min (next_change
- 1, ceiling_byte
);
603 /* The dumb loop can only scan text stored in contiguous
604 bytes. BUFFER_CEILING_OF returns the last character
605 position that is contiguous, so the ceiling is the
606 position after that. */
607 tem
= BUFFER_CEILING_OF (start_byte
);
608 ceiling_byte
= min (tem
, ceiling_byte
);
611 /* The termination address of the dumb loop. */
612 register unsigned char *ceiling_addr
613 = BYTE_POS_ADDR (ceiling_byte
) + 1;
614 register unsigned char *cursor
615 = BYTE_POS_ADDR (start_byte
);
616 unsigned char *base
= cursor
;
618 while (cursor
< ceiling_addr
)
620 unsigned char *scan_start
= cursor
;
623 while (*cursor
!= target
&& ++cursor
< ceiling_addr
)
626 /* If we're looking for newlines, cache the fact that
627 the region from start to cursor is free of them. */
628 if (target
== '\n' && newline_cache
)
629 know_region_cache (current_buffer
, newline_cache
,
630 start_byte
+ scan_start
- base
,
631 start_byte
+ cursor
- base
);
633 /* Did we find the target character? */
634 if (cursor
< ceiling_addr
)
639 return BYTE_TO_CHAR (start_byte
+ cursor
- base
+ 1);
645 start
= BYTE_TO_CHAR (start_byte
+ cursor
- base
);
651 /* The last character to check before the next obstacle. */
652 int ceiling_byte
= CHAR_TO_BYTE (end
);
653 int start_byte
= CHAR_TO_BYTE (start
);
656 /* Consult the newline cache, if appropriate. */
657 if (target
== '\n' && newline_cache
)
661 while (region_cache_backward
662 (current_buffer
, newline_cache
, start_byte
, &next_change
))
663 start_byte
= next_change
;
664 immediate_quit
= allow_quit
;
666 /* Start should never be at or before end. */
667 if (start_byte
<= ceiling_byte
)
668 start_byte
= ceiling_byte
+ 1;
670 /* Now the text before start is an unknown region, and
671 next_change is the position of the next known region. */
672 ceiling_byte
= max (next_change
, ceiling_byte
);
675 /* Stop scanning before the gap. */
676 tem
= BUFFER_FLOOR_OF (start_byte
- 1);
677 ceiling_byte
= max (tem
, ceiling_byte
);
680 /* The termination address of the dumb loop. */
681 register unsigned char *ceiling_addr
= BYTE_POS_ADDR (ceiling_byte
);
682 register unsigned char *cursor
= BYTE_POS_ADDR (start_byte
- 1);
683 unsigned char *base
= cursor
;
685 while (cursor
>= ceiling_addr
)
687 unsigned char *scan_start
= cursor
;
689 while (*cursor
!= target
&& --cursor
>= ceiling_addr
)
692 /* If we're looking for newlines, cache the fact that
693 the region from after the cursor to start is free of them. */
694 if (target
== '\n' && newline_cache
)
695 know_region_cache (current_buffer
, newline_cache
,
696 start_byte
+ cursor
- base
,
697 start_byte
+ scan_start
- base
);
699 /* Did we find the target character? */
700 if (cursor
>= ceiling_addr
)
705 return BYTE_TO_CHAR (start_byte
+ cursor
- base
);
711 start
= BYTE_TO_CHAR (start_byte
+ cursor
- base
);
717 *shortage
= count
* direction
;
721 /* Search for COUNT instances of a line boundary, which means either a
722 newline or (if selective display enabled) a carriage return.
723 Start at START. If COUNT is negative, search backwards.
725 We report the resulting position by calling TEMP_SET_PT_BOTH.
727 If we find COUNT instances. we position after (always after,
728 even if scanning backwards) the COUNTth match, and return 0.
730 If we don't find COUNT instances before reaching the end of the
731 buffer (or the beginning, if scanning backwards), we return
732 the number of line boundaries left unfound, and position at
733 the limit we bumped up against.
735 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
736 except in special cases. */
739 scan_newline (start
, start_byte
, limit
, limit_byte
, count
, allow_quit
)
740 int start
, start_byte
;
741 int limit
, limit_byte
;
745 int direction
= ((count
> 0) ? 1 : -1);
747 register unsigned char *cursor
;
750 register int ceiling
;
751 register unsigned char *ceiling_addr
;
753 int old_immediate_quit
= immediate_quit
;
755 /* The code that follows is like scan_buffer
756 but checks for either newline or carriage return. */
761 start_byte
= CHAR_TO_BYTE (start
);
765 while (start_byte
< limit_byte
)
767 ceiling
= BUFFER_CEILING_OF (start_byte
);
768 ceiling
= min (limit_byte
- 1, ceiling
);
769 ceiling_addr
= BYTE_POS_ADDR (ceiling
) + 1;
770 base
= (cursor
= BYTE_POS_ADDR (start_byte
));
773 while (*cursor
!= '\n' && ++cursor
!= ceiling_addr
)
776 if (cursor
!= ceiling_addr
)
780 immediate_quit
= old_immediate_quit
;
781 start_byte
= start_byte
+ cursor
- base
+ 1;
782 start
= BYTE_TO_CHAR (start_byte
);
783 TEMP_SET_PT_BOTH (start
, start_byte
);
787 if (++cursor
== ceiling_addr
)
793 start_byte
+= cursor
- base
;
798 while (start_byte
> limit_byte
)
800 ceiling
= BUFFER_FLOOR_OF (start_byte
- 1);
801 ceiling
= max (limit_byte
, ceiling
);
802 ceiling_addr
= BYTE_POS_ADDR (ceiling
) - 1;
803 base
= (cursor
= BYTE_POS_ADDR (start_byte
- 1) + 1);
806 while (--cursor
!= ceiling_addr
&& *cursor
!= '\n')
809 if (cursor
!= ceiling_addr
)
813 immediate_quit
= old_immediate_quit
;
814 /* Return the position AFTER the match we found. */
815 start_byte
= start_byte
+ cursor
- base
+ 1;
816 start
= BYTE_TO_CHAR (start_byte
);
817 TEMP_SET_PT_BOTH (start
, start_byte
);
824 /* Here we add 1 to compensate for the last decrement
825 of CURSOR, which took it past the valid range. */
826 start_byte
+= cursor
- base
+ 1;
830 TEMP_SET_PT_BOTH (limit
, limit_byte
);
831 immediate_quit
= old_immediate_quit
;
833 return count
* direction
;
837 find_next_newline_no_quit (from
, cnt
)
838 register int from
, cnt
;
840 return scan_buffer ('\n', from
, 0, cnt
, (int *) 0, 0);
843 /* Like find_next_newline, but returns position before the newline,
844 not after, and only search up to TO. This isn't just
845 find_next_newline (...)-1, because you might hit TO. */
848 find_before_next_newline (from
, to
, cnt
)
852 int pos
= scan_buffer ('\n', from
, to
, cnt
, &shortage
, 1);
860 /* Subroutines of Lisp buffer search functions. */
863 search_command (string
, bound
, noerror
, count
, direction
, RE
, posix
)
864 Lisp_Object string
, bound
, noerror
, count
;
875 CHECK_NUMBER (count
);
879 CHECK_STRING (string
);
883 lim
= ZV
, lim_byte
= ZV_BYTE
;
885 lim
= BEGV
, lim_byte
= BEGV_BYTE
;
889 CHECK_NUMBER_COERCE_MARKER (bound
);
891 if (n
> 0 ? lim
< PT
: lim
> PT
)
892 error ("Invalid search bound (wrong side of point)");
894 lim
= ZV
, lim_byte
= ZV_BYTE
;
896 lim
= BEGV
, lim_byte
= BEGV_BYTE
;
898 lim_byte
= CHAR_TO_BYTE (lim
);
901 np
= search_buffer (string
, PT
, PT_BYTE
, lim
, lim_byte
, n
, RE
,
902 (!NILP (current_buffer
->case_fold_search
)
903 ? current_buffer
->case_canon_table
905 (!NILP (current_buffer
->case_fold_search
)
906 ? current_buffer
->case_eqv_table
912 return signal_failure (string
);
913 if (!EQ (noerror
, Qt
))
915 if (lim
< BEGV
|| lim
> ZV
)
917 SET_PT_BOTH (lim
, lim_byte
);
919 #if 0 /* This would be clean, but maybe programs depend on
920 a value of nil here. */
928 if (np
< BEGV
|| np
> ZV
)
933 return make_number (np
);
936 /* Return 1 if REGEXP it matches just one constant string. */
939 trivial_regexp_p (regexp
)
942 int len
= STRING_BYTES (XSTRING (regexp
));
943 unsigned char *s
= XSTRING (regexp
)->data
;
948 case '.': case '*': case '+': case '?': case '[': case '^': case '$':
955 case '|': case '(': case ')': case '`': case '\'': case 'b':
956 case 'B': case '<': case '>': case 'w': case 'W': case 's':
957 case 'S': case '=': case '{': case '}':
958 case 'c': case 'C': /* for categoryspec and notcategoryspec */
959 case '1': case '2': case '3': case '4': case '5':
960 case '6': case '7': case '8': case '9':
968 /* Search for the n'th occurrence of STRING in the current buffer,
969 starting at position POS and stopping at position LIM,
970 treating STRING as a literal string if RE is false or as
971 a regular expression if RE is true.
973 If N is positive, searching is forward and LIM must be greater than POS.
974 If N is negative, searching is backward and LIM must be less than POS.
976 Returns -x if x occurrences remain to be found (x > 0),
977 or else the position at the beginning of the Nth occurrence
978 (if searching backward) or the end (if searching forward).
980 POSIX is nonzero if we want full backtracking (POSIX style)
981 for this pattern. 0 means backtrack only enough to get a valid match. */
983 #define TRANSLATE(out, trt, d) \
989 temp = Faref (trt, make_number (d)); \
990 if (INTEGERP (temp)) \
1001 search_buffer (string
, pos
, pos_byte
, lim
, lim_byte
, n
,
1002 RE
, trt
, inverse_trt
, posix
)
1011 Lisp_Object inverse_trt
;
1014 int len
= XSTRING (string
)->size
;
1015 int len_byte
= STRING_BYTES (XSTRING (string
));
1018 if (running_asynch_code
)
1019 save_search_regs ();
1021 /* Searching 0 times means don't move. */
1022 /* Null string is found at starting position. */
1023 if (len
== 0 || n
== 0)
1025 set_search_regs (pos_byte
, 0);
1029 if (RE
&& !trivial_regexp_p (string
))
1031 unsigned char *p1
, *p2
;
1033 struct re_pattern_buffer
*bufp
;
1035 bufp
= compile_pattern (string
, &search_regs
, trt
, posix
,
1036 !NILP (current_buffer
->enable_multibyte_characters
));
1038 immediate_quit
= 1; /* Quit immediately if user types ^G,
1039 because letting this function finish
1040 can take too long. */
1041 QUIT
; /* Do a pending quit right away,
1042 to avoid paradoxical behavior */
1043 /* Get pointers and sizes of the two strings
1044 that make up the visible portion of the buffer. */
1047 s1
= GPT_BYTE
- BEGV_BYTE
;
1049 s2
= ZV_BYTE
- GPT_BYTE
;
1053 s2
= ZV_BYTE
- BEGV_BYTE
;
1058 s1
= ZV_BYTE
- BEGV_BYTE
;
1061 re_match_object
= Qnil
;
1066 val
= re_search_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
1067 pos_byte
- BEGV_BYTE
, lim_byte
- pos_byte
,
1069 /* Don't allow match past current point */
1070 pos_byte
- BEGV_BYTE
);
1073 matcher_overflow ();
1077 pos_byte
= search_regs
.start
[0] + BEGV_BYTE
;
1078 for (i
= 0; i
< search_regs
.num_regs
; i
++)
1079 if (search_regs
.start
[i
] >= 0)
1081 search_regs
.start
[i
]
1082 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
1084 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
1086 XSETBUFFER (last_thing_searched
, current_buffer
);
1087 /* Set pos to the new position. */
1088 pos
= search_regs
.start
[0];
1100 val
= re_search_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
1101 pos_byte
- BEGV_BYTE
, lim_byte
- pos_byte
,
1103 lim_byte
- BEGV_BYTE
);
1106 matcher_overflow ();
1110 pos_byte
= search_regs
.end
[0] + BEGV_BYTE
;
1111 for (i
= 0; i
< search_regs
.num_regs
; i
++)
1112 if (search_regs
.start
[i
] >= 0)
1114 search_regs
.start
[i
]
1115 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
1117 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
1119 XSETBUFFER (last_thing_searched
, current_buffer
);
1120 pos
= search_regs
.end
[0];
1132 else /* non-RE case */
1134 unsigned char *raw_pattern
, *pat
;
1135 int raw_pattern_size
;
1136 int raw_pattern_size_byte
;
1137 unsigned char *patbuf
;
1138 int multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
1139 unsigned char *base_pat
= XSTRING (string
)->data
;
1140 int charset_base
= -1;
1141 int boyer_moore_ok
= 1;
1143 /* MULTIBYTE says whether the text to be searched is multibyte.
1144 We must convert PATTERN to match that, or we will not really
1145 find things right. */
1147 if (multibyte
== STRING_MULTIBYTE (string
))
1149 raw_pattern
= (unsigned char *) XSTRING (string
)->data
;
1150 raw_pattern_size
= XSTRING (string
)->size
;
1151 raw_pattern_size_byte
= STRING_BYTES (XSTRING (string
));
1155 raw_pattern_size
= XSTRING (string
)->size
;
1156 raw_pattern_size_byte
1157 = count_size_as_multibyte (XSTRING (string
)->data
,
1159 raw_pattern
= (unsigned char *) alloca (raw_pattern_size_byte
+ 1);
1160 copy_text (XSTRING (string
)->data
, raw_pattern
,
1161 XSTRING (string
)->size
, 0, 1);
1165 /* Converting multibyte to single-byte.
1167 ??? Perhaps this conversion should be done in a special way
1168 by subtracting nonascii-insert-offset from each non-ASCII char,
1169 so that only the multibyte chars which really correspond to
1170 the chosen single-byte character set can possibly match. */
1171 raw_pattern_size
= XSTRING (string
)->size
;
1172 raw_pattern_size_byte
= XSTRING (string
)->size
;
1173 raw_pattern
= (unsigned char *) alloca (raw_pattern_size
+ 1);
1174 copy_text (XSTRING (string
)->data
, raw_pattern
,
1175 STRING_BYTES (XSTRING (string
)), 1, 0);
1178 /* Copy and optionally translate the pattern. */
1179 len
= raw_pattern_size
;
1180 len_byte
= raw_pattern_size_byte
;
1181 patbuf
= (unsigned char *) alloca (len_byte
);
1183 base_pat
= raw_pattern
;
1188 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
1189 int c
, translated
, inverse
;
1190 int in_charlen
, charlen
;
1192 /* If we got here and the RE flag is set, it's because we're
1193 dealing with a regexp known to be trivial, so the backslash
1194 just quotes the next character. */
1195 if (RE
&& *base_pat
== '\\')
1202 c
= STRING_CHAR_AND_LENGTH (base_pat
, len_byte
, in_charlen
);
1204 /* Translate the character, if requested. */
1205 TRANSLATE (translated
, trt
, c
);
1206 /* If translation changed the byte-length, go back
1207 to the original character. */
1208 charlen
= CHAR_STRING (translated
, str
);
1209 if (in_charlen
!= charlen
)
1212 charlen
= CHAR_STRING (c
, str
);
1215 /* If we are searching for something strange,
1216 an invalid multibyte code, don't use boyer-moore. */
1217 if (! ASCII_BYTE_P (translated
)
1218 && (charlen
== 1 /* 8bit code */
1219 || charlen
!= in_charlen
/* invalid multibyte code */
1223 TRANSLATE (inverse
, inverse_trt
, c
);
1225 /* Did this char actually get translated?
1226 Would any other char get translated into it? */
1227 if (translated
!= c
|| inverse
!= c
)
1229 /* Keep track of which character set row
1230 contains the characters that need translation. */
1231 int charset_base_code
= c
& ~CHAR_FIELD3_MASK
;
1232 int inverse_charset_base
= inverse
& ~CHAR_FIELD3_MASK
;
1234 if (charset_base_code
!= inverse_charset_base
)
1236 else if (charset_base
== -1)
1237 charset_base
= charset_base_code
;
1238 else if (charset_base
!= charset_base_code
)
1239 /* If two different rows appear, needing translation,
1240 then we cannot use boyer_moore search. */
1244 /* Store this character into the translated pattern. */
1245 bcopy (str
, pat
, charlen
);
1247 base_pat
+= in_charlen
;
1248 len_byte
-= in_charlen
;
1253 /* Unibyte buffer. */
1259 /* If we got here and the RE flag is set, it's because we're
1260 dealing with a regexp known to be trivial, so the backslash
1261 just quotes the next character. */
1262 if (RE
&& *base_pat
== '\\')
1268 TRANSLATE (translated
, trt
, c
);
1269 *pat
++ = translated
;
1273 len_byte
= pat
- patbuf
;
1274 len
= raw_pattern_size
;
1275 pat
= base_pat
= patbuf
;
1278 return boyer_moore (n
, pat
, len
, len_byte
, trt
, inverse_trt
,
1279 pos
, pos_byte
, lim
, lim_byte
,
1282 return simple_search (n
, pat
, len
, len_byte
, trt
,
1283 pos
, pos_byte
, lim
, lim_byte
);
1287 /* Do a simple string search N times for the string PAT,
1288 whose length is LEN/LEN_BYTE,
1289 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1290 TRT is the translation table.
1292 Return the character position where the match is found.
1293 Otherwise, if M matches remained to be found, return -M.
1295 This kind of search works regardless of what is in PAT and
1296 regardless of what is in TRT. It is used in cases where
1297 boyer_moore cannot work. */
1300 simple_search (n
, pat
, len
, len_byte
, trt
, pos
, pos_byte
, lim
, lim_byte
)
1308 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
1309 int forward
= n
> 0;
1311 if (lim
> pos
&& multibyte
)
1316 /* Try matching at position POS. */
1318 int this_pos_byte
= pos_byte
;
1320 int this_len_byte
= len_byte
;
1321 unsigned char *p
= pat
;
1322 if (pos
+ len
> lim
)
1325 while (this_len
> 0)
1327 int charlen
, buf_charlen
;
1330 pat_ch
= STRING_CHAR_AND_LENGTH (p
, this_len_byte
, charlen
);
1331 buf_ch
= STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte
),
1332 ZV_BYTE
- this_pos_byte
,
1334 TRANSLATE (buf_ch
, trt
, buf_ch
);
1336 if (buf_ch
!= pat_ch
)
1339 this_len_byte
-= charlen
;
1343 this_pos_byte
+= buf_charlen
;
1350 pos_byte
+= len_byte
;
1354 INC_BOTH (pos
, pos_byte
);
1364 /* Try matching at position POS. */
1367 unsigned char *p
= pat
;
1369 if (pos
+ len
> lim
)
1372 while (this_len
> 0)
1375 int buf_ch
= FETCH_BYTE (this_pos
);
1376 TRANSLATE (buf_ch
, trt
, buf_ch
);
1378 if (buf_ch
!= pat_ch
)
1396 /* Backwards search. */
1397 else if (lim
< pos
&& multibyte
)
1402 /* Try matching at position POS. */
1403 int this_pos
= pos
- len
;
1404 int this_pos_byte
= pos_byte
- len_byte
;
1406 int this_len_byte
= len_byte
;
1407 unsigned char *p
= pat
;
1409 if (pos
- len
< lim
)
1412 while (this_len
> 0)
1414 int charlen
, buf_charlen
;
1417 pat_ch
= STRING_CHAR_AND_LENGTH (p
, this_len_byte
, charlen
);
1418 buf_ch
= STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte
),
1419 ZV_BYTE
- this_pos_byte
,
1421 TRANSLATE (buf_ch
, trt
, buf_ch
);
1423 if (buf_ch
!= pat_ch
)
1426 this_len_byte
-= charlen
;
1429 this_pos_byte
+= buf_charlen
;
1436 pos_byte
-= len_byte
;
1440 DEC_BOTH (pos
, pos_byte
);
1450 /* Try matching at position POS. */
1451 int this_pos
= pos
- len
;
1453 unsigned char *p
= pat
;
1455 if (pos
- len
< lim
)
1458 while (this_len
> 0)
1461 int buf_ch
= FETCH_BYTE (this_pos
);
1462 TRANSLATE (buf_ch
, trt
, buf_ch
);
1464 if (buf_ch
!= pat_ch
)
1486 set_search_regs ((multibyte
? pos_byte
: pos
) - len_byte
, len_byte
);
1488 set_search_regs (multibyte
? pos_byte
: pos
, len_byte
);
1498 /* Do Boyer-Moore search N times for the string PAT,
1499 whose length is LEN/LEN_BYTE,
1500 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1501 DIRECTION says which direction we search in.
1502 TRT and INVERSE_TRT are translation tables.
1504 This kind of search works if all the characters in PAT that have
1505 nontrivial translation are the same aside from the last byte. This
1506 makes it possible to translate just the last byte of a character,
1507 and do so after just a simple test of the context.
1509 If that criterion is not satisfied, do not call this function. */
1512 boyer_moore (n
, base_pat
, len
, len_byte
, trt
, inverse_trt
,
1513 pos
, pos_byte
, lim
, lim_byte
, charset_base
)
1515 unsigned char *base_pat
;
1518 Lisp_Object inverse_trt
;
1523 int direction
= ((n
> 0) ? 1 : -1);
1524 register int dirlen
;
1525 int infinity
, limit
, stride_for_teases
= 0;
1526 register int *BM_tab
;
1528 register unsigned char *cursor
, *p_limit
;
1530 unsigned char *pat
, *pat_end
;
1531 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
1533 unsigned char simple_translate
[0400];
1534 int translate_prev_byte
= 0;
1535 int translate_anteprev_byte
= 0;
1538 int BM_tab_space
[0400];
1539 BM_tab
= &BM_tab_space
[0];
1541 BM_tab
= (int *) alloca (0400 * sizeof (int));
1543 /* The general approach is that we are going to maintain that we know */
1544 /* the first (closest to the present position, in whatever direction */
1545 /* we're searching) character that could possibly be the last */
1546 /* (furthest from present position) character of a valid match. We */
1547 /* advance the state of our knowledge by looking at that character */
1548 /* and seeing whether it indeed matches the last character of the */
1549 /* pattern. If it does, we take a closer look. If it does not, we */
1550 /* move our pointer (to putative last characters) as far as is */
1551 /* logically possible. This amount of movement, which I call a */
1552 /* stride, will be the length of the pattern if the actual character */
1553 /* appears nowhere in the pattern, otherwise it will be the distance */
1554 /* from the last occurrence of that character to the end of the */
1556 /* As a coding trick, an enormous stride is coded into the table for */
1557 /* characters that match the last character. This allows use of only */
1558 /* a single test, a test for having gone past the end of the */
1559 /* permissible match region, to test for both possible matches (when */
1560 /* the stride goes past the end immediately) and failure to */
1561 /* match (where you get nudged past the end one stride at a time). */
1563 /* Here we make a "mickey mouse" BM table. The stride of the search */
1564 /* is determined only by the last character of the putative match. */
1565 /* If that character does not match, we will stride the proper */
1566 /* distance to propose a match that superimposes it on the last */
1567 /* instance of a character that matches it (per trt), or misses */
1568 /* it entirely if there is none. */
1570 dirlen
= len_byte
* direction
;
1571 infinity
= dirlen
- (lim_byte
+ pos_byte
+ len_byte
+ len_byte
) * direction
;
1573 /* Record position after the end of the pattern. */
1574 pat_end
= base_pat
+ len_byte
;
1575 /* BASE_PAT points to a character that we start scanning from.
1576 It is the first character in a forward search,
1577 the last character in a backward search. */
1579 base_pat
= pat_end
- 1;
1581 BM_tab_base
= BM_tab
;
1583 j
= dirlen
; /* to get it in a register */
1584 /* A character that does not appear in the pattern induces a */
1585 /* stride equal to the pattern length. */
1586 while (BM_tab_base
!= BM_tab
)
1594 /* We use this for translation, instead of TRT itself.
1595 We fill this in to handle the characters that actually
1596 occur in the pattern. Others don't matter anyway! */
1597 bzero (simple_translate
, sizeof simple_translate
);
1598 for (i
= 0; i
< 0400; i
++)
1599 simple_translate
[i
] = i
;
1602 while (i
!= infinity
)
1604 unsigned char *ptr
= base_pat
+ i
;
1612 int this_translated
= 1;
1615 /* Is *PTR the last byte of a character? */
1616 && (pat_end
- ptr
== 1 || CHAR_HEAD_P (ptr
[1])))
1618 unsigned char *charstart
= ptr
;
1619 while (! CHAR_HEAD_P (*charstart
))
1621 untranslated
= STRING_CHAR (charstart
, ptr
- charstart
+ 1);
1622 if (charset_base
== (untranslated
& ~CHAR_FIELD3_MASK
))
1624 TRANSLATE (ch
, trt
, untranslated
);
1625 if (! CHAR_HEAD_P (*ptr
))
1627 translate_prev_byte
= ptr
[-1];
1628 if (! CHAR_HEAD_P (translate_prev_byte
))
1629 translate_anteprev_byte
= ptr
[-2];
1634 this_translated
= 0;
1638 else if (!multibyte
)
1639 TRANSLATE (ch
, trt
, *ptr
);
1643 this_translated
= 0;
1647 j
= ((unsigned char) ch
) | 0200;
1649 j
= (unsigned char) ch
;
1652 stride_for_teases
= BM_tab
[j
];
1654 BM_tab
[j
] = dirlen
- i
;
1655 /* A translation table is accompanied by its inverse -- see */
1656 /* comment following downcase_table for details */
1657 if (this_translated
)
1659 int starting_ch
= ch
;
1663 TRANSLATE (ch
, inverse_trt
, ch
);
1665 j
= ((unsigned char) ch
) | 0200;
1667 j
= (unsigned char) ch
;
1669 /* For all the characters that map into CH,
1670 set up simple_translate to map the last byte
1672 simple_translate
[j
] = starting_j
;
1673 if (ch
== starting_ch
)
1675 BM_tab
[j
] = dirlen
- i
;
1684 stride_for_teases
= BM_tab
[j
];
1685 BM_tab
[j
] = dirlen
- i
;
1687 /* stride_for_teases tells how much to stride if we get a */
1688 /* match on the far character but are subsequently */
1689 /* disappointed, by recording what the stride would have been */
1690 /* for that character if the last character had been */
1693 infinity
= dirlen
- infinity
;
1694 pos_byte
+= dirlen
- ((direction
> 0) ? direction
: 0);
1695 /* loop invariant - POS_BYTE points at where last char (first
1696 char if reverse) of pattern would align in a possible match. */
1700 unsigned char *tail_end_ptr
;
1702 /* It's been reported that some (broken) compiler thinks that
1703 Boolean expressions in an arithmetic context are unsigned.
1704 Using an explicit ?1:0 prevents this. */
1705 if ((lim_byte
- pos_byte
- ((direction
> 0) ? 1 : 0)) * direction
1707 return (n
* (0 - direction
));
1708 /* First we do the part we can by pointers (maybe nothing) */
1711 limit
= pos_byte
- dirlen
+ direction
;
1714 limit
= BUFFER_CEILING_OF (limit
);
1715 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1716 can take on without hitting edge of buffer or the gap. */
1717 limit
= min (limit
, pos_byte
+ 20000);
1718 limit
= min (limit
, lim_byte
- 1);
1722 limit
= BUFFER_FLOOR_OF (limit
);
1723 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1724 can take on without hitting edge of buffer or the gap. */
1725 limit
= max (limit
, pos_byte
- 20000);
1726 limit
= max (limit
, lim_byte
);
1728 tail_end
= BUFFER_CEILING_OF (pos_byte
) + 1;
1729 tail_end_ptr
= BYTE_POS_ADDR (tail_end
);
1731 if ((limit
- pos_byte
) * direction
> 20)
1735 p_limit
= BYTE_POS_ADDR (limit
);
1736 p2
= (cursor
= BYTE_POS_ADDR (pos_byte
));
1737 /* In this loop, pos + cursor - p2 is the surrogate for pos */
1738 while (1) /* use one cursor setting as long as i can */
1740 if (direction
> 0) /* worth duplicating */
1742 /* Use signed comparison if appropriate
1743 to make cursor+infinity sure to be > p_limit.
1744 Assuming that the buffer lies in a range of addresses
1745 that are all "positive" (as ints) or all "negative",
1746 either kind of comparison will work as long
1747 as we don't step by infinity. So pick the kind
1748 that works when we do step by infinity. */
1749 if ((EMACS_INT
) (p_limit
+ infinity
) > (EMACS_INT
) p_limit
)
1750 while ((EMACS_INT
) cursor
<= (EMACS_INT
) p_limit
)
1751 cursor
+= BM_tab
[*cursor
];
1753 while ((EMACS_UINT
) cursor
<= (EMACS_UINT
) p_limit
)
1754 cursor
+= BM_tab
[*cursor
];
1758 if ((EMACS_INT
) (p_limit
+ infinity
) < (EMACS_INT
) p_limit
)
1759 while ((EMACS_INT
) cursor
>= (EMACS_INT
) p_limit
)
1760 cursor
+= BM_tab
[*cursor
];
1762 while ((EMACS_UINT
) cursor
>= (EMACS_UINT
) p_limit
)
1763 cursor
+= BM_tab
[*cursor
];
1765 /* If you are here, cursor is beyond the end of the searched region. */
1766 /* This can happen if you match on the far character of the pattern, */
1767 /* because the "stride" of that character is infinity, a number able */
1768 /* to throw you well beyond the end of the search. It can also */
1769 /* happen if you fail to match within the permitted region and would */
1770 /* otherwise try a character beyond that region */
1771 if ((cursor
- p_limit
) * direction
<= len_byte
)
1772 break; /* a small overrun is genuine */
1773 cursor
-= infinity
; /* large overrun = hit */
1774 i
= dirlen
- direction
;
1777 while ((i
-= direction
) + direction
!= 0)
1780 cursor
-= direction
;
1781 /* Translate only the last byte of a character. */
1783 || ((cursor
== tail_end_ptr
1784 || CHAR_HEAD_P (cursor
[1]))
1785 && (CHAR_HEAD_P (cursor
[0])
1786 || (translate_prev_byte
== cursor
[-1]
1787 && (CHAR_HEAD_P (translate_prev_byte
)
1788 || translate_anteprev_byte
== cursor
[-2])))))
1789 ch
= simple_translate
[*cursor
];
1798 while ((i
-= direction
) + direction
!= 0)
1800 cursor
-= direction
;
1801 if (pat
[i
] != *cursor
)
1805 cursor
+= dirlen
- i
- direction
; /* fix cursor */
1806 if (i
+ direction
== 0)
1810 cursor
-= direction
;
1812 position
= pos_byte
+ cursor
- p2
+ ((direction
> 0)
1813 ? 1 - len_byte
: 0);
1814 set_search_regs (position
, len_byte
);
1816 if ((n
-= direction
) != 0)
1817 cursor
+= dirlen
; /* to resume search */
1819 return ((direction
> 0)
1820 ? search_regs
.end
[0] : search_regs
.start
[0]);
1823 cursor
+= stride_for_teases
; /* <sigh> we lose - */
1825 pos_byte
+= cursor
- p2
;
1828 /* Now we'll pick up a clump that has to be done the hard */
1829 /* way because it covers a discontinuity */
1831 limit
= ((direction
> 0)
1832 ? BUFFER_CEILING_OF (pos_byte
- dirlen
+ 1)
1833 : BUFFER_FLOOR_OF (pos_byte
- dirlen
- 1));
1834 limit
= ((direction
> 0)
1835 ? min (limit
+ len_byte
, lim_byte
- 1)
1836 : max (limit
- len_byte
, lim_byte
));
1837 /* LIMIT is now the last value POS_BYTE can have
1838 and still be valid for a possible match. */
1841 /* This loop can be coded for space rather than */
1842 /* speed because it will usually run only once. */
1843 /* (the reach is at most len + 21, and typically */
1844 /* does not exceed len) */
1845 while ((limit
- pos_byte
) * direction
>= 0)
1846 pos_byte
+= BM_tab
[FETCH_BYTE (pos_byte
)];
1847 /* now run the same tests to distinguish going off the */
1848 /* end, a match or a phony match. */
1849 if ((pos_byte
- limit
) * direction
<= len_byte
)
1850 break; /* ran off the end */
1851 /* Found what might be a match.
1852 Set POS_BYTE back to last (first if reverse) pos. */
1853 pos_byte
-= infinity
;
1854 i
= dirlen
- direction
;
1855 while ((i
-= direction
) + direction
!= 0)
1859 pos_byte
-= direction
;
1860 ptr
= BYTE_POS_ADDR (pos_byte
);
1861 /* Translate only the last byte of a character. */
1863 || ((ptr
== tail_end_ptr
1864 || CHAR_HEAD_P (ptr
[1]))
1865 && (CHAR_HEAD_P (ptr
[0])
1866 || (translate_prev_byte
== ptr
[-1]
1867 && (CHAR_HEAD_P (translate_prev_byte
)
1868 || translate_anteprev_byte
== ptr
[-2])))))
1869 ch
= simple_translate
[*ptr
];
1875 /* Above loop has moved POS_BYTE part or all the way
1876 back to the first pos (last pos if reverse).
1877 Set it once again at the last (first if reverse) char. */
1878 pos_byte
+= dirlen
- i
- direction
;
1879 if (i
+ direction
== 0)
1882 pos_byte
-= direction
;
1884 position
= pos_byte
+ ((direction
> 0) ? 1 - len_byte
: 0);
1886 set_search_regs (position
, len_byte
);
1888 if ((n
-= direction
) != 0)
1889 pos_byte
+= dirlen
; /* to resume search */
1891 return ((direction
> 0)
1892 ? search_regs
.end
[0] : search_regs
.start
[0]);
1895 pos_byte
+= stride_for_teases
;
1898 /* We have done one clump. Can we continue? */
1899 if ((lim_byte
- pos_byte
) * direction
< 0)
1900 return ((0 - n
) * direction
);
1902 return BYTE_TO_CHAR (pos_byte
);
1905 /* Record beginning BEG_BYTE and end BEG_BYTE + NBYTES
1906 for the overall match just found in the current buffer.
1907 Also clear out the match data for registers 1 and up. */
1910 set_search_regs (beg_byte
, nbytes
)
1911 int beg_byte
, nbytes
;
1915 /* Make sure we have registers in which to store
1916 the match position. */
1917 if (search_regs
.num_regs
== 0)
1919 search_regs
.start
= (regoff_t
*) xmalloc (2 * sizeof (regoff_t
));
1920 search_regs
.end
= (regoff_t
*) xmalloc (2 * sizeof (regoff_t
));
1921 search_regs
.num_regs
= 2;
1924 /* Clear out the other registers. */
1925 for (i
= 1; i
< search_regs
.num_regs
; i
++)
1927 search_regs
.start
[i
] = -1;
1928 search_regs
.end
[i
] = -1;
1931 search_regs
.start
[0] = BYTE_TO_CHAR (beg_byte
);
1932 search_regs
.end
[0] = BYTE_TO_CHAR (beg_byte
+ nbytes
);
1933 XSETBUFFER (last_thing_searched
, current_buffer
);
1936 /* Given a string of words separated by word delimiters,
1937 compute a regexp that matches those exact words
1938 separated by arbitrary punctuation. */
1944 register unsigned char *p
, *o
;
1945 register int i
, i_byte
, len
, punct_count
= 0, word_count
= 0;
1950 CHECK_STRING (string
);
1951 p
= XSTRING (string
)->data
;
1952 len
= XSTRING (string
)->size
;
1954 for (i
= 0, i_byte
= 0; i
< len
; )
1958 FETCH_STRING_CHAR_ADVANCE (c
, string
, i
, i_byte
);
1960 if (SYNTAX (c
) != Sword
)
1963 if (i
> 0 && SYNTAX (prev_c
) == Sword
)
1970 if (SYNTAX (prev_c
) == Sword
)
1973 return empty_string
;
1975 adjust
= - punct_count
+ 5 * (word_count
- 1) + 4;
1976 if (STRING_MULTIBYTE (string
))
1977 val
= make_uninit_multibyte_string (len
+ adjust
,
1978 STRING_BYTES (XSTRING (string
))
1981 val
= make_uninit_string (len
+ adjust
);
1983 o
= XSTRING (val
)->data
;
1988 for (i
= 0, i_byte
= 0; i
< len
; )
1991 int i_byte_orig
= i_byte
;
1993 FETCH_STRING_CHAR_ADVANCE (c
, string
, i
, i_byte
);
1995 if (SYNTAX (c
) == Sword
)
1997 bcopy (&XSTRING (string
)->data
[i_byte_orig
], o
,
1998 i_byte
- i_byte_orig
);
1999 o
+= i_byte
- i_byte_orig
;
2001 else if (i
> 0 && SYNTAX (prev_c
) == Sword
&& --word_count
)
2019 DEFUN ("search-backward", Fsearch_backward
, Ssearch_backward
, 1, 4,
2020 "MSearch backward: ",
2021 doc
: /* Search backward from point for STRING.
2022 Set point to the beginning of the occurrence found, and return point.
2023 An optional second argument bounds the search; it is a buffer position.
2024 The match found must not extend before that position.
2025 Optional third argument, if t, means if fail just return nil (no error).
2026 If not nil and not t, position at limit of search and return nil.
2027 Optional fourth argument is repeat count--search for successive occurrences.
2029 Search case-sensitivity is determined by the value of the variable
2030 `case-fold-search', which see.
2032 See also the functions `match-beginning', `match-end' and `replace-match'. */)
2033 (string
, bound
, noerror
, count
)
2034 Lisp_Object string
, bound
, noerror
, count
;
2036 return search_command (string
, bound
, noerror
, count
, -1, 0, 0);
2039 DEFUN ("search-forward", Fsearch_forward
, Ssearch_forward
, 1, 4, "MSearch: ",
2040 doc
: /* Search forward from point for STRING.
2041 Set point to the end of the occurrence found, and return point.
2042 An optional second argument bounds the search; it is a buffer position.
2043 The match found must not extend after that position. nil is equivalent
2045 Optional third argument, if t, means if fail just return nil (no error).
2046 If not nil and not t, move to limit of search and return nil.
2047 Optional fourth argument is repeat count--search for successive occurrences.
2049 Search case-sensitivity is determined by the value of the variable
2050 `case-fold-search', which see.
2052 See also the functions `match-beginning', `match-end' and `replace-match'. */)
2053 (string
, bound
, noerror
, count
)
2054 Lisp_Object string
, bound
, noerror
, count
;
2056 return search_command (string
, bound
, noerror
, count
, 1, 0, 0);
2059 DEFUN ("word-search-backward", Fword_search_backward
, Sword_search_backward
, 1, 4,
2060 "sWord search backward: ",
2061 doc
: /* Search backward from point for STRING, ignoring differences in punctuation.
2062 Set point to the beginning of the occurrence found, and return point.
2063 An optional second argument bounds the search; it is a buffer position.
2064 The match found must not extend before that position.
2065 Optional third argument, if t, means if fail just return nil (no error).
2066 If not nil and not t, move to limit of search and return nil.
2067 Optional fourth argument is repeat count--search for successive occurrences. */)
2068 (string
, bound
, noerror
, count
)
2069 Lisp_Object string
, bound
, noerror
, count
;
2071 return search_command (wordify (string
), bound
, noerror
, count
, -1, 1, 0);
2074 DEFUN ("word-search-forward", Fword_search_forward
, Sword_search_forward
, 1, 4,
2076 doc
: /* Search forward from point for STRING, ignoring differences in punctuation.
2077 Set point to the end of the occurrence found, and return point.
2078 An optional second argument bounds the search; it is a buffer position.
2079 The match found must not extend after that position.
2080 Optional third argument, if t, means if fail just return nil (no error).
2081 If not nil and not t, move to limit of search and return nil.
2082 Optional fourth argument is repeat count--search for successive occurrences. */)
2083 (string
, bound
, noerror
, count
)
2084 Lisp_Object string
, bound
, noerror
, count
;
2086 return search_command (wordify (string
), bound
, noerror
, count
, 1, 1, 0);
2089 DEFUN ("re-search-backward", Fre_search_backward
, Sre_search_backward
, 1, 4,
2090 "sRE search backward: ",
2091 doc
: /* Search backward from point for match for regular expression REGEXP.
2092 Set point to the beginning of the match, and return point.
2093 The match found is the one starting last in the buffer
2094 and yet ending before the origin of the search.
2095 An optional second argument bounds the search; it is a buffer position.
2096 The match found must start at or after that position.
2097 Optional third argument, if t, means if fail just return nil (no error).
2098 If not nil and not t, move to limit of search and return nil.
2099 Optional fourth argument is repeat count--search for successive occurrences.
2100 See also the functions `match-beginning', `match-end', `match-string',
2101 and `replace-match'. */)
2102 (regexp
, bound
, noerror
, count
)
2103 Lisp_Object regexp
, bound
, noerror
, count
;
2105 return search_command (regexp
, bound
, noerror
, count
, -1, 1, 0);
2108 DEFUN ("re-search-forward", Fre_search_forward
, Sre_search_forward
, 1, 4,
2110 doc
: /* Search forward from point for regular expression REGEXP.
2111 Set point to the end of the occurrence found, and return point.
2112 An optional second argument bounds the search; it is a buffer position.
2113 The match found must not extend after that position.
2114 Optional third argument, if t, means if fail just return nil (no error).
2115 If not nil and not t, move to limit of search and return nil.
2116 Optional fourth argument is repeat count--search for successive occurrences.
2117 See also the functions `match-beginning', `match-end', `match-string',
2118 and `replace-match'. */)
2119 (regexp
, bound
, noerror
, count
)
2120 Lisp_Object regexp
, bound
, noerror
, count
;
2122 return search_command (regexp
, bound
, noerror
, count
, 1, 1, 0);
2125 DEFUN ("posix-search-backward", Fposix_search_backward
, Sposix_search_backward
, 1, 4,
2126 "sPosix search backward: ",
2127 doc
: /* Search backward from point for match for regular expression REGEXP.
2128 Find the longest match in accord with Posix regular expression rules.
2129 Set point to the beginning of the match, and return point.
2130 The match found is the one starting last in the buffer
2131 and yet ending before the origin of the search.
2132 An optional second argument bounds the search; it is a buffer position.
2133 The match found must start at or after that position.
2134 Optional third argument, if t, means if fail just return nil (no error).
2135 If not nil and not t, move to limit of search and return nil.
2136 Optional fourth argument is repeat count--search for successive occurrences.
2137 See also the functions `match-beginning', `match-end', `match-string',
2138 and `replace-match'. */)
2139 (regexp
, bound
, noerror
, count
)
2140 Lisp_Object regexp
, bound
, noerror
, count
;
2142 return search_command (regexp
, bound
, noerror
, count
, -1, 1, 1);
2145 DEFUN ("posix-search-forward", Fposix_search_forward
, Sposix_search_forward
, 1, 4,
2147 doc
: /* Search forward from point for regular expression REGEXP.
2148 Find the longest match in accord with Posix regular expression rules.
2149 Set point to the end of the occurrence found, and return point.
2150 An optional second argument bounds the search; it is a buffer position.
2151 The match found must not extend after that position.
2152 Optional third argument, if t, means if fail just return nil (no error).
2153 If not nil and not t, move to limit of search and return nil.
2154 Optional fourth argument is repeat count--search for successive occurrences.
2155 See also the functions `match-beginning', `match-end', `match-string',
2156 and `replace-match'. */)
2157 (regexp
, bound
, noerror
, count
)
2158 Lisp_Object regexp
, bound
, noerror
, count
;
2160 return search_command (regexp
, bound
, noerror
, count
, 1, 1, 1);
2163 DEFUN ("replace-match", Freplace_match
, Sreplace_match
, 1, 5, 0,
2164 doc
: /* Replace text matched by last search with NEWTEXT.
2165 Leave point at the end of the replacement text.
2167 If second arg FIXEDCASE is non-nil, do not alter case of replacement text.
2168 Otherwise maybe capitalize the whole text, or maybe just word initials,
2169 based on the replaced text.
2170 If the replaced text has only capital letters
2171 and has at least one multiletter word, convert NEWTEXT to all caps.
2172 Otherwise if all words are capitalized in the replaced text,
2173 capitalize each word in NEWTEXT.
2175 If third arg LITERAL is non-nil, insert NEWTEXT literally.
2176 Otherwise treat `\\' as special:
2177 `\\&' in NEWTEXT means substitute original matched text.
2178 `\\N' means substitute what matched the Nth `\\(...\\)'.
2179 If Nth parens didn't match, substitute nothing.
2180 `\\\\' means insert one `\\'.
2181 Case conversion does not apply to these substitutions.
2183 FIXEDCASE and LITERAL are optional arguments.
2185 The optional fourth argument STRING can be a string to modify.
2186 This is meaningful when the previous match was done against STRING,
2187 using `string-match'. When used this way, `replace-match'
2188 creates and returns a new string made by copying STRING and replacing
2189 the part of STRING that was matched.
2191 The optional fifth argument SUBEXP specifies a subexpression;
2192 it says to replace just that subexpression with NEWTEXT,
2193 rather than replacing the entire matched text.
2194 This is, in a vague sense, the inverse of using `\\N' in NEWTEXT;
2195 `\\N' copies subexp N into NEWTEXT, but using N as SUBEXP puts
2196 NEWTEXT in place of subexp N.
2197 This is useful only after a regular expression search or match,
2198 since only regular expressions have distinguished subexpressions. */)
2199 (newtext
, fixedcase
, literal
, string
, subexp
)
2200 Lisp_Object newtext
, fixedcase
, literal
, string
, subexp
;
2202 enum { nochange
, all_caps
, cap_initial
} case_action
;
2203 register int pos
, pos_byte
;
2204 int some_multiletter_word
;
2207 int some_nonuppercase_initial
;
2208 register int c
, prevc
;
2210 int opoint
, newpoint
;
2212 CHECK_STRING (newtext
);
2214 if (! NILP (string
))
2215 CHECK_STRING (string
);
2217 case_action
= nochange
; /* We tried an initialization */
2218 /* but some C compilers blew it */
2220 if (search_regs
.num_regs
<= 0)
2221 error ("replace-match called before any match found");
2227 CHECK_NUMBER (subexp
);
2228 sub
= XINT (subexp
);
2229 if (sub
< 0 || sub
>= search_regs
.num_regs
)
2230 args_out_of_range (subexp
, make_number (search_regs
.num_regs
));
2235 if (search_regs
.start
[sub
] < BEGV
2236 || search_regs
.start
[sub
] > search_regs
.end
[sub
]
2237 || search_regs
.end
[sub
] > ZV
)
2238 args_out_of_range (make_number (search_regs
.start
[sub
]),
2239 make_number (search_regs
.end
[sub
]));
2243 if (search_regs
.start
[sub
] < 0
2244 || search_regs
.start
[sub
] > search_regs
.end
[sub
]
2245 || search_regs
.end
[sub
] > XSTRING (string
)->size
)
2246 args_out_of_range (make_number (search_regs
.start
[sub
]),
2247 make_number (search_regs
.end
[sub
]));
2250 if (NILP (fixedcase
))
2252 /* Decide how to casify by examining the matched text. */
2255 pos
= search_regs
.start
[sub
];
2256 last
= search_regs
.end
[sub
];
2259 pos_byte
= CHAR_TO_BYTE (pos
);
2261 pos_byte
= string_char_to_byte (string
, pos
);
2264 case_action
= all_caps
;
2266 /* some_multiletter_word is set nonzero if any original word
2267 is more than one letter long. */
2268 some_multiletter_word
= 0;
2270 some_nonuppercase_initial
= 0;
2277 c
= FETCH_CHAR (pos_byte
);
2278 INC_BOTH (pos
, pos_byte
);
2281 FETCH_STRING_CHAR_ADVANCE (c
, string
, pos
, pos_byte
);
2285 /* Cannot be all caps if any original char is lower case */
2288 if (SYNTAX (prevc
) != Sword
)
2289 some_nonuppercase_initial
= 1;
2291 some_multiletter_word
= 1;
2293 else if (!NOCASEP (c
))
2296 if (SYNTAX (prevc
) != Sword
)
2299 some_multiletter_word
= 1;
2303 /* If the initial is a caseless word constituent,
2304 treat that like a lowercase initial. */
2305 if (SYNTAX (prevc
) != Sword
)
2306 some_nonuppercase_initial
= 1;
2312 /* Convert to all caps if the old text is all caps
2313 and has at least one multiletter word. */
2314 if (! some_lowercase
&& some_multiletter_word
)
2315 case_action
= all_caps
;
2316 /* Capitalize each word, if the old text has all capitalized words. */
2317 else if (!some_nonuppercase_initial
&& some_multiletter_word
)
2318 case_action
= cap_initial
;
2319 else if (!some_nonuppercase_initial
&& some_uppercase
)
2320 /* Should x -> yz, operating on X, give Yz or YZ?
2321 We'll assume the latter. */
2322 case_action
= all_caps
;
2324 case_action
= nochange
;
2327 /* Do replacement in a string. */
2330 Lisp_Object before
, after
;
2332 before
= Fsubstring (string
, make_number (0),
2333 make_number (search_regs
.start
[sub
]));
2334 after
= Fsubstring (string
, make_number (search_regs
.end
[sub
]), Qnil
);
2336 /* Substitute parts of the match into NEWTEXT
2341 int lastpos_byte
= 0;
2342 /* We build up the substituted string in ACCUM. */
2345 int length
= STRING_BYTES (XSTRING (newtext
));
2349 for (pos_byte
= 0, pos
= 0; pos_byte
< length
;)
2353 int delbackslash
= 0;
2355 FETCH_STRING_CHAR_ADVANCE (c
, newtext
, pos
, pos_byte
);
2359 FETCH_STRING_CHAR_ADVANCE (c
, newtext
, pos
, pos_byte
);
2363 substart
= search_regs
.start
[sub
];
2364 subend
= search_regs
.end
[sub
];
2366 else if (c
>= '1' && c
<= '9' && c
<= search_regs
.num_regs
+ '0')
2368 if (search_regs
.start
[c
- '0'] >= 0)
2370 substart
= search_regs
.start
[c
- '0'];
2371 subend
= search_regs
.end
[c
- '0'];
2377 error ("Invalid use of `\\' in replacement text");
2381 if (pos
- 2 != lastpos
)
2382 middle
= substring_both (newtext
, lastpos
,
2384 pos
- 2, pos_byte
- 2);
2387 accum
= concat3 (accum
, middle
,
2389 make_number (substart
),
2390 make_number (subend
)));
2392 lastpos_byte
= pos_byte
;
2394 else if (delbackslash
)
2396 middle
= substring_both (newtext
, lastpos
,
2398 pos
- 1, pos_byte
- 1);
2400 accum
= concat2 (accum
, middle
);
2402 lastpos_byte
= pos_byte
;
2407 middle
= substring_both (newtext
, lastpos
,
2413 newtext
= concat2 (accum
, middle
);
2416 /* Do case substitution in NEWTEXT if desired. */
2417 if (case_action
== all_caps
)
2418 newtext
= Fupcase (newtext
);
2419 else if (case_action
== cap_initial
)
2420 newtext
= Fupcase_initials (newtext
);
2422 return concat3 (before
, newtext
, after
);
2425 /* Record point, then move (quietly) to the start of the match. */
2426 if (PT
>= search_regs
.end
[sub
])
2428 else if (PT
> search_regs
.start
[sub
])
2429 opoint
= search_regs
.end
[sub
] - ZV
;
2433 /* If we want non-literal replacement,
2434 perform substitution on the replacement string. */
2437 int length
= STRING_BYTES (XSTRING (newtext
));
2438 unsigned char *substed
;
2439 int substed_alloc_size
, substed_len
;
2440 int buf_multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
2441 int str_multibyte
= STRING_MULTIBYTE (newtext
);
2442 Lisp_Object rev_tbl
;
2443 int really_changed
= 0;
2445 rev_tbl
= (!buf_multibyte
&& CHAR_TABLE_P (Vnonascii_translation_table
)
2446 ? Fchar_table_extra_slot (Vnonascii_translation_table
,
2450 substed_alloc_size
= length
* 2 + 100;
2451 substed
= (unsigned char *) xmalloc (substed_alloc_size
+ 1);
2454 /* Go thru NEWTEXT, producing the actual text to insert in
2455 SUBSTED while adjusting multibyteness to that of the current
2458 for (pos_byte
= 0, pos
= 0; pos_byte
< length
;)
2460 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
2461 unsigned char *add_stuff
= NULL
;
2467 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, newtext
, pos
, pos_byte
);
2469 c
= multibyte_char_to_unibyte (c
, rev_tbl
);
2473 /* Note that we don't have to increment POS. */
2474 c
= XSTRING (newtext
)->data
[pos_byte
++];
2476 c
= unibyte_char_to_multibyte (c
);
2479 /* Either set ADD_STUFF and ADD_LEN to the text to put in SUBSTED,
2480 or set IDX to a match index, which means put that part
2481 of the buffer text into SUBSTED. */
2489 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, newtext
,
2491 if (!buf_multibyte
&& !SINGLE_BYTE_CHAR_P (c
))
2492 c
= multibyte_char_to_unibyte (c
, rev_tbl
);
2496 c
= XSTRING (newtext
)->data
[pos_byte
++];
2498 c
= unibyte_char_to_multibyte (c
);
2503 else if (c
>= '1' && c
<= '9' && c
<= search_regs
.num_regs
+ '0')
2505 if (search_regs
.start
[c
- '0'] >= 1)
2509 add_len
= 1, add_stuff
= "\\";
2513 error ("Invalid use of `\\' in replacement text");
2518 add_len
= CHAR_STRING (c
, str
);
2522 /* If we want to copy part of a previous match,
2523 set up ADD_STUFF and ADD_LEN to point to it. */
2526 int begbyte
= CHAR_TO_BYTE (search_regs
.start
[idx
]);
2527 add_len
= CHAR_TO_BYTE (search_regs
.end
[idx
]) - begbyte
;
2528 if (search_regs
.start
[idx
] < GPT
&& GPT
< search_regs
.end
[idx
])
2529 move_gap (search_regs
.start
[idx
]);
2530 add_stuff
= BYTE_POS_ADDR (begbyte
);
2533 /* Now the stuff we want to add to SUBSTED
2534 is invariably ADD_LEN bytes starting at ADD_STUFF. */
2536 /* Make sure SUBSTED is big enough. */
2537 if (substed_len
+ add_len
>= substed_alloc_size
)
2539 substed_alloc_size
= substed_len
+ add_len
+ 500;
2540 substed
= (unsigned char *) xrealloc (substed
,
2541 substed_alloc_size
+ 1);
2544 /* Now add to the end of SUBSTED. */
2547 bcopy (add_stuff
, substed
+ substed_len
, add_len
);
2548 substed_len
+= add_len
;
2553 newtext
= make_string (substed
, substed_len
);
2558 /* Replace the old text with the new in the cleanest possible way. */
2559 replace_range (search_regs
.start
[sub
], search_regs
.end
[sub
],
2561 newpoint
= search_regs
.start
[sub
] + XSTRING (newtext
)->size
;
2563 if (case_action
== all_caps
)
2564 Fupcase_region (make_number (search_regs
.start
[sub
]),
2565 make_number (newpoint
));
2566 else if (case_action
== cap_initial
)
2567 Fupcase_initials_region (make_number (search_regs
.start
[sub
]),
2568 make_number (newpoint
));
2570 /* Put point back where it was in the text. */
2572 TEMP_SET_PT (opoint
+ ZV
);
2574 TEMP_SET_PT (opoint
);
2576 /* Now move point "officially" to the start of the inserted replacement. */
2577 move_if_not_intangible (newpoint
);
2583 match_limit (num
, beginningp
)
2591 if (n
< 0 || n
>= search_regs
.num_regs
)
2592 args_out_of_range (num
, make_number (search_regs
.num_regs
));
2593 if (search_regs
.num_regs
<= 0
2594 || search_regs
.start
[n
] < 0)
2596 return (make_number ((beginningp
) ? search_regs
.start
[n
]
2597 : search_regs
.end
[n
]));
2600 DEFUN ("match-beginning", Fmatch_beginning
, Smatch_beginning
, 1, 1, 0,
2601 doc
: /* Return position of start of text matched by last search.
2602 SUBEXP, a number, specifies which parenthesized expression in the last
2604 Value is nil if SUBEXPth pair didn't match, or there were less than
2606 Zero means the entire text matched by the whole regexp or whole string. */)
2610 return match_limit (subexp
, 1);
2613 DEFUN ("match-end", Fmatch_end
, Smatch_end
, 1, 1, 0,
2614 doc
: /* Return position of end of text matched by last search.
2615 SUBEXP, a number, specifies which parenthesized expression in the last
2617 Value is nil if SUBEXPth pair didn't match, or there were less than
2619 Zero means the entire text matched by the whole regexp or whole string. */)
2623 return match_limit (subexp
, 0);
2626 DEFUN ("match-data", Fmatch_data
, Smatch_data
, 0, 2, 0,
2627 doc
: /* Return a list containing all info on what the last search matched.
2628 Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.
2629 All the elements are markers or nil (nil if the Nth pair didn't match)
2630 if the last match was on a buffer; integers or nil if a string was matched.
2631 Use `store-match-data' to reinstate the data in this list.
2633 If INTEGERS (the optional first argument) is non-nil, always use integers
2634 \(rather than markers) to represent buffer positions.
2635 If REUSE is a list, reuse it as part of the value. If REUSE is long enough
2636 to hold all the values, and if INTEGERS is non-nil, no consing is done. */)
2638 Lisp_Object integers
, reuse
;
2640 Lisp_Object tail
, prev
;
2644 if (NILP (last_thing_searched
))
2649 data
= (Lisp_Object
*) alloca ((2 * search_regs
.num_regs
)
2650 * sizeof (Lisp_Object
));
2653 for (i
= 0; i
< search_regs
.num_regs
; i
++)
2655 int start
= search_regs
.start
[i
];
2658 if (EQ (last_thing_searched
, Qt
)
2659 || ! NILP (integers
))
2661 XSETFASTINT (data
[2 * i
], start
);
2662 XSETFASTINT (data
[2 * i
+ 1], search_regs
.end
[i
]);
2664 else if (BUFFERP (last_thing_searched
))
2666 data
[2 * i
] = Fmake_marker ();
2667 Fset_marker (data
[2 * i
],
2668 make_number (start
),
2669 last_thing_searched
);
2670 data
[2 * i
+ 1] = Fmake_marker ();
2671 Fset_marker (data
[2 * i
+ 1],
2672 make_number (search_regs
.end
[i
]),
2673 last_thing_searched
);
2676 /* last_thing_searched must always be Qt, a buffer, or Qnil. */
2682 data
[2 * i
] = data
[2 * i
+ 1] = Qnil
;
2685 /* If REUSE is not usable, cons up the values and return them. */
2686 if (! CONSP (reuse
))
2687 return Flist (2 * len
+ 2, data
);
2689 /* If REUSE is a list, store as many value elements as will fit
2690 into the elements of REUSE. */
2691 for (i
= 0, tail
= reuse
; CONSP (tail
);
2692 i
++, tail
= XCDR (tail
))
2694 if (i
< 2 * len
+ 2)
2695 XSETCAR (tail
, data
[i
]);
2697 XSETCAR (tail
, Qnil
);
2701 /* If we couldn't fit all value elements into REUSE,
2702 cons up the rest of them and add them to the end of REUSE. */
2703 if (i
< 2 * len
+ 2)
2704 XSETCDR (prev
, Flist (2 * len
+ 2 - i
, data
+ i
));
2710 DEFUN ("set-match-data", Fset_match_data
, Sset_match_data
, 1, 1, 0,
2711 doc
: /* Set internal data on last search match from elements of LIST.
2712 LIST should have been created by calling `match-data' previously. */)
2714 register Lisp_Object list
;
2717 register Lisp_Object marker
;
2719 if (running_asynch_code
)
2720 save_search_regs ();
2722 if (!CONSP (list
) && !NILP (list
))
2723 list
= wrong_type_argument (Qconsp
, list
);
2725 /* Unless we find a marker with a buffer in LIST, assume that this
2726 match data came from a string. */
2727 last_thing_searched
= Qt
;
2729 /* Allocate registers if they don't already exist. */
2731 int length
= XFASTINT (Flength (list
)) / 2;
2733 if (length
> search_regs
.num_regs
)
2735 if (search_regs
.num_regs
== 0)
2738 = (regoff_t
*) xmalloc (length
* sizeof (regoff_t
));
2740 = (regoff_t
*) xmalloc (length
* sizeof (regoff_t
));
2745 = (regoff_t
*) xrealloc (search_regs
.start
,
2746 length
* sizeof (regoff_t
));
2748 = (regoff_t
*) xrealloc (search_regs
.end
,
2749 length
* sizeof (regoff_t
));
2752 for (i
= search_regs
.num_regs
; i
< length
; i
++)
2753 search_regs
.start
[i
] = -1;
2755 search_regs
.num_regs
= length
;
2759 for (i
= 0; i
< search_regs
.num_regs
; i
++)
2761 marker
= Fcar (list
);
2764 search_regs
.start
[i
] = -1;
2771 if (MARKERP (marker
))
2773 if (XMARKER (marker
)->buffer
== 0)
2774 XSETFASTINT (marker
, 0);
2776 XSETBUFFER (last_thing_searched
, XMARKER (marker
)->buffer
);
2779 CHECK_NUMBER_COERCE_MARKER (marker
);
2780 from
= XINT (marker
);
2783 marker
= Fcar (list
);
2784 if (MARKERP (marker
) && XMARKER (marker
)->buffer
== 0)
2785 XSETFASTINT (marker
, 0);
2787 CHECK_NUMBER_COERCE_MARKER (marker
);
2788 search_regs
.start
[i
] = from
;
2789 search_regs
.end
[i
] = XINT (marker
);
2797 /* If non-zero the match data have been saved in saved_search_regs
2798 during the execution of a sentinel or filter. */
2799 static int search_regs_saved
;
2800 static struct re_registers saved_search_regs
;
2802 /* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data
2803 if asynchronous code (filter or sentinel) is running. */
2807 if (!search_regs_saved
)
2809 saved_search_regs
.num_regs
= search_regs
.num_regs
;
2810 saved_search_regs
.start
= search_regs
.start
;
2811 saved_search_regs
.end
= search_regs
.end
;
2812 search_regs
.num_regs
= 0;
2813 search_regs
.start
= 0;
2814 search_regs
.end
= 0;
2816 search_regs_saved
= 1;
2820 /* Called upon exit from filters and sentinels. */
2822 restore_match_data ()
2824 if (search_regs_saved
)
2826 if (search_regs
.num_regs
> 0)
2828 xfree (search_regs
.start
);
2829 xfree (search_regs
.end
);
2831 search_regs
.num_regs
= saved_search_regs
.num_regs
;
2832 search_regs
.start
= saved_search_regs
.start
;
2833 search_regs
.end
= saved_search_regs
.end
;
2835 search_regs_saved
= 0;
2839 /* Quote a string to inactivate reg-expr chars */
2841 DEFUN ("regexp-quote", Fregexp_quote
, Sregexp_quote
, 1, 1, 0,
2842 doc
: /* Return a regexp string which matches exactly STRING and nothing else. */)
2846 register unsigned char *in
, *out
, *end
;
2847 register unsigned char *temp
;
2848 int backslashes_added
= 0;
2850 CHECK_STRING (string
);
2852 temp
= (unsigned char *) alloca (STRING_BYTES (XSTRING (string
)) * 2);
2854 /* Now copy the data into the new string, inserting escapes. */
2856 in
= XSTRING (string
)->data
;
2857 end
= in
+ STRING_BYTES (XSTRING (string
));
2860 for (; in
!= end
; in
++)
2862 if (*in
== '[' || *in
== ']'
2863 || *in
== '*' || *in
== '.' || *in
== '\\'
2864 || *in
== '?' || *in
== '+'
2865 || *in
== '^' || *in
== '$')
2866 *out
++ = '\\', backslashes_added
++;
2870 return make_specified_string (temp
,
2871 XSTRING (string
)->size
+ backslashes_added
,
2873 STRING_MULTIBYTE (string
));
2881 for (i
= 0; i
< REGEXP_CACHE_SIZE
; ++i
)
2883 searchbufs
[i
].buf
.allocated
= 100;
2884 searchbufs
[i
].buf
.buffer
= (unsigned char *) malloc (100);
2885 searchbufs
[i
].buf
.fastmap
= searchbufs
[i
].fastmap
;
2886 searchbufs
[i
].regexp
= Qnil
;
2887 staticpro (&searchbufs
[i
].regexp
);
2888 searchbufs
[i
].next
= (i
== REGEXP_CACHE_SIZE
-1 ? 0 : &searchbufs
[i
+1]);
2890 searchbuf_head
= &searchbufs
[0];
2892 Qsearch_failed
= intern ("search-failed");
2893 staticpro (&Qsearch_failed
);
2894 Qinvalid_regexp
= intern ("invalid-regexp");
2895 staticpro (&Qinvalid_regexp
);
2897 Fput (Qsearch_failed
, Qerror_conditions
,
2898 Fcons (Qsearch_failed
, Fcons (Qerror
, Qnil
)));
2899 Fput (Qsearch_failed
, Qerror_message
,
2900 build_string ("Search failed"));
2902 Fput (Qinvalid_regexp
, Qerror_conditions
,
2903 Fcons (Qinvalid_regexp
, Fcons (Qerror
, Qnil
)));
2904 Fput (Qinvalid_regexp
, Qerror_message
,
2905 build_string ("Invalid regexp"));
2907 last_thing_searched
= Qnil
;
2908 staticpro (&last_thing_searched
);
2910 defsubr (&Slooking_at
);
2911 defsubr (&Sposix_looking_at
);
2912 defsubr (&Sstring_match
);
2913 defsubr (&Sposix_string_match
);
2914 defsubr (&Ssearch_forward
);
2915 defsubr (&Ssearch_backward
);
2916 defsubr (&Sword_search_forward
);
2917 defsubr (&Sword_search_backward
);
2918 defsubr (&Sre_search_forward
);
2919 defsubr (&Sre_search_backward
);
2920 defsubr (&Sposix_search_forward
);
2921 defsubr (&Sposix_search_backward
);
2922 defsubr (&Sreplace_match
);
2923 defsubr (&Smatch_beginning
);
2924 defsubr (&Smatch_end
);
2925 defsubr (&Smatch_data
);
2926 defsubr (&Sset_match_data
);
2927 defsubr (&Sregexp_quote
);