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 min(a, b) ((a) < (b) ? (a) : (b))
37 #define max(a, b) ((a) > (b) ? (a) : (b))
39 #define REGEXP_CACHE_SIZE 20
41 /* If the regexp is non-nil, then the buffer contains the compiled form
42 of that regexp, suitable for searching. */
45 struct regexp_cache
*next
;
47 struct re_pattern_buffer buf
;
49 /* Nonzero means regexp was compiled to do full POSIX backtracking. */
53 /* The instances of that struct. */
54 struct regexp_cache searchbufs
[REGEXP_CACHE_SIZE
];
56 /* The head of the linked list; points to the most recently used buffer. */
57 struct regexp_cache
*searchbuf_head
;
60 /* Every call to re_match, etc., must pass &search_regs as the regs
61 argument unless you can show it is unnecessary (i.e., if re_match
62 is certainly going to be called again before region-around-match
65 Since the registers are now dynamically allocated, we need to make
66 sure not to refer to the Nth register before checking that it has
67 been allocated by checking search_regs.num_regs.
69 The regex code keeps track of whether it has allocated the search
70 buffer using bits in the re_pattern_buffer. This means that whenever
71 you compile a new pattern, it completely forgets whether it has
72 allocated any registers, and will allocate new registers the next
73 time you call a searching or matching function. Therefore, we need
74 to call re_set_registers after compiling a new pattern or after
75 setting the match registers, so that the regex functions will be
76 able to free or re-allocate it properly. */
77 static struct re_registers search_regs
;
79 /* The buffer in which the last search was performed, or
80 Qt if the last search was done in a string;
81 Qnil if no searching has been done yet. */
82 static Lisp_Object last_thing_searched
;
84 /* error condition signaled when regexp compile_pattern fails */
86 Lisp_Object Qinvalid_regexp
;
88 static void set_search_regs ();
89 static void save_search_regs ();
90 static int simple_search ();
91 static int boyer_moore ();
92 static int search_buffer ();
97 error ("Stack overflow in regexp matcher");
100 /* Compile a regexp and signal a Lisp error if anything goes wrong.
101 PATTERN is the pattern to compile.
102 CP is the place to put the result.
103 TRANSLATE is a translation table for ignoring case, or nil for none.
104 REGP is the structure that says where to store the "register"
105 values that will result from matching this pattern.
106 If it is 0, we should compile the pattern not to record any
107 subexpression bounds.
108 POSIX is nonzero if we want full backtracking (POSIX style)
109 for this pattern. 0 means backtrack only enough to get a valid match.
110 MULTIBYTE is nonzero if we want to handle multibyte characters in
111 PATTERN. 0 means all multibyte characters are recognized just as
112 sequences of binary data. */
115 compile_pattern_1 (cp
, pattern
, translate
, regp
, posix
, multibyte
)
116 struct regexp_cache
*cp
;
118 Lisp_Object translate
;
119 struct re_registers
*regp
;
123 unsigned char *raw_pattern
;
124 int raw_pattern_size
;
128 /* MULTIBYTE says whether the text to be searched is multibyte.
129 We must convert PATTERN to match that, or we will not really
130 find things right. */
132 if (multibyte
== STRING_MULTIBYTE (pattern
))
134 raw_pattern
= (unsigned char *) XSTRING (pattern
)->data
;
135 raw_pattern_size
= STRING_BYTES (XSTRING (pattern
));
139 raw_pattern_size
= count_size_as_multibyte (XSTRING (pattern
)->data
,
140 XSTRING (pattern
)->size
);
141 raw_pattern
= (unsigned char *) alloca (raw_pattern_size
+ 1);
142 copy_text (XSTRING (pattern
)->data
, raw_pattern
,
143 XSTRING (pattern
)->size
, 0, 1);
147 /* Converting multibyte to single-byte.
149 ??? Perhaps this conversion should be done in a special way
150 by subtracting nonascii-insert-offset from each non-ASCII char,
151 so that only the multibyte chars which really correspond to
152 the chosen single-byte character set can possibly match. */
153 raw_pattern_size
= XSTRING (pattern
)->size
;
154 raw_pattern
= (unsigned char *) alloca (raw_pattern_size
+ 1);
155 copy_text (XSTRING (pattern
)->data
, raw_pattern
,
156 STRING_BYTES (XSTRING (pattern
)), 1, 0);
160 cp
->buf
.translate
= (! NILP (translate
) ? translate
: make_number (0));
162 cp
->buf
.multibyte
= multibyte
;
164 old
= re_set_syntax (RE_SYNTAX_EMACS
165 | (posix
? 0 : RE_NO_POSIX_BACKTRACKING
));
166 val
= (char *) re_compile_pattern ((char *)raw_pattern
,
167 raw_pattern_size
, &cp
->buf
);
171 Fsignal (Qinvalid_regexp
, Fcons (build_string (val
), Qnil
));
173 cp
->regexp
= Fcopy_sequence (pattern
);
176 /* Shrink each compiled regexp buffer in the cache
177 to the size actually used right now.
178 This is called from garbage collection. */
181 shrink_regexp_cache ()
183 struct regexp_cache
*cp
;
185 for (cp
= searchbuf_head
; cp
!= 0; cp
= cp
->next
)
187 cp
->buf
.allocated
= cp
->buf
.used
;
189 = (unsigned char *) realloc (cp
->buf
.buffer
, cp
->buf
.used
);
193 /* Compile a regexp if necessary, but first check to see if there's one in
195 PATTERN is the pattern to compile.
196 TRANSLATE is a translation table for ignoring case, or nil for none.
197 REGP is the structure that says where to store the "register"
198 values that will result from matching this pattern.
199 If it is 0, we should compile the pattern not to record any
200 subexpression bounds.
201 POSIX is nonzero if we want full backtracking (POSIX style)
202 for this pattern. 0 means backtrack only enough to get a valid match. */
204 struct re_pattern_buffer
*
205 compile_pattern (pattern
, regp
, translate
, posix
, multibyte
)
207 struct re_registers
*regp
;
208 Lisp_Object translate
;
209 int posix
, multibyte
;
211 struct regexp_cache
*cp
, **cpp
;
213 for (cpp
= &searchbuf_head
; ; cpp
= &cp
->next
)
216 /* Entries are initialized to nil, and may be set to nil by
217 compile_pattern_1 if the pattern isn't valid. Don't apply
218 XSTRING in those cases. However, compile_pattern_1 is only
219 applied to the cache entry we pick here to reuse. So nil
220 should never appear before a non-nil entry. */
221 if (NILP (cp
->regexp
))
223 if (XSTRING (cp
->regexp
)->size
== XSTRING (pattern
)->size
224 && STRING_MULTIBYTE (cp
->regexp
) == STRING_MULTIBYTE (pattern
)
225 && !NILP (Fstring_equal (cp
->regexp
, pattern
))
226 && EQ (cp
->buf
.translate
, (! NILP (translate
) ? translate
: make_number (0)))
227 && cp
->posix
== posix
228 && cp
->buf
.multibyte
== multibyte
)
231 /* If we're at the end of the cache, compile into the nil cell
232 we found, or the last (least recently used) cell with a
237 compile_pattern_1 (cp
, pattern
, translate
, regp
, posix
, multibyte
);
242 /* When we get here, cp (aka *cpp) contains the compiled pattern,
243 either because we found it in the cache or because we just compiled it.
244 Move it to the front of the queue to mark it as most recently used. */
246 cp
->next
= searchbuf_head
;
249 /* Advise the searching functions about the space we have allocated
250 for register data. */
252 re_set_registers (&cp
->buf
, regp
, regp
->num_regs
, regp
->start
, regp
->end
);
257 /* Error condition used for failing searches */
258 Lisp_Object Qsearch_failed
;
264 Fsignal (Qsearch_failed
, Fcons (arg
, Qnil
));
269 looking_at_1 (string
, posix
)
274 unsigned char *p1
, *p2
;
277 struct re_pattern_buffer
*bufp
;
279 if (running_asynch_code
)
282 CHECK_STRING (string
, 0);
283 bufp
= compile_pattern (string
, &search_regs
,
284 (!NILP (current_buffer
->case_fold_search
)
285 ? DOWNCASE_TABLE
: Qnil
),
287 !NILP (current_buffer
->enable_multibyte_characters
));
290 QUIT
; /* Do a pending quit right away, to avoid paradoxical behavior */
292 /* Get pointers and sizes of the two strings
293 that make up the visible portion of the buffer. */
296 s1
= GPT_BYTE
- BEGV_BYTE
;
298 s2
= ZV_BYTE
- GPT_BYTE
;
302 s2
= ZV_BYTE
- BEGV_BYTE
;
307 s1
= ZV_BYTE
- BEGV_BYTE
;
311 re_match_object
= Qnil
;
313 i
= re_match_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
314 PT_BYTE
- BEGV_BYTE
, &search_regs
,
315 ZV_BYTE
- BEGV_BYTE
);
321 val
= (0 <= i
? Qt
: Qnil
);
323 for (i
= 0; i
< search_regs
.num_regs
; i
++)
324 if (search_regs
.start
[i
] >= 0)
327 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
329 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
331 XSETBUFFER (last_thing_searched
, current_buffer
);
335 DEFUN ("looking-at", Flooking_at
, Slooking_at
, 1, 1, 0,
336 "Return t if text after point matches regular expression REGEXP.\n\
337 This function modifies the match data that `match-beginning',\n\
338 `match-end' and `match-data' access; save and restore the match\n\
339 data if you want to preserve them.")
343 return looking_at_1 (regexp
, 0);
346 DEFUN ("posix-looking-at", Fposix_looking_at
, Sposix_looking_at
, 1, 1, 0,
347 "Return t if text after point matches regular expression REGEXP.\n\
348 Find the longest match, in accord with Posix regular expression rules.\n\
349 This function modifies the match data that `match-beginning',\n\
350 `match-end' and `match-data' access; save and restore the match\n\
351 data if you want to preserve them.")
355 return looking_at_1 (regexp
, 1);
359 string_match_1 (regexp
, string
, start
, posix
)
360 Lisp_Object regexp
, string
, start
;
364 struct re_pattern_buffer
*bufp
;
368 if (running_asynch_code
)
371 CHECK_STRING (regexp
, 0);
372 CHECK_STRING (string
, 1);
375 pos
= 0, pos_byte
= 0;
378 int len
= XSTRING (string
)->size
;
380 CHECK_NUMBER (start
, 2);
382 if (pos
< 0 && -pos
<= len
)
384 else if (0 > pos
|| pos
> len
)
385 args_out_of_range (string
, start
);
386 pos_byte
= string_char_to_byte (string
, pos
);
389 bufp
= compile_pattern (regexp
, &search_regs
,
390 (!NILP (current_buffer
->case_fold_search
)
391 ? DOWNCASE_TABLE
: Qnil
),
393 STRING_MULTIBYTE (string
));
395 re_match_object
= string
;
397 val
= re_search (bufp
, (char *) XSTRING (string
)->data
,
398 STRING_BYTES (XSTRING (string
)), pos_byte
,
399 STRING_BYTES (XSTRING (string
)) - pos_byte
,
402 last_thing_searched
= Qt
;
405 if (val
< 0) return Qnil
;
407 for (i
= 0; i
< search_regs
.num_regs
; i
++)
408 if (search_regs
.start
[i
] >= 0)
411 = string_byte_to_char (string
, search_regs
.start
[i
]);
413 = string_byte_to_char (string
, search_regs
.end
[i
]);
416 return make_number (string_byte_to_char (string
, val
));
419 DEFUN ("string-match", Fstring_match
, Sstring_match
, 2, 3, 0,
420 "Return index of start of first match for REGEXP in STRING, or nil.\n\
421 Case is ignored if `case-fold-search' is non-nil in the current buffer.\n\
422 If third arg START is non-nil, start search at that index in STRING.\n\
423 For index of first char beyond the match, do (match-end 0).\n\
424 `match-end' and `match-beginning' also give indices of substrings\n\
425 matched by parenthesis constructs in the pattern.")
426 (regexp
, string
, start
)
427 Lisp_Object regexp
, string
, start
;
429 return string_match_1 (regexp
, string
, start
, 0);
432 DEFUN ("posix-string-match", Fposix_string_match
, Sposix_string_match
, 2, 3, 0,
433 "Return index of start of first match for REGEXP in STRING, or nil.\n\
434 Find the longest match, in accord with Posix regular expression rules.\n\
435 Case is ignored if `case-fold-search' is non-nil in the current buffer.\n\
436 If third arg START is non-nil, start search at that index in STRING.\n\
437 For index of first char beyond the match, do (match-end 0).\n\
438 `match-end' and `match-beginning' also give indices of substrings\n\
439 matched by parenthesis constructs in the pattern.")
440 (regexp
, string
, start
)
441 Lisp_Object regexp
, string
, start
;
443 return string_match_1 (regexp
, string
, start
, 1);
446 /* Match REGEXP against STRING, searching all of STRING,
447 and return the index of the match, or negative on failure.
448 This does not clobber the match data. */
451 fast_string_match (regexp
, string
)
452 Lisp_Object regexp
, string
;
455 struct re_pattern_buffer
*bufp
;
457 bufp
= compile_pattern (regexp
, 0, Qnil
,
458 0, STRING_MULTIBYTE (string
));
460 re_match_object
= string
;
462 val
= re_search (bufp
, (char *) XSTRING (string
)->data
,
463 STRING_BYTES (XSTRING (string
)), 0,
464 STRING_BYTES (XSTRING (string
)), 0);
469 /* Match REGEXP against STRING, searching all of STRING ignoring case,
470 and return the index of the match, or negative on failure.
471 This does not clobber the match data.
472 We assume that STRING contains single-byte characters. */
474 extern Lisp_Object Vascii_downcase_table
;
477 fast_c_string_match_ignore_case (regexp
, string
)
482 struct re_pattern_buffer
*bufp
;
483 int len
= strlen (string
);
485 regexp
= string_make_unibyte (regexp
);
486 re_match_object
= Qt
;
487 bufp
= compile_pattern (regexp
, 0,
488 Vascii_downcase_table
, 0,
491 val
= re_search (bufp
, string
, len
, 0, len
, 0);
496 /* The newline cache: remembering which sections of text have no newlines. */
498 /* If the user has requested newline caching, make sure it's on.
499 Otherwise, make sure it's off.
500 This is our cheezy way of associating an action with the change of
501 state of a buffer-local variable. */
503 newline_cache_on_off (buf
)
506 if (NILP (buf
->cache_long_line_scans
))
508 /* It should be off. */
509 if (buf
->newline_cache
)
511 free_region_cache (buf
->newline_cache
);
512 buf
->newline_cache
= 0;
517 /* It should be on. */
518 if (buf
->newline_cache
== 0)
519 buf
->newline_cache
= new_region_cache ();
524 /* Search for COUNT instances of the character TARGET between START and END.
526 If COUNT is positive, search forwards; END must be >= START.
527 If COUNT is negative, search backwards for the -COUNTth instance;
528 END must be <= START.
529 If COUNT is zero, do anything you please; run rogue, for all I care.
531 If END is zero, use BEGV or ZV instead, as appropriate for the
532 direction indicated by COUNT.
534 If we find COUNT instances, set *SHORTAGE to zero, and return the
535 position after the COUNTth match. Note that for reverse motion
536 this is not the same as the usual convention for Emacs motion commands.
538 If we don't find COUNT instances before reaching END, set *SHORTAGE
539 to the number of TARGETs left unfound, and return END.
541 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
542 except when inside redisplay. */
545 scan_buffer (target
, start
, end
, count
, shortage
, allow_quit
)
552 struct region_cache
*newline_cache
;
563 if (! end
) end
= BEGV
;
566 newline_cache_on_off (current_buffer
);
567 newline_cache
= current_buffer
->newline_cache
;
572 immediate_quit
= allow_quit
;
577 /* Our innermost scanning loop is very simple; it doesn't know
578 about gaps, buffer ends, or the newline cache. ceiling is
579 the position of the last character before the next such
580 obstacle --- the last character the dumb search loop should
582 int ceiling_byte
= CHAR_TO_BYTE (end
) - 1;
583 int start_byte
= CHAR_TO_BYTE (start
);
586 /* If we're looking for a newline, consult the newline cache
587 to see where we can avoid some scanning. */
588 if (target
== '\n' && newline_cache
)
592 while (region_cache_forward
593 (current_buffer
, newline_cache
, start_byte
, &next_change
))
594 start_byte
= next_change
;
595 immediate_quit
= allow_quit
;
597 /* START should never be after END. */
598 if (start_byte
> ceiling_byte
)
599 start_byte
= ceiling_byte
;
601 /* Now the text after start is an unknown region, and
602 next_change is the position of the next known region. */
603 ceiling_byte
= min (next_change
- 1, ceiling_byte
);
606 /* The dumb loop can only scan text stored in contiguous
607 bytes. BUFFER_CEILING_OF returns the last character
608 position that is contiguous, so the ceiling is the
609 position after that. */
610 tem
= BUFFER_CEILING_OF (start_byte
);
611 ceiling_byte
= min (tem
, ceiling_byte
);
614 /* The termination address of the dumb loop. */
615 register unsigned char *ceiling_addr
616 = BYTE_POS_ADDR (ceiling_byte
) + 1;
617 register unsigned char *cursor
618 = BYTE_POS_ADDR (start_byte
);
619 unsigned char *base
= cursor
;
621 while (cursor
< ceiling_addr
)
623 unsigned char *scan_start
= cursor
;
626 while (*cursor
!= target
&& ++cursor
< ceiling_addr
)
629 /* If we're looking for newlines, cache the fact that
630 the region from start to cursor is free of them. */
631 if (target
== '\n' && newline_cache
)
632 know_region_cache (current_buffer
, newline_cache
,
633 start_byte
+ scan_start
- base
,
634 start_byte
+ cursor
- base
);
636 /* Did we find the target character? */
637 if (cursor
< ceiling_addr
)
642 return BYTE_TO_CHAR (start_byte
+ cursor
- base
+ 1);
648 start
= BYTE_TO_CHAR (start_byte
+ cursor
- base
);
654 /* The last character to check before the next obstacle. */
655 int ceiling_byte
= CHAR_TO_BYTE (end
);
656 int start_byte
= CHAR_TO_BYTE (start
);
659 /* Consult the newline cache, if appropriate. */
660 if (target
== '\n' && newline_cache
)
664 while (region_cache_backward
665 (current_buffer
, newline_cache
, start_byte
, &next_change
))
666 start_byte
= next_change
;
667 immediate_quit
= allow_quit
;
669 /* Start should never be at or before end. */
670 if (start_byte
<= ceiling_byte
)
671 start_byte
= ceiling_byte
+ 1;
673 /* Now the text before start is an unknown region, and
674 next_change is the position of the next known region. */
675 ceiling_byte
= max (next_change
, ceiling_byte
);
678 /* Stop scanning before the gap. */
679 tem
= BUFFER_FLOOR_OF (start_byte
- 1);
680 ceiling_byte
= max (tem
, ceiling_byte
);
683 /* The termination address of the dumb loop. */
684 register unsigned char *ceiling_addr
= BYTE_POS_ADDR (ceiling_byte
);
685 register unsigned char *cursor
= BYTE_POS_ADDR (start_byte
- 1);
686 unsigned char *base
= cursor
;
688 while (cursor
>= ceiling_addr
)
690 unsigned char *scan_start
= cursor
;
692 while (*cursor
!= target
&& --cursor
>= ceiling_addr
)
695 /* If we're looking for newlines, cache the fact that
696 the region from after the cursor to start is free of them. */
697 if (target
== '\n' && newline_cache
)
698 know_region_cache (current_buffer
, newline_cache
,
699 start_byte
+ cursor
- base
,
700 start_byte
+ scan_start
- base
);
702 /* Did we find the target character? */
703 if (cursor
>= ceiling_addr
)
708 return BYTE_TO_CHAR (start_byte
+ cursor
- base
);
714 start
= BYTE_TO_CHAR (start_byte
+ cursor
- base
);
720 *shortage
= count
* direction
;
724 /* Search for COUNT instances of a line boundary, which means either a
725 newline or (if selective display enabled) a carriage return.
726 Start at START. If COUNT is negative, search backwards.
728 We report the resulting position by calling TEMP_SET_PT_BOTH.
730 If we find COUNT instances. we position after (always after,
731 even if scanning backwards) the COUNTth match, and return 0.
733 If we don't find COUNT instances before reaching the end of the
734 buffer (or the beginning, if scanning backwards), we return
735 the number of line boundaries left unfound, and position at
736 the limit we bumped up against.
738 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
739 except in special cases. */
742 scan_newline (start
, start_byte
, limit
, limit_byte
, count
, allow_quit
)
743 int start
, start_byte
;
744 int limit
, limit_byte
;
748 int direction
= ((count
> 0) ? 1 : -1);
750 register unsigned char *cursor
;
753 register int ceiling
;
754 register unsigned char *ceiling_addr
;
756 int old_immediate_quit
= immediate_quit
;
758 /* If we are not in selective display mode,
759 check only for newlines. */
760 int selective_display
= (!NILP (current_buffer
->selective_display
)
761 && !INTEGERP (current_buffer
->selective_display
));
763 /* The code that follows is like scan_buffer
764 but checks for either newline or carriage return. */
769 start_byte
= CHAR_TO_BYTE (start
);
773 while (start_byte
< limit_byte
)
775 ceiling
= BUFFER_CEILING_OF (start_byte
);
776 ceiling
= min (limit_byte
- 1, ceiling
);
777 ceiling_addr
= BYTE_POS_ADDR (ceiling
) + 1;
778 base
= (cursor
= BYTE_POS_ADDR (start_byte
));
781 while (*cursor
!= '\n' && ++cursor
!= ceiling_addr
)
784 if (cursor
!= ceiling_addr
)
788 immediate_quit
= old_immediate_quit
;
789 start_byte
= start_byte
+ cursor
- base
+ 1;
790 start
= BYTE_TO_CHAR (start_byte
);
791 TEMP_SET_PT_BOTH (start
, start_byte
);
795 if (++cursor
== ceiling_addr
)
801 start_byte
+= cursor
- base
;
806 while (start_byte
> limit_byte
)
808 ceiling
= BUFFER_FLOOR_OF (start_byte
- 1);
809 ceiling
= max (limit_byte
, ceiling
);
810 ceiling_addr
= BYTE_POS_ADDR (ceiling
) - 1;
811 base
= (cursor
= BYTE_POS_ADDR (start_byte
- 1) + 1);
814 while (--cursor
!= ceiling_addr
&& *cursor
!= '\n')
817 if (cursor
!= ceiling_addr
)
821 immediate_quit
= old_immediate_quit
;
822 /* Return the position AFTER the match we found. */
823 start_byte
= start_byte
+ cursor
- base
+ 1;
824 start
= BYTE_TO_CHAR (start_byte
);
825 TEMP_SET_PT_BOTH (start
, start_byte
);
832 /* Here we add 1 to compensate for the last decrement
833 of CURSOR, which took it past the valid range. */
834 start_byte
+= cursor
- base
+ 1;
838 TEMP_SET_PT_BOTH (limit
, limit_byte
);
839 immediate_quit
= old_immediate_quit
;
841 return count
* direction
;
845 find_next_newline_no_quit (from
, cnt
)
846 register int from
, cnt
;
848 return scan_buffer ('\n', from
, 0, cnt
, (int *) 0, 0);
851 /* Like find_next_newline, but returns position before the newline,
852 not after, and only search up to TO. This isn't just
853 find_next_newline (...)-1, because you might hit TO. */
856 find_before_next_newline (from
, to
, cnt
)
860 int pos
= scan_buffer ('\n', from
, to
, cnt
, &shortage
, 1);
868 /* Subroutines of Lisp buffer search functions. */
871 search_command (string
, bound
, noerror
, count
, direction
, RE
, posix
)
872 Lisp_Object string
, bound
, noerror
, count
;
883 CHECK_NUMBER (count
, 3);
887 CHECK_STRING (string
, 0);
891 lim
= ZV
, lim_byte
= ZV_BYTE
;
893 lim
= BEGV
, lim_byte
= BEGV_BYTE
;
897 CHECK_NUMBER_COERCE_MARKER (bound
, 1);
899 if (n
> 0 ? lim
< PT
: lim
> PT
)
900 error ("Invalid search bound (wrong side of point)");
902 lim
= ZV
, lim_byte
= ZV_BYTE
;
904 lim
= BEGV
, lim_byte
= BEGV_BYTE
;
906 lim_byte
= CHAR_TO_BYTE (lim
);
909 np
= search_buffer (string
, PT
, PT_BYTE
, lim
, lim_byte
, n
, RE
,
910 (!NILP (current_buffer
->case_fold_search
)
911 ? current_buffer
->case_canon_table
913 (!NILP (current_buffer
->case_fold_search
)
914 ? current_buffer
->case_eqv_table
920 return signal_failure (string
);
921 if (!EQ (noerror
, Qt
))
923 if (lim
< BEGV
|| lim
> ZV
)
925 SET_PT_BOTH (lim
, lim_byte
);
927 #if 0 /* This would be clean, but maybe programs depend on
928 a value of nil here. */
936 if (np
< BEGV
|| np
> ZV
)
941 return make_number (np
);
944 /* Return 1 if REGEXP it matches just one constant string. */
947 trivial_regexp_p (regexp
)
950 int len
= STRING_BYTES (XSTRING (regexp
));
951 unsigned char *s
= XSTRING (regexp
)->data
;
956 case '.': case '*': case '+': case '?': case '[': case '^': case '$':
963 case '|': case '(': case ')': case '`': case '\'': case 'b':
964 case 'B': case '<': case '>': case 'w': case 'W': case 's':
966 case 'c': case 'C': /* for categoryspec and notcategoryspec */
967 case '1': case '2': case '3': case '4': case '5':
968 case '6': case '7': case '8': case '9':
976 /* Search for the n'th occurrence of STRING in the current buffer,
977 starting at position POS and stopping at position LIM,
978 treating STRING as a literal string if RE is false or as
979 a regular expression if RE is true.
981 If N is positive, searching is forward and LIM must be greater than POS.
982 If N is negative, searching is backward and LIM must be less than POS.
984 Returns -x if x occurrences remain to be found (x > 0),
985 or else the position at the beginning of the Nth occurrence
986 (if searching backward) or the end (if searching forward).
988 POSIX is nonzero if we want full backtracking (POSIX style)
989 for this pattern. 0 means backtrack only enough to get a valid match. */
991 #define TRANSLATE(out, trt, d) \
997 temp = Faref (trt, make_number (d)); \
998 if (INTEGERP (temp)) \
1009 search_buffer (string
, pos
, pos_byte
, lim
, lim_byte
, n
,
1010 RE
, trt
, inverse_trt
, posix
)
1019 Lisp_Object inverse_trt
;
1022 int len
= XSTRING (string
)->size
;
1023 int len_byte
= STRING_BYTES (XSTRING (string
));
1026 if (running_asynch_code
)
1027 save_search_regs ();
1029 /* Searching 0 times means don't move. */
1030 /* Null string is found at starting position. */
1031 if (len
== 0 || n
== 0)
1033 set_search_regs (pos_byte
, 0);
1037 if (RE
&& !trivial_regexp_p (string
))
1039 unsigned char *p1
, *p2
;
1041 struct re_pattern_buffer
*bufp
;
1043 bufp
= compile_pattern (string
, &search_regs
, trt
, posix
,
1044 !NILP (current_buffer
->enable_multibyte_characters
));
1046 immediate_quit
= 1; /* Quit immediately if user types ^G,
1047 because letting this function finish
1048 can take too long. */
1049 QUIT
; /* Do a pending quit right away,
1050 to avoid paradoxical behavior */
1051 /* Get pointers and sizes of the two strings
1052 that make up the visible portion of the buffer. */
1055 s1
= GPT_BYTE
- BEGV_BYTE
;
1057 s2
= ZV_BYTE
- GPT_BYTE
;
1061 s2
= ZV_BYTE
- BEGV_BYTE
;
1066 s1
= ZV_BYTE
- BEGV_BYTE
;
1069 re_match_object
= Qnil
;
1074 val
= re_search_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
1075 pos_byte
- BEGV_BYTE
, lim_byte
- pos_byte
,
1077 /* Don't allow match past current point */
1078 pos_byte
- BEGV_BYTE
);
1081 matcher_overflow ();
1085 pos_byte
= search_regs
.start
[0] + BEGV_BYTE
;
1086 for (i
= 0; i
< search_regs
.num_regs
; i
++)
1087 if (search_regs
.start
[i
] >= 0)
1089 search_regs
.start
[i
]
1090 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
1092 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
1094 XSETBUFFER (last_thing_searched
, current_buffer
);
1095 /* Set pos to the new position. */
1096 pos
= search_regs
.start
[0];
1108 val
= re_search_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
1109 pos_byte
- BEGV_BYTE
, lim_byte
- pos_byte
,
1111 lim_byte
- BEGV_BYTE
);
1114 matcher_overflow ();
1118 pos_byte
= search_regs
.end
[0] + BEGV_BYTE
;
1119 for (i
= 0; i
< search_regs
.num_regs
; i
++)
1120 if (search_regs
.start
[i
] >= 0)
1122 search_regs
.start
[i
]
1123 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
1125 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
1127 XSETBUFFER (last_thing_searched
, current_buffer
);
1128 pos
= search_regs
.end
[0];
1140 else /* non-RE case */
1142 unsigned char *raw_pattern
, *pat
;
1143 int raw_pattern_size
;
1144 int raw_pattern_size_byte
;
1145 unsigned char *patbuf
;
1146 int multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
1147 unsigned char *base_pat
= XSTRING (string
)->data
;
1148 int charset_base
= -1;
1149 int boyer_moore_ok
= 1;
1151 /* MULTIBYTE says whether the text to be searched is multibyte.
1152 We must convert PATTERN to match that, or we will not really
1153 find things right. */
1155 if (multibyte
== STRING_MULTIBYTE (string
))
1157 raw_pattern
= (unsigned char *) XSTRING (string
)->data
;
1158 raw_pattern_size
= XSTRING (string
)->size
;
1159 raw_pattern_size_byte
= STRING_BYTES (XSTRING (string
));
1163 raw_pattern_size
= XSTRING (string
)->size
;
1164 raw_pattern_size_byte
1165 = count_size_as_multibyte (XSTRING (string
)->data
,
1167 raw_pattern
= (unsigned char *) alloca (raw_pattern_size_byte
+ 1);
1168 copy_text (XSTRING (string
)->data
, raw_pattern
,
1169 XSTRING (string
)->size
, 0, 1);
1173 /* Converting multibyte to single-byte.
1175 ??? Perhaps this conversion should be done in a special way
1176 by subtracting nonascii-insert-offset from each non-ASCII char,
1177 so that only the multibyte chars which really correspond to
1178 the chosen single-byte character set can possibly match. */
1179 raw_pattern_size
= XSTRING (string
)->size
;
1180 raw_pattern_size_byte
= XSTRING (string
)->size
;
1181 raw_pattern
= (unsigned char *) alloca (raw_pattern_size
+ 1);
1182 copy_text (XSTRING (string
)->data
, raw_pattern
,
1183 STRING_BYTES (XSTRING (string
)), 1, 0);
1186 /* Copy and optionally translate the pattern. */
1187 len
= raw_pattern_size
;
1188 len_byte
= raw_pattern_size_byte
;
1189 patbuf
= (unsigned char *) alloca (len_byte
);
1191 base_pat
= raw_pattern
;
1196 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
1197 int c
, translated
, inverse
;
1198 int in_charlen
, charlen
;
1200 /* If we got here and the RE flag is set, it's because we're
1201 dealing with a regexp known to be trivial, so the backslash
1202 just quotes the next character. */
1203 if (RE
&& *base_pat
== '\\')
1210 c
= STRING_CHAR_AND_LENGTH (base_pat
, len_byte
, in_charlen
);
1212 /* Translate the character, if requested. */
1213 TRANSLATE (translated
, trt
, c
);
1214 /* If translation changed the byte-length, go back
1215 to the original character. */
1216 charlen
= CHAR_STRING (translated
, str
);
1217 if (in_charlen
!= charlen
)
1220 charlen
= CHAR_STRING (c
, str
);
1223 /* If we are searching for something strange,
1224 an invalid multibyte code, don't use boyer-moore. */
1225 if (! ASCII_BYTE_P (translated
)
1226 && (charlen
== 1 /* 8bit code */
1227 || charlen
!= in_charlen
/* invalid multibyte code */
1231 TRANSLATE (inverse
, inverse_trt
, c
);
1233 /* Did this char actually get translated?
1234 Would any other char get translated into it? */
1235 if (translated
!= c
|| inverse
!= c
)
1237 /* Keep track of which character set row
1238 contains the characters that need translation. */
1239 int charset_base_code
= c
& ~CHAR_FIELD3_MASK
;
1240 if (charset_base
== -1)
1241 charset_base
= charset_base_code
;
1242 else if (charset_base
!= charset_base_code
)
1243 /* If two different rows appear, needing translation,
1244 then we cannot use boyer_moore search. */
1248 /* Store this character into the translated pattern. */
1249 bcopy (str
, pat
, charlen
);
1251 base_pat
+= in_charlen
;
1252 len_byte
-= in_charlen
;
1257 /* Unibyte buffer. */
1263 /* If we got here and the RE flag is set, it's because we're
1264 dealing with a regexp known to be trivial, so the backslash
1265 just quotes the next character. */
1266 if (RE
&& *base_pat
== '\\')
1272 TRANSLATE (translated
, trt
, c
);
1273 *pat
++ = translated
;
1277 len_byte
= pat
- patbuf
;
1278 len
= raw_pattern_size
;
1279 pat
= base_pat
= patbuf
;
1282 return boyer_moore (n
, pat
, len
, len_byte
, trt
, inverse_trt
,
1283 pos
, pos_byte
, lim
, lim_byte
,
1286 return simple_search (n
, pat
, len
, len_byte
, trt
,
1287 pos
, pos_byte
, lim
, lim_byte
);
1291 /* Do a simple string search N times for the string PAT,
1292 whose length is LEN/LEN_BYTE,
1293 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1294 TRT is the translation table.
1296 Return the character position where the match is found.
1297 Otherwise, if M matches remained to be found, return -M.
1299 This kind of search works regardless of what is in PAT and
1300 regardless of what is in TRT. It is used in cases where
1301 boyer_moore cannot work. */
1304 simple_search (n
, pat
, len
, len_byte
, trt
, pos
, pos_byte
, lim
, lim_byte
)
1312 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
1313 int forward
= n
> 0;
1315 if (lim
> pos
&& multibyte
)
1320 /* Try matching at position POS. */
1322 int this_pos_byte
= pos_byte
;
1324 int this_len_byte
= len_byte
;
1325 unsigned char *p
= pat
;
1326 if (pos
+ len
> lim
)
1329 while (this_len
> 0)
1331 int charlen
, buf_charlen
;
1334 pat_ch
= STRING_CHAR_AND_LENGTH (p
, this_len_byte
, charlen
);
1335 buf_ch
= STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte
),
1336 ZV_BYTE
- this_pos_byte
,
1338 TRANSLATE (buf_ch
, trt
, buf_ch
);
1340 if (buf_ch
!= pat_ch
)
1343 this_len_byte
-= charlen
;
1347 this_pos_byte
+= buf_charlen
;
1354 pos_byte
+= len_byte
;
1358 INC_BOTH (pos
, pos_byte
);
1368 /* Try matching at position POS. */
1371 unsigned char *p
= pat
;
1373 if (pos
+ len
> lim
)
1376 while (this_len
> 0)
1379 int buf_ch
= FETCH_BYTE (this_pos
);
1380 TRANSLATE (buf_ch
, trt
, buf_ch
);
1382 if (buf_ch
!= pat_ch
)
1400 /* Backwards search. */
1401 else if (lim
< pos
&& multibyte
)
1406 /* Try matching at position POS. */
1407 int this_pos
= pos
- len
;
1408 int this_pos_byte
= pos_byte
- len_byte
;
1410 int this_len_byte
= len_byte
;
1411 unsigned char *p
= pat
;
1413 if (pos
- len
< lim
)
1416 while (this_len
> 0)
1418 int charlen
, buf_charlen
;
1421 pat_ch
= STRING_CHAR_AND_LENGTH (p
, this_len_byte
, charlen
);
1422 buf_ch
= STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte
),
1423 ZV_BYTE
- this_pos_byte
,
1425 TRANSLATE (buf_ch
, trt
, buf_ch
);
1427 if (buf_ch
!= pat_ch
)
1430 this_len_byte
-= charlen
;
1433 this_pos_byte
+= buf_charlen
;
1440 pos_byte
-= len_byte
;
1444 DEC_BOTH (pos
, pos_byte
);
1454 /* Try matching at position POS. */
1455 int this_pos
= pos
- len
;
1457 unsigned char *p
= pat
;
1459 if (pos
- len
< lim
)
1462 while (this_len
> 0)
1465 int buf_ch
= FETCH_BYTE (this_pos
);
1466 TRANSLATE (buf_ch
, trt
, buf_ch
);
1468 if (buf_ch
!= pat_ch
)
1490 set_search_regs ((multibyte
? pos_byte
: pos
) - len_byte
, len_byte
);
1492 set_search_regs (multibyte
? pos_byte
: pos
, len_byte
);
1502 /* Do Boyer-Moore search N times for the string PAT,
1503 whose length is LEN/LEN_BYTE,
1504 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1505 DIRECTION says which direction we search in.
1506 TRT and INVERSE_TRT are translation tables.
1508 This kind of search works if all the characters in PAT that have
1509 nontrivial translation are the same aside from the last byte. This
1510 makes it possible to translate just the last byte of a character,
1511 and do so after just a simple test of the context.
1513 If that criterion is not satisfied, do not call this function. */
1516 boyer_moore (n
, base_pat
, len
, len_byte
, trt
, inverse_trt
,
1517 pos
, pos_byte
, lim
, lim_byte
, charset_base
)
1519 unsigned char *base_pat
;
1522 Lisp_Object inverse_trt
;
1527 int direction
= ((n
> 0) ? 1 : -1);
1528 register int dirlen
;
1529 int infinity
, limit
, stride_for_teases
= 0;
1530 register int *BM_tab
;
1532 register unsigned char *cursor
, *p_limit
;
1534 unsigned char *pat
, *pat_end
;
1535 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
1537 unsigned char simple_translate
[0400];
1538 int translate_prev_byte
= 0;
1539 int translate_anteprev_byte
= 0;
1542 int BM_tab_space
[0400];
1543 BM_tab
= &BM_tab_space
[0];
1545 BM_tab
= (int *) alloca (0400 * sizeof (int));
1547 /* The general approach is that we are going to maintain that we know */
1548 /* the first (closest to the present position, in whatever direction */
1549 /* we're searching) character that could possibly be the last */
1550 /* (furthest from present position) character of a valid match. We */
1551 /* advance the state of our knowledge by looking at that character */
1552 /* and seeing whether it indeed matches the last character of the */
1553 /* pattern. If it does, we take a closer look. If it does not, we */
1554 /* move our pointer (to putative last characters) as far as is */
1555 /* logically possible. This amount of movement, which I call a */
1556 /* stride, will be the length of the pattern if the actual character */
1557 /* appears nowhere in the pattern, otherwise it will be the distance */
1558 /* from the last occurrence of that character to the end of the */
1560 /* As a coding trick, an enormous stride is coded into the table for */
1561 /* characters that match the last character. This allows use of only */
1562 /* a single test, a test for having gone past the end of the */
1563 /* permissible match region, to test for both possible matches (when */
1564 /* the stride goes past the end immediately) and failure to */
1565 /* match (where you get nudged past the end one stride at a time). */
1567 /* Here we make a "mickey mouse" BM table. The stride of the search */
1568 /* is determined only by the last character of the putative match. */
1569 /* If that character does not match, we will stride the proper */
1570 /* distance to propose a match that superimposes it on the last */
1571 /* instance of a character that matches it (per trt), or misses */
1572 /* it entirely if there is none. */
1574 dirlen
= len_byte
* direction
;
1575 infinity
= dirlen
- (lim_byte
+ pos_byte
+ len_byte
+ len_byte
) * direction
;
1577 /* Record position after the end of the pattern. */
1578 pat_end
= base_pat
+ len_byte
;
1579 /* BASE_PAT points to a character that we start scanning from.
1580 It is the first character in a forward search,
1581 the last character in a backward search. */
1583 base_pat
= pat_end
- 1;
1585 BM_tab_base
= BM_tab
;
1587 j
= dirlen
; /* to get it in a register */
1588 /* A character that does not appear in the pattern induces a */
1589 /* stride equal to the pattern length. */
1590 while (BM_tab_base
!= BM_tab
)
1598 /* We use this for translation, instead of TRT itself.
1599 We fill this in to handle the characters that actually
1600 occur in the pattern. Others don't matter anyway! */
1601 bzero (simple_translate
, sizeof simple_translate
);
1602 for (i
= 0; i
< 0400; i
++)
1603 simple_translate
[i
] = i
;
1606 while (i
!= infinity
)
1608 unsigned char *ptr
= base_pat
+ i
;
1616 int this_translated
= 1;
1619 /* Is *PTR the last byte of a character? */
1620 && (pat_end
- ptr
== 1 || CHAR_HEAD_P (ptr
[1])))
1622 unsigned char *charstart
= ptr
;
1623 while (! CHAR_HEAD_P (*charstart
))
1625 untranslated
= STRING_CHAR (charstart
, ptr
- charstart
+ 1);
1626 if (charset_base
== (untranslated
& ~CHAR_FIELD3_MASK
))
1628 TRANSLATE (ch
, trt
, untranslated
);
1629 if (! CHAR_HEAD_P (*ptr
))
1631 translate_prev_byte
= ptr
[-1];
1632 if (! CHAR_HEAD_P (translate_prev_byte
))
1633 translate_anteprev_byte
= ptr
[-2];
1638 this_translated
= 0;
1642 else if (!multibyte
)
1643 TRANSLATE (ch
, trt
, *ptr
);
1647 this_translated
= 0;
1651 j
= ((unsigned char) ch
) | 0200;
1653 j
= (unsigned char) ch
;
1656 stride_for_teases
= BM_tab
[j
];
1658 BM_tab
[j
] = dirlen
- i
;
1659 /* A translation table is accompanied by its inverse -- see */
1660 /* comment following downcase_table for details */
1661 if (this_translated
)
1663 int starting_ch
= ch
;
1667 TRANSLATE (ch
, inverse_trt
, ch
);
1669 j
= ((unsigned char) ch
) | 0200;
1671 j
= (unsigned char) ch
;
1673 /* For all the characters that map into CH,
1674 set up simple_translate to map the last byte
1676 simple_translate
[j
] = starting_j
;
1677 if (ch
== starting_ch
)
1679 BM_tab
[j
] = dirlen
- i
;
1688 stride_for_teases
= BM_tab
[j
];
1689 BM_tab
[j
] = dirlen
- i
;
1691 /* stride_for_teases tells how much to stride if we get a */
1692 /* match on the far character but are subsequently */
1693 /* disappointed, by recording what the stride would have been */
1694 /* for that character if the last character had been */
1697 infinity
= dirlen
- infinity
;
1698 pos_byte
+= dirlen
- ((direction
> 0) ? direction
: 0);
1699 /* loop invariant - POS_BYTE points at where last char (first
1700 char if reverse) of pattern would align in a possible match. */
1704 unsigned char *tail_end_ptr
;
1706 /* It's been reported that some (broken) compiler thinks that
1707 Boolean expressions in an arithmetic context are unsigned.
1708 Using an explicit ?1:0 prevents this. */
1709 if ((lim_byte
- pos_byte
- ((direction
> 0) ? 1 : 0)) * direction
1711 return (n
* (0 - direction
));
1712 /* First we do the part we can by pointers (maybe nothing) */
1715 limit
= pos_byte
- dirlen
+ direction
;
1718 limit
= BUFFER_CEILING_OF (limit
);
1719 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1720 can take on without hitting edge of buffer or the gap. */
1721 limit
= min (limit
, pos_byte
+ 20000);
1722 limit
= min (limit
, lim_byte
- 1);
1726 limit
= BUFFER_FLOOR_OF (limit
);
1727 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1728 can take on without hitting edge of buffer or the gap. */
1729 limit
= max (limit
, pos_byte
- 20000);
1730 limit
= max (limit
, lim_byte
);
1732 tail_end
= BUFFER_CEILING_OF (pos_byte
) + 1;
1733 tail_end_ptr
= BYTE_POS_ADDR (tail_end
);
1735 if ((limit
- pos_byte
) * direction
> 20)
1739 p_limit
= BYTE_POS_ADDR (limit
);
1740 p2
= (cursor
= BYTE_POS_ADDR (pos_byte
));
1741 /* In this loop, pos + cursor - p2 is the surrogate for pos */
1742 while (1) /* use one cursor setting as long as i can */
1744 if (direction
> 0) /* worth duplicating */
1746 /* Use signed comparison if appropriate
1747 to make cursor+infinity sure to be > p_limit.
1748 Assuming that the buffer lies in a range of addresses
1749 that are all "positive" (as ints) or all "negative",
1750 either kind of comparison will work as long
1751 as we don't step by infinity. So pick the kind
1752 that works when we do step by infinity. */
1753 if ((EMACS_INT
) (p_limit
+ infinity
) > (EMACS_INT
) p_limit
)
1754 while ((EMACS_INT
) cursor
<= (EMACS_INT
) p_limit
)
1755 cursor
+= BM_tab
[*cursor
];
1757 while ((EMACS_UINT
) cursor
<= (EMACS_UINT
) p_limit
)
1758 cursor
+= BM_tab
[*cursor
];
1762 if ((EMACS_INT
) (p_limit
+ infinity
) < (EMACS_INT
) p_limit
)
1763 while ((EMACS_INT
) cursor
>= (EMACS_INT
) p_limit
)
1764 cursor
+= BM_tab
[*cursor
];
1766 while ((EMACS_UINT
) cursor
>= (EMACS_UINT
) p_limit
)
1767 cursor
+= BM_tab
[*cursor
];
1769 /* If you are here, cursor is beyond the end of the searched region. */
1770 /* This can happen if you match on the far character of the pattern, */
1771 /* because the "stride" of that character is infinity, a number able */
1772 /* to throw you well beyond the end of the search. It can also */
1773 /* happen if you fail to match within the permitted region and would */
1774 /* otherwise try a character beyond that region */
1775 if ((cursor
- p_limit
) * direction
<= len_byte
)
1776 break; /* a small overrun is genuine */
1777 cursor
-= infinity
; /* large overrun = hit */
1778 i
= dirlen
- direction
;
1781 while ((i
-= direction
) + direction
!= 0)
1784 cursor
-= direction
;
1785 /* Translate only the last byte of a character. */
1787 || ((cursor
== tail_end_ptr
1788 || CHAR_HEAD_P (cursor
[1]))
1789 && (CHAR_HEAD_P (cursor
[0])
1790 || (translate_prev_byte
== cursor
[-1]
1791 && (CHAR_HEAD_P (translate_prev_byte
)
1792 || translate_anteprev_byte
== cursor
[-2])))))
1793 ch
= simple_translate
[*cursor
];
1802 while ((i
-= direction
) + direction
!= 0)
1804 cursor
-= direction
;
1805 if (pat
[i
] != *cursor
)
1809 cursor
+= dirlen
- i
- direction
; /* fix cursor */
1810 if (i
+ direction
== 0)
1814 cursor
-= direction
;
1816 position
= pos_byte
+ cursor
- p2
+ ((direction
> 0)
1817 ? 1 - len_byte
: 0);
1818 set_search_regs (position
, len_byte
);
1820 if ((n
-= direction
) != 0)
1821 cursor
+= dirlen
; /* to resume search */
1823 return ((direction
> 0)
1824 ? search_regs
.end
[0] : search_regs
.start
[0]);
1827 cursor
+= stride_for_teases
; /* <sigh> we lose - */
1829 pos_byte
+= cursor
- p2
;
1832 /* Now we'll pick up a clump that has to be done the hard */
1833 /* way because it covers a discontinuity */
1835 limit
= ((direction
> 0)
1836 ? BUFFER_CEILING_OF (pos_byte
- dirlen
+ 1)
1837 : BUFFER_FLOOR_OF (pos_byte
- dirlen
- 1));
1838 limit
= ((direction
> 0)
1839 ? min (limit
+ len_byte
, lim_byte
- 1)
1840 : max (limit
- len_byte
, lim_byte
));
1841 /* LIMIT is now the last value POS_BYTE can have
1842 and still be valid for a possible match. */
1845 /* This loop can be coded for space rather than */
1846 /* speed because it will usually run only once. */
1847 /* (the reach is at most len + 21, and typically */
1848 /* does not exceed len) */
1849 while ((limit
- pos_byte
) * direction
>= 0)
1850 pos_byte
+= BM_tab
[FETCH_BYTE (pos_byte
)];
1851 /* now run the same tests to distinguish going off the */
1852 /* end, a match or a phony match. */
1853 if ((pos_byte
- limit
) * direction
<= len_byte
)
1854 break; /* ran off the end */
1855 /* Found what might be a match.
1856 Set POS_BYTE back to last (first if reverse) pos. */
1857 pos_byte
-= infinity
;
1858 i
= dirlen
- direction
;
1859 while ((i
-= direction
) + direction
!= 0)
1863 pos_byte
-= direction
;
1864 ptr
= BYTE_POS_ADDR (pos_byte
);
1865 /* Translate only the last byte of a character. */
1867 || ((ptr
== tail_end_ptr
1868 || CHAR_HEAD_P (ptr
[1]))
1869 && (CHAR_HEAD_P (ptr
[0])
1870 || (translate_prev_byte
== ptr
[-1]
1871 && (CHAR_HEAD_P (translate_prev_byte
)
1872 || translate_anteprev_byte
== ptr
[-2])))))
1873 ch
= simple_translate
[*ptr
];
1879 /* Above loop has moved POS_BYTE part or all the way
1880 back to the first pos (last pos if reverse).
1881 Set it once again at the last (first if reverse) char. */
1882 pos_byte
+= dirlen
- i
- direction
;
1883 if (i
+ direction
== 0)
1886 pos_byte
-= direction
;
1888 position
= pos_byte
+ ((direction
> 0) ? 1 - len_byte
: 0);
1890 set_search_regs (position
, len_byte
);
1892 if ((n
-= direction
) != 0)
1893 pos_byte
+= dirlen
; /* to resume search */
1895 return ((direction
> 0)
1896 ? search_regs
.end
[0] : search_regs
.start
[0]);
1899 pos_byte
+= stride_for_teases
;
1902 /* We have done one clump. Can we continue? */
1903 if ((lim_byte
- pos_byte
) * direction
< 0)
1904 return ((0 - n
) * direction
);
1906 return BYTE_TO_CHAR (pos_byte
);
1909 /* Record beginning BEG_BYTE and end BEG_BYTE + NBYTES
1910 for the overall match just found in the current buffer.
1911 Also clear out the match data for registers 1 and up. */
1914 set_search_regs (beg_byte
, nbytes
)
1915 int beg_byte
, nbytes
;
1919 /* Make sure we have registers in which to store
1920 the match position. */
1921 if (search_regs
.num_regs
== 0)
1923 search_regs
.start
= (regoff_t
*) xmalloc (2 * sizeof (regoff_t
));
1924 search_regs
.end
= (regoff_t
*) xmalloc (2 * sizeof (regoff_t
));
1925 search_regs
.num_regs
= 2;
1928 /* Clear out the other registers. */
1929 for (i
= 1; i
< search_regs
.num_regs
; i
++)
1931 search_regs
.start
[i
] = -1;
1932 search_regs
.end
[i
] = -1;
1935 search_regs
.start
[0] = BYTE_TO_CHAR (beg_byte
);
1936 search_regs
.end
[0] = BYTE_TO_CHAR (beg_byte
+ nbytes
);
1937 XSETBUFFER (last_thing_searched
, current_buffer
);
1940 /* Given a string of words separated by word delimiters,
1941 compute a regexp that matches those exact words
1942 separated by arbitrary punctuation. */
1948 register unsigned char *p
, *o
;
1949 register int i
, i_byte
, len
, punct_count
= 0, word_count
= 0;
1954 CHECK_STRING (string
, 0);
1955 p
= XSTRING (string
)->data
;
1956 len
= XSTRING (string
)->size
;
1958 for (i
= 0, i_byte
= 0; i
< len
; )
1962 FETCH_STRING_CHAR_ADVANCE (c
, string
, i
, i_byte
);
1964 if (SYNTAX (c
) != Sword
)
1967 if (i
> 0 && SYNTAX (prev_c
) == Sword
)
1974 if (SYNTAX (prev_c
) == Sword
)
1977 return build_string ("");
1979 adjust
= - punct_count
+ 5 * (word_count
- 1) + 4;
1980 if (STRING_MULTIBYTE (string
))
1981 val
= make_uninit_multibyte_string (len
+ adjust
,
1982 STRING_BYTES (XSTRING (string
))
1985 val
= make_uninit_string (len
+ adjust
);
1987 o
= XSTRING (val
)->data
;
1992 for (i
= 0, i_byte
= 0; i
< len
; )
1995 int i_byte_orig
= i_byte
;
1997 FETCH_STRING_CHAR_ADVANCE (c
, string
, i
, i_byte
);
1999 if (SYNTAX (c
) == Sword
)
2001 bcopy (&XSTRING (string
)->data
[i_byte_orig
], o
,
2002 i_byte
- i_byte_orig
);
2003 o
+= i_byte
- i_byte_orig
;
2005 else if (i
> 0 && SYNTAX (prev_c
) == Sword
&& --word_count
)
2023 DEFUN ("search-backward", Fsearch_backward
, Ssearch_backward
, 1, 4,
2024 "MSearch backward: ",
2025 "Search backward from point for STRING.\n\
2026 Set point to the beginning of the occurrence found, and return point.\n\
2027 An optional second argument bounds the search; it is a buffer position.\n\
2028 The match found must not extend before that position.\n\
2029 Optional third argument, if t, means if fail just return nil (no error).\n\
2030 If not nil and not t, position at limit of search and return nil.\n\
2031 Optional fourth argument is repeat count--search for successive occurrences.\n\
2033 Search case-sensitivity is determined by the value of the variable\n\
2034 `case-fold-search', which see.\n\
2036 See also the functions `match-beginning', `match-end' and `replace-match'.")
2037 (string
, bound
, noerror
, count
)
2038 Lisp_Object string
, bound
, noerror
, count
;
2040 return search_command (string
, bound
, noerror
, count
, -1, 0, 0);
2043 DEFUN ("search-forward", Fsearch_forward
, Ssearch_forward
, 1, 4, "MSearch: ",
2044 "Search forward from point for STRING.\n\
2045 Set point to the end of the occurrence found, and return point.\n\
2046 An optional second argument bounds the search; it is a buffer position.\n\
2047 The match found must not extend after that position. nil is equivalent\n\
2049 Optional third argument, if t, means if fail just return nil (no error).\n\
2050 If not nil and not t, move to limit of search and return nil.\n\
2051 Optional fourth argument is repeat count--search for successive occurrences.\n\
2053 Search case-sensitivity is determined by the value of the variable\n\
2054 `case-fold-search', which see.\n\
2056 See also the functions `match-beginning', `match-end' and `replace-match'.")
2057 (string
, bound
, noerror
, count
)
2058 Lisp_Object string
, bound
, noerror
, count
;
2060 return search_command (string
, bound
, noerror
, count
, 1, 0, 0);
2063 DEFUN ("word-search-backward", Fword_search_backward
, Sword_search_backward
, 1, 4,
2064 "sWord search backward: ",
2065 "Search backward from point for STRING, ignoring differences in punctuation.\n\
2066 Set point to the beginning of the occurrence found, and return point.\n\
2067 An optional second argument bounds the search; it is a buffer position.\n\
2068 The match found must not extend before that position.\n\
2069 Optional third argument, if t, means if fail just return nil (no error).\n\
2070 If not nil and not t, move to limit of search and return nil.\n\
2071 Optional fourth argument is repeat count--search for successive occurrences.")
2072 (string
, bound
, noerror
, count
)
2073 Lisp_Object string
, bound
, noerror
, count
;
2075 return search_command (wordify (string
), bound
, noerror
, count
, -1, 1, 0);
2078 DEFUN ("word-search-forward", Fword_search_forward
, Sword_search_forward
, 1, 4,
2080 "Search forward from point for STRING, ignoring differences in punctuation.\n\
2081 Set point to the end of the occurrence found, and return point.\n\
2082 An optional second argument bounds the search; it is a buffer position.\n\
2083 The match found must not extend after that position.\n\
2084 Optional third argument, if t, means if fail just return nil (no error).\n\
2085 If not nil and not t, move to limit of search and return nil.\n\
2086 Optional fourth argument is repeat count--search for successive occurrences.")
2087 (string
, bound
, noerror
, count
)
2088 Lisp_Object string
, bound
, noerror
, count
;
2090 return search_command (wordify (string
), bound
, noerror
, count
, 1, 1, 0);
2093 DEFUN ("re-search-backward", Fre_search_backward
, Sre_search_backward
, 1, 4,
2094 "sRE search backward: ",
2095 "Search backward from point for match for regular expression REGEXP.\n\
2096 Set point to the beginning of the match, and return point.\n\
2097 The match found is the one starting last in the buffer\n\
2098 and yet ending before the origin of the search.\n\
2099 An optional second argument bounds the search; it is a buffer position.\n\
2100 The match found must start at or after that position.\n\
2101 Optional third argument, if t, means if fail just return nil (no error).\n\
2102 If not nil and not t, move to limit of search and return nil.\n\
2103 Optional fourth argument is repeat count--search for successive occurrences.\n\
2104 See also the functions `match-beginning', `match-end', `match-string',\n\
2105 and `replace-match'.")
2106 (regexp
, bound
, noerror
, count
)
2107 Lisp_Object regexp
, bound
, noerror
, count
;
2109 return search_command (regexp
, bound
, noerror
, count
, -1, 1, 0);
2112 DEFUN ("re-search-forward", Fre_search_forward
, Sre_search_forward
, 1, 4,
2114 "Search forward from point for regular expression REGEXP.\n\
2115 Set point to the end of the occurrence found, and return point.\n\
2116 An optional second argument bounds the search; it is a buffer position.\n\
2117 The match found must not extend after that position.\n\
2118 Optional third argument, if t, means if fail just return nil (no error).\n\
2119 If not nil and not t, move to limit of search and return nil.\n\
2120 Optional fourth argument is repeat count--search for successive occurrences.\n\
2121 See also the functions `match-beginning', `match-end', `match-string',\n\
2122 and `replace-match'.")
2123 (regexp
, bound
, noerror
, count
)
2124 Lisp_Object regexp
, bound
, noerror
, count
;
2126 return search_command (regexp
, bound
, noerror
, count
, 1, 1, 0);
2129 DEFUN ("posix-search-backward", Fposix_search_backward
, Sposix_search_backward
, 1, 4,
2130 "sPosix search backward: ",
2131 "Search backward from point for match for regular expression REGEXP.\n\
2132 Find the longest match in accord with Posix regular expression rules.\n\
2133 Set point to the beginning of the match, and return point.\n\
2134 The match found is the one starting last in the buffer\n\
2135 and yet ending before the origin of the search.\n\
2136 An optional second argument bounds the search; it is a buffer position.\n\
2137 The match found must start at or after that position.\n\
2138 Optional third argument, if t, means if fail just return nil (no error).\n\
2139 If not nil and not t, move to limit of search and return nil.\n\
2140 Optional fourth argument is repeat count--search for successive occurrences.\n\
2141 See also the functions `match-beginning', `match-end', `match-string',\n\
2142 and `replace-match'.")
2143 (regexp
, bound
, noerror
, count
)
2144 Lisp_Object regexp
, bound
, noerror
, count
;
2146 return search_command (regexp
, bound
, noerror
, count
, -1, 1, 1);
2149 DEFUN ("posix-search-forward", Fposix_search_forward
, Sposix_search_forward
, 1, 4,
2151 "Search forward from point for regular expression REGEXP.\n\
2152 Find the longest match in accord with Posix regular expression rules.\n\
2153 Set point to the end of the occurrence found, and return point.\n\
2154 An optional second argument bounds the search; it is a buffer position.\n\
2155 The match found must not extend after that position.\n\
2156 Optional third argument, if t, means if fail just return nil (no error).\n\
2157 If not nil and not t, move to limit of search and return nil.\n\
2158 Optional fourth argument is repeat count--search for successive occurrences.\n\
2159 See also the functions `match-beginning', `match-end', `match-string',\n\
2160 and `replace-match'.")
2161 (regexp
, bound
, noerror
, count
)
2162 Lisp_Object regexp
, bound
, noerror
, count
;
2164 return search_command (regexp
, bound
, noerror
, count
, 1, 1, 1);
2167 DEFUN ("replace-match", Freplace_match
, Sreplace_match
, 1, 5, 0,
2168 "Replace text matched by last search with NEWTEXT.\n\
2169 If second arg FIXEDCASE is non-nil, do not alter case of replacement text.\n\
2170 Otherwise maybe capitalize the whole text, or maybe just word initials,\n\
2171 based on the replaced text.\n\
2172 If the replaced text has only capital letters\n\
2173 and has at least one multiletter word, convert NEWTEXT to all caps.\n\
2174 If the replaced text has at least one word starting with a capital letter,\n\
2175 then capitalize each word in NEWTEXT.\n\n\
2176 If third arg LITERAL is non-nil, insert NEWTEXT literally.\n\
2177 Otherwise treat `\\' as special:\n\
2178 `\\&' in NEWTEXT means substitute original matched text.\n\
2179 `\\N' means substitute what matched the Nth `\\(...\\)'.\n\
2180 If Nth parens didn't match, substitute nothing.\n\
2181 `\\\\' means insert one `\\'.\n\
2182 FIXEDCASE and LITERAL are optional arguments.\n\
2183 Leaves point at end of replacement text.\n\
2185 The optional fourth argument STRING can be a string to modify.\n\
2186 In that case, this function creates and returns a new string\n\
2187 which is made by replacing the part of STRING that was matched.\n\
2189 The optional fifth argument SUBEXP specifies a subexpression of the match.\n\
2190 It says to replace just that subexpression instead of the whole match.\n\
2191 This is useful only after a regular expression search or match\n\
2192 since only regular expressions have distinguished subexpressions.")
2193 (newtext
, fixedcase
, literal
, string
, subexp
)
2194 Lisp_Object newtext
, fixedcase
, literal
, string
, subexp
;
2196 enum { nochange
, all_caps
, cap_initial
} case_action
;
2197 register int pos
, pos_byte
;
2198 int some_multiletter_word
;
2201 int some_nonuppercase_initial
;
2202 register int c
, prevc
;
2205 int opoint
, newpoint
;
2207 CHECK_STRING (newtext
, 0);
2209 if (! NILP (string
))
2210 CHECK_STRING (string
, 4);
2212 case_action
= nochange
; /* We tried an initialization */
2213 /* but some C compilers blew it */
2215 if (search_regs
.num_regs
<= 0)
2216 error ("replace-match called before any match found");
2222 CHECK_NUMBER (subexp
, 3);
2223 sub
= XINT (subexp
);
2224 if (sub
< 0 || sub
>= search_regs
.num_regs
)
2225 args_out_of_range (subexp
, make_number (search_regs
.num_regs
));
2230 if (search_regs
.start
[sub
] < BEGV
2231 || search_regs
.start
[sub
] > search_regs
.end
[sub
]
2232 || search_regs
.end
[sub
] > ZV
)
2233 args_out_of_range (make_number (search_regs
.start
[sub
]),
2234 make_number (search_regs
.end
[sub
]));
2238 if (search_regs
.start
[sub
] < 0
2239 || search_regs
.start
[sub
] > search_regs
.end
[sub
]
2240 || search_regs
.end
[sub
] > XSTRING (string
)->size
)
2241 args_out_of_range (make_number (search_regs
.start
[sub
]),
2242 make_number (search_regs
.end
[sub
]));
2245 if (NILP (fixedcase
))
2247 /* Decide how to casify by examining the matched text. */
2250 pos
= search_regs
.start
[sub
];
2251 last
= search_regs
.end
[sub
];
2254 pos_byte
= CHAR_TO_BYTE (pos
);
2256 pos_byte
= string_char_to_byte (string
, pos
);
2259 case_action
= all_caps
;
2261 /* some_multiletter_word is set nonzero if any original word
2262 is more than one letter long. */
2263 some_multiletter_word
= 0;
2265 some_nonuppercase_initial
= 0;
2272 c
= FETCH_CHAR (pos_byte
);
2273 INC_BOTH (pos
, pos_byte
);
2276 FETCH_STRING_CHAR_ADVANCE (c
, string
, pos
, pos_byte
);
2280 /* Cannot be all caps if any original char is lower case */
2283 if (SYNTAX (prevc
) != Sword
)
2284 some_nonuppercase_initial
= 1;
2286 some_multiletter_word
= 1;
2288 else if (!NOCASEP (c
))
2291 if (SYNTAX (prevc
) != Sword
)
2294 some_multiletter_word
= 1;
2298 /* If the initial is a caseless word constituent,
2299 treat that like a lowercase initial. */
2300 if (SYNTAX (prevc
) != Sword
)
2301 some_nonuppercase_initial
= 1;
2307 /* Convert to all caps if the old text is all caps
2308 and has at least one multiletter word. */
2309 if (! some_lowercase
&& some_multiletter_word
)
2310 case_action
= all_caps
;
2311 /* Capitalize each word, if the old text has all capitalized words. */
2312 else if (!some_nonuppercase_initial
&& some_multiletter_word
)
2313 case_action
= cap_initial
;
2314 else if (!some_nonuppercase_initial
&& some_uppercase
)
2315 /* Should x -> yz, operating on X, give Yz or YZ?
2316 We'll assume the latter. */
2317 case_action
= all_caps
;
2319 case_action
= nochange
;
2322 /* Do replacement in a string. */
2325 Lisp_Object before
, after
;
2327 before
= Fsubstring (string
, make_number (0),
2328 make_number (search_regs
.start
[sub
]));
2329 after
= Fsubstring (string
, make_number (search_regs
.end
[sub
]), Qnil
);
2331 /* Substitute parts of the match into NEWTEXT
2336 int lastpos_byte
= 0;
2337 /* We build up the substituted string in ACCUM. */
2340 int length
= STRING_BYTES (XSTRING (newtext
));
2344 for (pos_byte
= 0, pos
= 0; pos_byte
< length
;)
2348 int delbackslash
= 0;
2350 FETCH_STRING_CHAR_ADVANCE (c
, newtext
, pos
, pos_byte
);
2354 FETCH_STRING_CHAR_ADVANCE (c
, newtext
, pos
, pos_byte
);
2358 substart
= search_regs
.start
[sub
];
2359 subend
= search_regs
.end
[sub
];
2361 else if (c
>= '1' && c
<= '9' && c
<= search_regs
.num_regs
+ '0')
2363 if (search_regs
.start
[c
- '0'] >= 0)
2365 substart
= search_regs
.start
[c
- '0'];
2366 subend
= search_regs
.end
[c
- '0'];
2372 error ("Invalid use of `\\' in replacement text");
2376 if (pos
- 2 != lastpos
)
2377 middle
= substring_both (newtext
, lastpos
,
2379 pos
- 2, pos_byte
- 2);
2382 accum
= concat3 (accum
, middle
,
2384 make_number (substart
),
2385 make_number (subend
)));
2387 lastpos_byte
= pos_byte
;
2389 else if (delbackslash
)
2391 middle
= substring_both (newtext
, lastpos
,
2393 pos
- 1, pos_byte
- 1);
2395 accum
= concat2 (accum
, middle
);
2397 lastpos_byte
= pos_byte
;
2402 middle
= substring_both (newtext
, lastpos
,
2408 newtext
= concat2 (accum
, middle
);
2411 /* Do case substitution in NEWTEXT if desired. */
2412 if (case_action
== all_caps
)
2413 newtext
= Fupcase (newtext
);
2414 else if (case_action
== cap_initial
)
2415 newtext
= Fupcase_initials (newtext
);
2417 return concat3 (before
, newtext
, after
);
2420 /* Record point, the move (quietly) to the start of the match. */
2421 if (PT
>= search_regs
.end
[sub
])
2423 else if (PT
> search_regs
.start
[sub
])
2424 opoint
= search_regs
.end
[sub
] - ZV
;
2428 TEMP_SET_PT (search_regs
.start
[sub
]);
2430 /* We insert the replacement text before the old text, and then
2431 delete the original text. This means that markers at the
2432 beginning or end of the original will float to the corresponding
2433 position in the replacement. */
2434 if (!NILP (literal
))
2435 Finsert_and_inherit (1, &newtext
);
2438 int length
= STRING_BYTES (XSTRING (newtext
));
2439 unsigned char *substed
;
2440 int substed_alloc_size
, substed_len
;
2441 int buf_multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
2442 int str_multibyte
= STRING_MULTIBYTE (newtext
);
2443 Lisp_Object rev_tbl
;
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. */
2487 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, newtext
,
2489 if (!buf_multibyte
&& !SINGLE_BYTE_CHAR_P (c
))
2490 c
= multibyte_char_to_unibyte (c
, rev_tbl
);
2494 c
= XSTRING (newtext
)->data
[pos_byte
++];
2496 c
= unibyte_char_to_multibyte (c
);
2501 else if (c
>= '1' && c
<= '9' && c
<= search_regs
.num_regs
+ '0')
2503 if (search_regs
.start
[c
- '0'] >= 1)
2507 add_len
= 1, add_stuff
= "\\";
2511 error ("Invalid use of `\\' in replacement text");
2516 add_len
= CHAR_STRING (c
, str
);
2520 /* If we want to copy part of a previous match,
2521 set up ADD_STUFF and ADD_LEN to point to it. */
2524 int begbyte
= CHAR_TO_BYTE (search_regs
.start
[idx
]);
2525 add_len
= CHAR_TO_BYTE (search_regs
.end
[idx
]) - begbyte
;
2526 if (search_regs
.start
[idx
] < GPT
&& GPT
< search_regs
.end
[idx
])
2527 move_gap (search_regs
.start
[idx
]);
2528 add_stuff
= BYTE_POS_ADDR (begbyte
);
2531 /* Now the stuff we want to add to SUBSTED
2532 is invariably ADD_LEN bytes starting at ADD_STUFF. */
2534 /* Make sure SUBSTED is big enough. */
2535 if (substed_len
+ add_len
>= substed_alloc_size
)
2537 substed_alloc_size
= substed_len
+ add_len
+ 500;
2538 substed
= (unsigned char *) xrealloc (substed
,
2539 substed_alloc_size
+ 1);
2542 /* Now add to the end of SUBSTED. */
2545 bcopy (add_stuff
, substed
+ substed_len
, add_len
);
2546 substed_len
+= add_len
;
2550 /* Now insert what we accumulated. */
2551 insert_and_inherit (substed
, substed_len
);
2556 inslen
= PT
- (search_regs
.start
[sub
]);
2557 del_range (search_regs
.start
[sub
] + inslen
, search_regs
.end
[sub
] + inslen
);
2559 if (case_action
== all_caps
)
2560 Fupcase_region (make_number (PT
- inslen
), make_number (PT
));
2561 else if (case_action
== cap_initial
)
2562 Fupcase_initials_region (make_number (PT
- inslen
), make_number (PT
));
2566 /* Put point back where it was in the text. */
2568 TEMP_SET_PT (opoint
+ ZV
);
2570 TEMP_SET_PT (opoint
);
2572 /* Now move point "officially" to the start of the inserted replacement. */
2573 move_if_not_intangible (newpoint
);
2579 match_limit (num
, beginningp
)
2585 CHECK_NUMBER (num
, 0);
2587 if (n
< 0 || n
>= search_regs
.num_regs
)
2588 args_out_of_range (num
, make_number (search_regs
.num_regs
));
2589 if (search_regs
.num_regs
<= 0
2590 || search_regs
.start
[n
] < 0)
2592 return (make_number ((beginningp
) ? search_regs
.start
[n
]
2593 : search_regs
.end
[n
]));
2596 DEFUN ("match-beginning", Fmatch_beginning
, Smatch_beginning
, 1, 1, 0,
2597 "Return position of start of text matched by last search.\n\
2598 SUBEXP, a number, specifies which parenthesized expression in the last\n\
2600 Value is nil if SUBEXPth pair didn't match, or there were less than\n\
2602 Zero means the entire text matched by the whole regexp or whole string.")
2606 return match_limit (subexp
, 1);
2609 DEFUN ("match-end", Fmatch_end
, Smatch_end
, 1, 1, 0,
2610 "Return position of end of text matched by last search.\n\
2611 SUBEXP, a number, specifies which parenthesized expression in the last\n\
2613 Value is nil if SUBEXPth pair didn't match, or there were less than\n\
2615 Zero means the entire text matched by the whole regexp or whole string.")
2619 return match_limit (subexp
, 0);
2622 DEFUN ("match-data", Fmatch_data
, Smatch_data
, 0, 2, 0,
2623 "Return a list containing all info on what the last search matched.\n\
2624 Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.\n\
2625 All the elements are markers or nil (nil if the Nth pair didn't match)\n\
2626 if the last match was on a buffer; integers or nil if a string was matched.\n\
2627 Use `store-match-data' to reinstate the data in this list.\n\
2629 If INTEGERS (the optional first argument) is non-nil, always use integers\n\
2630 \(rather than markers) to represent buffer positions.\n\
2631 If REUSE is a list, reuse it as part of the value. If REUSE is long enough\n\
2632 to hold all the values, and if INTEGERS is non-nil, no consing is done.")
2634 Lisp_Object integers
, reuse
;
2636 Lisp_Object tail
, prev
;
2640 if (NILP (last_thing_searched
))
2645 data
= (Lisp_Object
*) alloca ((2 * search_regs
.num_regs
)
2646 * sizeof (Lisp_Object
));
2649 for (i
= 0; i
< search_regs
.num_regs
; i
++)
2651 int start
= search_regs
.start
[i
];
2654 if (EQ (last_thing_searched
, Qt
)
2655 || ! NILP (integers
))
2657 XSETFASTINT (data
[2 * i
], start
);
2658 XSETFASTINT (data
[2 * i
+ 1], search_regs
.end
[i
]);
2660 else if (BUFFERP (last_thing_searched
))
2662 data
[2 * i
] = Fmake_marker ();
2663 Fset_marker (data
[2 * i
],
2664 make_number (start
),
2665 last_thing_searched
);
2666 data
[2 * i
+ 1] = Fmake_marker ();
2667 Fset_marker (data
[2 * i
+ 1],
2668 make_number (search_regs
.end
[i
]),
2669 last_thing_searched
);
2672 /* last_thing_searched must always be Qt, a buffer, or Qnil. */
2678 data
[2 * i
] = data
[2 * i
+ 1] = Qnil
;
2681 /* If REUSE is not usable, cons up the values and return them. */
2682 if (! CONSP (reuse
))
2683 return Flist (2 * len
+ 2, data
);
2685 /* If REUSE is a list, store as many value elements as will fit
2686 into the elements of REUSE. */
2687 for (i
= 0, tail
= reuse
; CONSP (tail
);
2688 i
++, tail
= XCDR (tail
))
2690 if (i
< 2 * len
+ 2)
2691 XCAR (tail
) = data
[i
];
2697 /* If we couldn't fit all value elements into REUSE,
2698 cons up the rest of them and add them to the end of REUSE. */
2699 if (i
< 2 * len
+ 2)
2700 XCDR (prev
) = Flist (2 * len
+ 2 - i
, data
+ i
);
2706 DEFUN ("set-match-data", Fset_match_data
, Sset_match_data
, 1, 1, 0,
2707 "Set internal data on last search match from elements of LIST.\n\
2708 LIST should have been created by calling `match-data' previously.")
2710 register Lisp_Object list
;
2713 register Lisp_Object marker
;
2715 if (running_asynch_code
)
2716 save_search_regs ();
2718 if (!CONSP (list
) && !NILP (list
))
2719 list
= wrong_type_argument (Qconsp
, list
);
2721 /* Unless we find a marker with a buffer in LIST, assume that this
2722 match data came from a string. */
2723 last_thing_searched
= Qt
;
2725 /* Allocate registers if they don't already exist. */
2727 int length
= XFASTINT (Flength (list
)) / 2;
2729 if (length
> search_regs
.num_regs
)
2731 if (search_regs
.num_regs
== 0)
2734 = (regoff_t
*) xmalloc (length
* sizeof (regoff_t
));
2736 = (regoff_t
*) xmalloc (length
* sizeof (regoff_t
));
2741 = (regoff_t
*) xrealloc (search_regs
.start
,
2742 length
* sizeof (regoff_t
));
2744 = (regoff_t
*) xrealloc (search_regs
.end
,
2745 length
* sizeof (regoff_t
));
2748 for (i
= search_regs
.num_regs
; i
< length
; i
++)
2749 search_regs
.start
[i
] = -1;
2751 search_regs
.num_regs
= length
;
2755 for (i
= 0; i
< search_regs
.num_regs
; i
++)
2757 marker
= Fcar (list
);
2760 search_regs
.start
[i
] = -1;
2767 if (MARKERP (marker
))
2769 if (XMARKER (marker
)->buffer
== 0)
2770 XSETFASTINT (marker
, 0);
2772 XSETBUFFER (last_thing_searched
, XMARKER (marker
)->buffer
);
2775 CHECK_NUMBER_COERCE_MARKER (marker
, 0);
2776 from
= XINT (marker
);
2779 marker
= Fcar (list
);
2780 if (MARKERP (marker
) && XMARKER (marker
)->buffer
== 0)
2781 XSETFASTINT (marker
, 0);
2783 CHECK_NUMBER_COERCE_MARKER (marker
, 0);
2784 search_regs
.start
[i
] = from
;
2785 search_regs
.end
[i
] = XINT (marker
);
2793 /* If non-zero the match data have been saved in saved_search_regs
2794 during the execution of a sentinel or filter. */
2795 static int search_regs_saved
;
2796 static struct re_registers saved_search_regs
;
2798 /* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data
2799 if asynchronous code (filter or sentinel) is running. */
2803 if (!search_regs_saved
)
2805 saved_search_regs
.num_regs
= search_regs
.num_regs
;
2806 saved_search_regs
.start
= search_regs
.start
;
2807 saved_search_regs
.end
= search_regs
.end
;
2808 search_regs
.num_regs
= 0;
2809 search_regs
.start
= 0;
2810 search_regs
.end
= 0;
2812 search_regs_saved
= 1;
2816 /* Called upon exit from filters and sentinels. */
2818 restore_match_data ()
2820 if (search_regs_saved
)
2822 if (search_regs
.num_regs
> 0)
2824 xfree (search_regs
.start
);
2825 xfree (search_regs
.end
);
2827 search_regs
.num_regs
= saved_search_regs
.num_regs
;
2828 search_regs
.start
= saved_search_regs
.start
;
2829 search_regs
.end
= saved_search_regs
.end
;
2831 search_regs_saved
= 0;
2835 /* Quote a string to inactivate reg-expr chars */
2837 DEFUN ("regexp-quote", Fregexp_quote
, Sregexp_quote
, 1, 1, 0,
2838 "Return a regexp string which matches exactly STRING and nothing else.")
2842 register unsigned char *in
, *out
, *end
;
2843 register unsigned char *temp
;
2844 int backslashes_added
= 0;
2846 CHECK_STRING (string
, 0);
2848 temp
= (unsigned char *) alloca (STRING_BYTES (XSTRING (string
)) * 2);
2850 /* Now copy the data into the new string, inserting escapes. */
2852 in
= XSTRING (string
)->data
;
2853 end
= in
+ STRING_BYTES (XSTRING (string
));
2856 for (; in
!= end
; in
++)
2858 if (*in
== '[' || *in
== ']'
2859 || *in
== '*' || *in
== '.' || *in
== '\\'
2860 || *in
== '?' || *in
== '+'
2861 || *in
== '^' || *in
== '$')
2862 *out
++ = '\\', backslashes_added
++;
2866 return make_specified_string (temp
,
2867 XSTRING (string
)->size
+ backslashes_added
,
2869 STRING_MULTIBYTE (string
));
2877 for (i
= 0; i
< REGEXP_CACHE_SIZE
; ++i
)
2879 searchbufs
[i
].buf
.allocated
= 100;
2880 searchbufs
[i
].buf
.buffer
= (unsigned char *) malloc (100);
2881 searchbufs
[i
].buf
.fastmap
= searchbufs
[i
].fastmap
;
2882 searchbufs
[i
].regexp
= Qnil
;
2883 staticpro (&searchbufs
[i
].regexp
);
2884 searchbufs
[i
].next
= (i
== REGEXP_CACHE_SIZE
-1 ? 0 : &searchbufs
[i
+1]);
2886 searchbuf_head
= &searchbufs
[0];
2888 Qsearch_failed
= intern ("search-failed");
2889 staticpro (&Qsearch_failed
);
2890 Qinvalid_regexp
= intern ("invalid-regexp");
2891 staticpro (&Qinvalid_regexp
);
2893 Fput (Qsearch_failed
, Qerror_conditions
,
2894 Fcons (Qsearch_failed
, Fcons (Qerror
, Qnil
)));
2895 Fput (Qsearch_failed
, Qerror_message
,
2896 build_string ("Search failed"));
2898 Fput (Qinvalid_regexp
, Qerror_conditions
,
2899 Fcons (Qinvalid_regexp
, Fcons (Qerror
, Qnil
)));
2900 Fput (Qinvalid_regexp
, Qerror_message
,
2901 build_string ("Invalid regexp"));
2903 last_thing_searched
= Qnil
;
2904 staticpro (&last_thing_searched
);
2906 defsubr (&Slooking_at
);
2907 defsubr (&Sposix_looking_at
);
2908 defsubr (&Sstring_match
);
2909 defsubr (&Sposix_string_match
);
2910 defsubr (&Ssearch_forward
);
2911 defsubr (&Ssearch_backward
);
2912 defsubr (&Sword_search_forward
);
2913 defsubr (&Sword_search_backward
);
2914 defsubr (&Sre_search_forward
);
2915 defsubr (&Sre_search_backward
);
2916 defsubr (&Sposix_search_forward
);
2917 defsubr (&Sposix_search_backward
);
2918 defsubr (&Sreplace_match
);
2919 defsubr (&Smatch_beginning
);
2920 defsubr (&Smatch_end
);
2921 defsubr (&Smatch_data
);
2922 defsubr (&Sset_match_data
);
2923 defsubr (&Sregexp_quote
);