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
, **cpp
;
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
;
957 case '.': case '*': case '+': case '?': case '[': case '^': case '$':
964 case '|': case '(': case ')': case '`': case '\'': case 'b':
965 case 'B': case '<': case '>': case 'w': case 'W': case 's':
967 case 'c': case 'C': /* for categoryspec and notcategoryspec */
968 case '1': case '2': case '3': case '4': case '5':
969 case '6': case '7': case '8': case '9':
977 /* Search for the n'th occurrence of STRING in the current buffer,
978 starting at position POS and stopping at position LIM,
979 treating STRING as a literal string if RE is false or as
980 a regular expression if RE is true.
982 If N is positive, searching is forward and LIM must be greater than POS.
983 If N is negative, searching is backward and LIM must be less than POS.
985 Returns -x if x occurrences remain to be found (x > 0),
986 or else the position at the beginning of the Nth occurrence
987 (if searching backward) or the end (if searching forward).
989 POSIX is nonzero if we want full backtracking (POSIX style)
990 for this pattern. 0 means backtrack only enough to get a valid match. */
992 #define TRANSLATE(out, trt, d) \
998 temp = Faref (trt, make_number (d)); \
999 if (INTEGERP (temp)) \
1000 out = XINT (temp); \
1010 search_buffer (string
, pos
, pos_byte
, lim
, lim_byte
, n
,
1011 RE
, trt
, inverse_trt
, posix
)
1020 Lisp_Object inverse_trt
;
1023 int len
= XSTRING (string
)->size
;
1024 int len_byte
= STRING_BYTES (XSTRING (string
));
1027 if (running_asynch_code
)
1028 save_search_regs ();
1030 /* Searching 0 times means don't move. */
1031 /* Null string is found at starting position. */
1032 if (len
== 0 || n
== 0)
1034 set_search_regs (pos
, 0);
1038 if (RE
&& !trivial_regexp_p (string
))
1040 unsigned char *p1
, *p2
;
1042 struct re_pattern_buffer
*bufp
;
1044 bufp
= compile_pattern (string
, &search_regs
, trt
, posix
,
1045 !NILP (current_buffer
->enable_multibyte_characters
));
1047 immediate_quit
= 1; /* Quit immediately if user types ^G,
1048 because letting this function finish
1049 can take too long. */
1050 QUIT
; /* Do a pending quit right away,
1051 to avoid paradoxical behavior */
1052 /* Get pointers and sizes of the two strings
1053 that make up the visible portion of the buffer. */
1056 s1
= GPT_BYTE
- BEGV_BYTE
;
1058 s2
= ZV_BYTE
- GPT_BYTE
;
1062 s2
= ZV_BYTE
- BEGV_BYTE
;
1067 s1
= ZV_BYTE
- BEGV_BYTE
;
1070 re_match_object
= Qnil
;
1075 val
= re_search_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
1076 pos_byte
- BEGV_BYTE
, lim_byte
- pos_byte
,
1078 /* Don't allow match past current point */
1079 pos_byte
- BEGV_BYTE
);
1082 matcher_overflow ();
1086 pos_byte
= search_regs
.start
[0] + BEGV_BYTE
;
1087 for (i
= 0; i
< search_regs
.num_regs
; i
++)
1088 if (search_regs
.start
[i
] >= 0)
1090 search_regs
.start
[i
]
1091 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
1093 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
1095 XSETBUFFER (last_thing_searched
, current_buffer
);
1096 /* Set pos to the new position. */
1097 pos
= search_regs
.start
[0];
1109 val
= re_search_2 (bufp
, (char *) p1
, s1
, (char *) p2
, s2
,
1110 pos_byte
- BEGV_BYTE
, lim_byte
- pos_byte
,
1112 lim_byte
- BEGV_BYTE
);
1115 matcher_overflow ();
1119 pos_byte
= search_regs
.end
[0] + BEGV_BYTE
;
1120 for (i
= 0; i
< search_regs
.num_regs
; i
++)
1121 if (search_regs
.start
[i
] >= 0)
1123 search_regs
.start
[i
]
1124 = BYTE_TO_CHAR (search_regs
.start
[i
] + BEGV_BYTE
);
1126 = BYTE_TO_CHAR (search_regs
.end
[i
] + BEGV_BYTE
);
1128 XSETBUFFER (last_thing_searched
, current_buffer
);
1129 pos
= search_regs
.end
[0];
1141 else /* non-RE case */
1143 unsigned char *raw_pattern
, *pat
;
1144 int raw_pattern_size
;
1145 int raw_pattern_size_byte
;
1146 unsigned char *patbuf
;
1147 int multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
1148 unsigned char *base_pat
= XSTRING (string
)->data
;
1149 int charset_base
= -1;
1150 int boyer_moore_ok
= 1;
1152 /* MULTIBYTE says whether the text to be searched is multibyte.
1153 We must convert PATTERN to match that, or we will not really
1154 find things right. */
1156 if (multibyte
== STRING_MULTIBYTE (string
))
1158 raw_pattern
= (unsigned char *) XSTRING (string
)->data
;
1159 raw_pattern_size
= XSTRING (string
)->size
;
1160 raw_pattern_size_byte
= STRING_BYTES (XSTRING (string
));
1164 raw_pattern_size
= XSTRING (string
)->size
;
1165 raw_pattern_size_byte
1166 = count_size_as_multibyte (XSTRING (string
)->data
,
1168 raw_pattern
= (unsigned char *) alloca (raw_pattern_size_byte
+ 1);
1169 copy_text (XSTRING (string
)->data
, raw_pattern
,
1170 XSTRING (string
)->size
, 0, 1);
1174 /* Converting multibyte to single-byte.
1176 ??? Perhaps this conversion should be done in a special way
1177 by subtracting nonascii-insert-offset from each non-ASCII char,
1178 so that only the multibyte chars which really correspond to
1179 the chosen single-byte character set can possibly match. */
1180 raw_pattern_size
= XSTRING (string
)->size
;
1181 raw_pattern_size_byte
= XSTRING (string
)->size
;
1182 raw_pattern
= (unsigned char *) alloca (raw_pattern_size
+ 1);
1183 copy_text (XSTRING (string
)->data
, raw_pattern
,
1184 STRING_BYTES (XSTRING (string
)), 1, 0);
1187 /* Copy and optionally translate the pattern. */
1188 len
= raw_pattern_size
;
1189 len_byte
= raw_pattern_size_byte
;
1190 patbuf
= (unsigned char *) alloca (len_byte
);
1192 base_pat
= raw_pattern
;
1197 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
1198 int c
, translated
, inverse
;
1199 int in_charlen
, charlen
;
1201 /* If we got here and the RE flag is set, it's because we're
1202 dealing with a regexp known to be trivial, so the backslash
1203 just quotes the next character. */
1204 if (RE
&& *base_pat
== '\\')
1211 c
= STRING_CHAR_AND_LENGTH (base_pat
, len_byte
, in_charlen
);
1213 /* Translate the character, if requested. */
1214 TRANSLATE (translated
, trt
, c
);
1215 /* If translation changed the byte-length, go back
1216 to the original character. */
1217 charlen
= CHAR_STRING (translated
, str
);
1218 if (in_charlen
!= charlen
)
1221 charlen
= CHAR_STRING (c
, str
);
1224 /* If we are searching for something strange,
1225 an invalid multibyte code, don't use boyer-moore. */
1226 if (! ASCII_BYTE_P (translated
)
1227 && (charlen
== 1 /* 8bit code */
1228 || charlen
!= in_charlen
/* invalid multibyte code */
1232 TRANSLATE (inverse
, inverse_trt
, c
);
1234 /* Did this char actually get translated?
1235 Would any other char get translated into it? */
1236 if (translated
!= c
|| inverse
!= c
)
1238 /* Keep track of which character set row
1239 contains the characters that need translation. */
1240 int charset_base_code
= c
& ~CHAR_FIELD3_MASK
;
1241 if (charset_base
== -1)
1242 charset_base
= charset_base_code
;
1243 else if (charset_base
!= charset_base_code
)
1244 /* If two different rows appear, needing translation,
1245 then we cannot use boyer_moore search. */
1249 /* Store this character into the translated pattern. */
1250 bcopy (str
, pat
, charlen
);
1252 base_pat
+= in_charlen
;
1253 len_byte
-= in_charlen
;
1258 /* Unibyte buffer. */
1264 /* If we got here and the RE flag is set, it's because we're
1265 dealing with a regexp known to be trivial, so the backslash
1266 just quotes the next character. */
1267 if (RE
&& *base_pat
== '\\')
1273 TRANSLATE (translated
, trt
, c
);
1274 *pat
++ = translated
;
1278 len_byte
= pat
- patbuf
;
1279 len
= raw_pattern_size
;
1280 pat
= base_pat
= patbuf
;
1283 return boyer_moore (n
, pat
, len
, len_byte
, trt
, inverse_trt
,
1284 pos
, pos_byte
, lim
, lim_byte
,
1287 return simple_search (n
, pat
, len
, len_byte
, trt
,
1288 pos
, pos_byte
, lim
, lim_byte
);
1292 /* Do a simple string search N times for the string PAT,
1293 whose length is LEN/LEN_BYTE,
1294 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1295 TRT is the translation table.
1297 Return the character position where the match is found.
1298 Otherwise, if M matches remained to be found, return -M.
1300 This kind of search works regardless of what is in PAT and
1301 regardless of what is in TRT. It is used in cases where
1302 boyer_moore cannot work. */
1305 simple_search (n
, pat
, len
, len_byte
, trt
, pos
, pos_byte
, lim
, lim_byte
)
1313 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
1314 int forward
= n
> 0;
1316 if (lim
> pos
&& multibyte
)
1321 /* Try matching at position POS. */
1323 int this_pos_byte
= pos_byte
;
1325 int this_len_byte
= len_byte
;
1326 unsigned char *p
= pat
;
1327 if (pos
+ len
> lim
)
1330 while (this_len
> 0)
1332 int charlen
, buf_charlen
;
1335 pat_ch
= STRING_CHAR_AND_LENGTH (p
, this_len_byte
, charlen
);
1336 buf_ch
= STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte
),
1337 ZV_BYTE
- this_pos_byte
,
1339 TRANSLATE (buf_ch
, trt
, buf_ch
);
1341 if (buf_ch
!= pat_ch
)
1344 this_len_byte
-= charlen
;
1348 this_pos_byte
+= buf_charlen
;
1355 pos_byte
+= len_byte
;
1359 INC_BOTH (pos
, pos_byte
);
1369 /* Try matching at position POS. */
1372 unsigned char *p
= pat
;
1374 if (pos
+ len
> lim
)
1377 while (this_len
> 0)
1380 int buf_ch
= FETCH_BYTE (this_pos
);
1381 TRANSLATE (buf_ch
, trt
, buf_ch
);
1383 if (buf_ch
!= pat_ch
)
1401 /* Backwards search. */
1402 else if (lim
< pos
&& multibyte
)
1407 /* Try matching at position POS. */
1408 int this_pos
= pos
- len
;
1409 int this_pos_byte
= pos_byte
- len_byte
;
1411 int this_len_byte
= len_byte
;
1412 unsigned char *p
= pat
;
1414 if (pos
- len
< lim
)
1417 while (this_len
> 0)
1419 int charlen
, buf_charlen
;
1422 pat_ch
= STRING_CHAR_AND_LENGTH (p
, this_len_byte
, charlen
);
1423 buf_ch
= STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte
),
1424 ZV_BYTE
- this_pos_byte
,
1426 TRANSLATE (buf_ch
, trt
, buf_ch
);
1428 if (buf_ch
!= pat_ch
)
1431 this_len_byte
-= charlen
;
1434 this_pos_byte
+= buf_charlen
;
1441 pos_byte
-= len_byte
;
1445 DEC_BOTH (pos
, pos_byte
);
1455 /* Try matching at position POS. */
1456 int this_pos
= pos
- len
;
1458 unsigned char *p
= pat
;
1460 if (pos
- len
< lim
)
1463 while (this_len
> 0)
1466 int buf_ch
= FETCH_BYTE (this_pos
);
1467 TRANSLATE (buf_ch
, trt
, buf_ch
);
1469 if (buf_ch
!= pat_ch
)
1491 set_search_regs ((multibyte
? pos_byte
: pos
) - len_byte
, len_byte
);
1493 set_search_regs (multibyte
? pos_byte
: pos
, len_byte
);
1503 /* Do Boyer-Moore search N times for the string PAT,
1504 whose length is LEN/LEN_BYTE,
1505 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1506 DIRECTION says which direction we search in.
1507 TRT and INVERSE_TRT are translation tables.
1509 This kind of search works if all the characters in PAT that have
1510 nontrivial translation are the same aside from the last byte. This
1511 makes it possible to translate just the last byte of a character,
1512 and do so after just a simple test of the context.
1514 If that criterion is not satisfied, do not call this function. */
1517 boyer_moore (n
, base_pat
, len
, len_byte
, trt
, inverse_trt
,
1518 pos
, pos_byte
, lim
, lim_byte
, charset_base
)
1520 unsigned char *base_pat
;
1523 Lisp_Object inverse_trt
;
1528 int direction
= ((n
> 0) ? 1 : -1);
1529 register int dirlen
;
1530 int infinity
, limit
, k
, stride_for_teases
= 0;
1531 register int *BM_tab
;
1533 register unsigned char *cursor
, *p_limit
;
1535 unsigned char *pat
, *pat_end
;
1536 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
1538 unsigned char simple_translate
[0400];
1539 int translate_prev_byte
= 0;
1540 int translate_anteprev_byte
= 0;
1543 int BM_tab_space
[0400];
1544 BM_tab
= &BM_tab_space
[0];
1546 BM_tab
= (int *) alloca (0400 * sizeof (int));
1548 /* The general approach is that we are going to maintain that we know */
1549 /* the first (closest to the present position, in whatever direction */
1550 /* we're searching) character that could possibly be the last */
1551 /* (furthest from present position) character of a valid match. We */
1552 /* advance the state of our knowledge by looking at that character */
1553 /* and seeing whether it indeed matches the last character of the */
1554 /* pattern. If it does, we take a closer look. If it does not, we */
1555 /* move our pointer (to putative last characters) as far as is */
1556 /* logically possible. This amount of movement, which I call a */
1557 /* stride, will be the length of the pattern if the actual character */
1558 /* appears nowhere in the pattern, otherwise it will be the distance */
1559 /* from the last occurrence of that character to the end of the */
1561 /* As a coding trick, an enormous stride is coded into the table for */
1562 /* characters that match the last character. This allows use of only */
1563 /* a single test, a test for having gone past the end of the */
1564 /* permissible match region, to test for both possible matches (when */
1565 /* the stride goes past the end immediately) and failure to */
1566 /* match (where you get nudged past the end one stride at a time). */
1568 /* Here we make a "mickey mouse" BM table. The stride of the search */
1569 /* is determined only by the last character of the putative match. */
1570 /* If that character does not match, we will stride the proper */
1571 /* distance to propose a match that superimposes it on the last */
1572 /* instance of a character that matches it (per trt), or misses */
1573 /* it entirely if there is none. */
1575 dirlen
= len_byte
* direction
;
1576 infinity
= dirlen
- (lim_byte
+ pos_byte
+ len_byte
+ len_byte
) * direction
;
1578 /* Record position after the end of the pattern. */
1579 pat_end
= base_pat
+ len_byte
;
1580 /* BASE_PAT points to a character that we start scanning from.
1581 It is the first character in a forward search,
1582 the last character in a backward search. */
1584 base_pat
= pat_end
- 1;
1586 BM_tab_base
= BM_tab
;
1588 j
= dirlen
; /* to get it in a register */
1589 /* A character that does not appear in the pattern induces a */
1590 /* stride equal to the pattern length. */
1591 while (BM_tab_base
!= BM_tab
)
1599 /* We use this for translation, instead of TRT itself.
1600 We fill this in to handle the characters that actually
1601 occur in the pattern. Others don't matter anyway! */
1602 bzero (simple_translate
, sizeof simple_translate
);
1603 for (i
= 0; i
< 0400; i
++)
1604 simple_translate
[i
] = i
;
1607 while (i
!= infinity
)
1609 unsigned char *ptr
= base_pat
+ i
;
1617 int this_translated
= 1;
1620 /* Is *PTR the last byte of a character? */
1621 && (pat_end
- ptr
== 1 || CHAR_HEAD_P (ptr
[1])))
1623 unsigned char *charstart
= ptr
;
1624 while (! CHAR_HEAD_P (*charstart
))
1626 untranslated
= STRING_CHAR (charstart
, ptr
- charstart
+ 1);
1627 if (charset_base
== (untranslated
& ~CHAR_FIELD3_MASK
))
1629 TRANSLATE (ch
, trt
, untranslated
);
1630 if (! CHAR_HEAD_P (*ptr
))
1632 translate_prev_byte
= ptr
[-1];
1633 if (! CHAR_HEAD_P (translate_prev_byte
))
1634 translate_anteprev_byte
= ptr
[-2];
1639 this_translated
= 0;
1643 else if (!multibyte
)
1644 TRANSLATE (ch
, trt
, *ptr
);
1648 this_translated
= 0;
1652 j
= ((unsigned char) ch
) | 0200;
1654 j
= (unsigned char) ch
;
1657 stride_for_teases
= BM_tab
[j
];
1659 BM_tab
[j
] = dirlen
- i
;
1660 /* A translation table is accompanied by its inverse -- see */
1661 /* comment following downcase_table for details */
1662 if (this_translated
)
1664 int starting_ch
= ch
;
1668 TRANSLATE (ch
, inverse_trt
, ch
);
1670 j
= ((unsigned char) ch
) | 0200;
1672 j
= (unsigned char) ch
;
1674 /* For all the characters that map into CH,
1675 set up simple_translate to map the last byte
1677 simple_translate
[j
] = starting_j
;
1678 if (ch
== starting_ch
)
1680 BM_tab
[j
] = dirlen
- i
;
1689 stride_for_teases
= BM_tab
[j
];
1690 BM_tab
[j
] = dirlen
- i
;
1692 /* stride_for_teases tells how much to stride if we get a */
1693 /* match on the far character but are subsequently */
1694 /* disappointed, by recording what the stride would have been */
1695 /* for that character if the last character had been */
1698 infinity
= dirlen
- infinity
;
1699 pos_byte
+= dirlen
- ((direction
> 0) ? direction
: 0);
1700 /* loop invariant - POS_BYTE points at where last char (first
1701 char if reverse) of pattern would align in a possible match. */
1705 unsigned char *tail_end_ptr
;
1707 /* It's been reported that some (broken) compiler thinks that
1708 Boolean expressions in an arithmetic context are unsigned.
1709 Using an explicit ?1:0 prevents this. */
1710 if ((lim_byte
- pos_byte
- ((direction
> 0) ? 1 : 0)) * direction
1712 return (n
* (0 - direction
));
1713 /* First we do the part we can by pointers (maybe nothing) */
1716 limit
= pos_byte
- dirlen
+ direction
;
1719 limit
= BUFFER_CEILING_OF (limit
);
1720 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1721 can take on without hitting edge of buffer or the gap. */
1722 limit
= min (limit
, pos_byte
+ 20000);
1723 limit
= min (limit
, lim_byte
- 1);
1727 limit
= BUFFER_FLOOR_OF (limit
);
1728 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1729 can take on without hitting edge of buffer or the gap. */
1730 limit
= max (limit
, pos_byte
- 20000);
1731 limit
= max (limit
, lim_byte
);
1733 tail_end
= BUFFER_CEILING_OF (pos_byte
) + 1;
1734 tail_end_ptr
= BYTE_POS_ADDR (tail_end
);
1736 if ((limit
- pos_byte
) * direction
> 20)
1740 p_limit
= BYTE_POS_ADDR (limit
);
1741 p2
= (cursor
= BYTE_POS_ADDR (pos_byte
));
1742 /* In this loop, pos + cursor - p2 is the surrogate for pos */
1743 while (1) /* use one cursor setting as long as i can */
1745 if (direction
> 0) /* worth duplicating */
1747 /* Use signed comparison if appropriate
1748 to make cursor+infinity sure to be > p_limit.
1749 Assuming that the buffer lies in a range of addresses
1750 that are all "positive" (as ints) or all "negative",
1751 either kind of comparison will work as long
1752 as we don't step by infinity. So pick the kind
1753 that works when we do step by infinity. */
1754 if ((EMACS_INT
) (p_limit
+ infinity
) > (EMACS_INT
) p_limit
)
1755 while ((EMACS_INT
) cursor
<= (EMACS_INT
) p_limit
)
1756 cursor
+= BM_tab
[*cursor
];
1758 while ((EMACS_UINT
) cursor
<= (EMACS_UINT
) p_limit
)
1759 cursor
+= BM_tab
[*cursor
];
1763 if ((EMACS_INT
) (p_limit
+ infinity
) < (EMACS_INT
) p_limit
)
1764 while ((EMACS_INT
) cursor
>= (EMACS_INT
) p_limit
)
1765 cursor
+= BM_tab
[*cursor
];
1767 while ((EMACS_UINT
) cursor
>= (EMACS_UINT
) p_limit
)
1768 cursor
+= BM_tab
[*cursor
];
1770 /* If you are here, cursor is beyond the end of the searched region. */
1771 /* This can happen if you match on the far character of the pattern, */
1772 /* because the "stride" of that character is infinity, a number able */
1773 /* to throw you well beyond the end of the search. It can also */
1774 /* happen if you fail to match within the permitted region and would */
1775 /* otherwise try a character beyond that region */
1776 if ((cursor
- p_limit
) * direction
<= len_byte
)
1777 break; /* a small overrun is genuine */
1778 cursor
-= infinity
; /* large overrun = hit */
1779 i
= dirlen
- direction
;
1782 while ((i
-= direction
) + direction
!= 0)
1785 cursor
-= direction
;
1786 /* Translate only the last byte of a character. */
1788 || ((cursor
== tail_end_ptr
1789 || CHAR_HEAD_P (cursor
[1]))
1790 && (CHAR_HEAD_P (cursor
[0])
1791 || (translate_prev_byte
== cursor
[-1]
1792 && (CHAR_HEAD_P (translate_prev_byte
)
1793 || translate_anteprev_byte
== cursor
[-2])))))
1794 ch
= simple_translate
[*cursor
];
1803 while ((i
-= direction
) + direction
!= 0)
1805 cursor
-= direction
;
1806 if (pat
[i
] != *cursor
)
1810 cursor
+= dirlen
- i
- direction
; /* fix cursor */
1811 if (i
+ direction
== 0)
1815 cursor
-= direction
;
1817 position
= pos_byte
+ cursor
- p2
+ ((direction
> 0)
1818 ? 1 - len_byte
: 0);
1819 set_search_regs (position
, len_byte
);
1821 if ((n
-= direction
) != 0)
1822 cursor
+= dirlen
; /* to resume search */
1824 return ((direction
> 0)
1825 ? search_regs
.end
[0] : search_regs
.start
[0]);
1828 cursor
+= stride_for_teases
; /* <sigh> we lose - */
1830 pos_byte
+= cursor
- p2
;
1833 /* Now we'll pick up a clump that has to be done the hard */
1834 /* way because it covers a discontinuity */
1836 limit
= ((direction
> 0)
1837 ? BUFFER_CEILING_OF (pos_byte
- dirlen
+ 1)
1838 : BUFFER_FLOOR_OF (pos_byte
- dirlen
- 1));
1839 limit
= ((direction
> 0)
1840 ? min (limit
+ len_byte
, lim_byte
- 1)
1841 : max (limit
- len_byte
, lim_byte
));
1842 /* LIMIT is now the last value POS_BYTE can have
1843 and still be valid for a possible match. */
1846 /* This loop can be coded for space rather than */
1847 /* speed because it will usually run only once. */
1848 /* (the reach is at most len + 21, and typically */
1849 /* does not exceed len) */
1850 while ((limit
- pos_byte
) * direction
>= 0)
1851 pos_byte
+= BM_tab
[FETCH_BYTE (pos_byte
)];
1852 /* now run the same tests to distinguish going off the */
1853 /* end, a match or a phony match. */
1854 if ((pos_byte
- limit
) * direction
<= len_byte
)
1855 break; /* ran off the end */
1856 /* Found what might be a match.
1857 Set POS_BYTE back to last (first if reverse) pos. */
1858 pos_byte
-= infinity
;
1859 i
= dirlen
- direction
;
1860 while ((i
-= direction
) + direction
!= 0)
1864 pos_byte
-= direction
;
1865 ptr
= BYTE_POS_ADDR (pos_byte
);
1866 /* Translate only the last byte of a character. */
1868 || ((ptr
== tail_end_ptr
1869 || CHAR_HEAD_P (ptr
[1]))
1870 && (CHAR_HEAD_P (ptr
[0])
1871 || (translate_prev_byte
== ptr
[-1]
1872 && (CHAR_HEAD_P (translate_prev_byte
)
1873 || translate_anteprev_byte
== ptr
[-2])))))
1874 ch
= simple_translate
[*ptr
];
1880 /* Above loop has moved POS_BYTE part or all the way
1881 back to the first pos (last pos if reverse).
1882 Set it once again at the last (first if reverse) char. */
1883 pos_byte
+= dirlen
- i
- direction
;
1884 if (i
+ direction
== 0)
1887 pos_byte
-= direction
;
1889 position
= pos_byte
+ ((direction
> 0) ? 1 - len_byte
: 0);
1891 set_search_regs (position
, len_byte
);
1893 if ((n
-= direction
) != 0)
1894 pos_byte
+= dirlen
; /* to resume search */
1896 return ((direction
> 0)
1897 ? search_regs
.end
[0] : search_regs
.start
[0]);
1900 pos_byte
+= stride_for_teases
;
1903 /* We have done one clump. Can we continue? */
1904 if ((lim_byte
- pos_byte
) * direction
< 0)
1905 return ((0 - n
) * direction
);
1907 return BYTE_TO_CHAR (pos_byte
);
1910 /* Record beginning BEG_BYTE and end BEG_BYTE + NBYTES
1911 for the overall match just found in the current buffer.
1912 Also clear out the match data for registers 1 and up. */
1915 set_search_regs (beg_byte
, nbytes
)
1916 int beg_byte
, nbytes
;
1920 /* Make sure we have registers in which to store
1921 the match position. */
1922 if (search_regs
.num_regs
== 0)
1924 search_regs
.start
= (regoff_t
*) xmalloc (2 * sizeof (regoff_t
));
1925 search_regs
.end
= (regoff_t
*) xmalloc (2 * sizeof (regoff_t
));
1926 search_regs
.num_regs
= 2;
1929 /* Clear out the other registers. */
1930 for (i
= 1; i
< search_regs
.num_regs
; i
++)
1932 search_regs
.start
[i
] = -1;
1933 search_regs
.end
[i
] = -1;
1936 search_regs
.start
[0] = BYTE_TO_CHAR (beg_byte
);
1937 search_regs
.end
[0] = BYTE_TO_CHAR (beg_byte
+ nbytes
);
1938 XSETBUFFER (last_thing_searched
, current_buffer
);
1941 /* Given a string of words separated by word delimiters,
1942 compute a regexp that matches those exact words
1943 separated by arbitrary punctuation. */
1949 register unsigned char *p
, *o
;
1950 register int i
, i_byte
, len
, punct_count
= 0, word_count
= 0;
1955 CHECK_STRING (string
, 0);
1956 p
= XSTRING (string
)->data
;
1957 len
= XSTRING (string
)->size
;
1959 for (i
= 0, i_byte
= 0; i
< len
; )
1963 FETCH_STRING_CHAR_ADVANCE (c
, string
, i
, i_byte
);
1965 if (SYNTAX (c
) != Sword
)
1968 if (i
> 0 && SYNTAX (prev_c
) == Sword
)
1975 if (SYNTAX (prev_c
) == Sword
)
1978 return build_string ("");
1980 adjust
= - punct_count
+ 5 * (word_count
- 1) + 4;
1981 if (STRING_MULTIBYTE (string
))
1982 val
= make_uninit_multibyte_string (len
+ adjust
,
1983 STRING_BYTES (XSTRING (string
))
1986 val
= make_uninit_string (len
+ adjust
);
1988 o
= XSTRING (val
)->data
;
1993 for (i
= 0, i_byte
= 0; i
< len
; )
1996 int i_byte_orig
= i_byte
;
1998 FETCH_STRING_CHAR_ADVANCE (c
, string
, i
, i_byte
);
2000 if (SYNTAX (c
) == Sword
)
2002 bcopy (&XSTRING (string
)->data
[i_byte_orig
], o
,
2003 i_byte
- i_byte_orig
);
2004 o
+= i_byte
- i_byte_orig
;
2006 else if (i
> 0 && SYNTAX (prev_c
) == Sword
&& --word_count
)
2024 DEFUN ("search-backward", Fsearch_backward
, Ssearch_backward
, 1, 4,
2025 "MSearch backward: ",
2026 "Search backward from point for STRING.\n\
2027 Set point to the beginning of the occurrence found, and return point.\n\
2028 An optional second argument bounds the search; it is a buffer position.\n\
2029 The match found must not extend before that position.\n\
2030 Optional third argument, if t, means if fail just return nil (no error).\n\
2031 If not nil and not t, position at limit of search and return nil.\n\
2032 Optional fourth argument is repeat count--search for successive occurrences.\n\
2034 Search case-sensitivity is determined by the value of the variable\n\
2035 `case-fold-search', which see.\n\
2037 See also the functions `match-beginning', `match-end' and `replace-match'.")
2038 (string
, bound
, noerror
, count
)
2039 Lisp_Object string
, bound
, noerror
, count
;
2041 return search_command (string
, bound
, noerror
, count
, -1, 0, 0);
2044 DEFUN ("search-forward", Fsearch_forward
, Ssearch_forward
, 1, 4, "MSearch: ",
2045 "Search forward from point for STRING.\n\
2046 Set point to the end of the occurrence found, and return point.\n\
2047 An optional second argument bounds the search; it is a buffer position.\n\
2048 The match found must not extend after that position. nil is equivalent\n\
2050 Optional third argument, if t, means if fail just return nil (no error).\n\
2051 If not nil and not t, move to limit of search and return nil.\n\
2052 Optional fourth argument is repeat count--search for successive occurrences.\n\
2054 Search case-sensitivity is determined by the value of the variable\n\
2055 `case-fold-search', which see.\n\
2057 See also the functions `match-beginning', `match-end' and `replace-match'.")
2058 (string
, bound
, noerror
, count
)
2059 Lisp_Object string
, bound
, noerror
, count
;
2061 return search_command (string
, bound
, noerror
, count
, 1, 0, 0);
2064 DEFUN ("word-search-backward", Fword_search_backward
, Sword_search_backward
, 1, 4,
2065 "sWord search backward: ",
2066 "Search backward from point for STRING, ignoring differences in punctuation.\n\
2067 Set point to the beginning of the occurrence found, and return point.\n\
2068 An optional second argument bounds the search; it is a buffer position.\n\
2069 The match found must not extend before that position.\n\
2070 Optional third argument, if t, means if fail just return nil (no error).\n\
2071 If not nil and not t, move to limit of search and return nil.\n\
2072 Optional fourth argument is repeat count--search for successive occurrences.")
2073 (string
, bound
, noerror
, count
)
2074 Lisp_Object string
, bound
, noerror
, count
;
2076 return search_command (wordify (string
), bound
, noerror
, count
, -1, 1, 0);
2079 DEFUN ("word-search-forward", Fword_search_forward
, Sword_search_forward
, 1, 4,
2081 "Search forward from point for STRING, ignoring differences in punctuation.\n\
2082 Set point to the end of the occurrence found, and return point.\n\
2083 An optional second argument bounds the search; it is a buffer position.\n\
2084 The match found must not extend after that position.\n\
2085 Optional third argument, if t, means if fail just return nil (no error).\n\
2086 If not nil and not t, move to limit of search and return nil.\n\
2087 Optional fourth argument is repeat count--search for successive occurrences.")
2088 (string
, bound
, noerror
, count
)
2089 Lisp_Object string
, bound
, noerror
, count
;
2091 return search_command (wordify (string
), bound
, noerror
, count
, 1, 1, 0);
2094 DEFUN ("re-search-backward", Fre_search_backward
, Sre_search_backward
, 1, 4,
2095 "sRE search backward: ",
2096 "Search backward from point for match for regular expression REGEXP.\n\
2097 Set point to the beginning of the match, and return point.\n\
2098 The match found is the one starting last in the buffer\n\
2099 and yet ending before the origin of the search.\n\
2100 An optional second argument bounds the search; it is a buffer position.\n\
2101 The match found must start at or after that position.\n\
2102 Optional third argument, if t, means if fail just return nil (no error).\n\
2103 If not nil and not t, move to limit of search and return nil.\n\
2104 Optional fourth argument is repeat count--search for successive occurrences.\n\
2105 See also the functions `match-beginning', `match-end', `match-string',\n\
2106 and `replace-match'.")
2107 (regexp
, bound
, noerror
, count
)
2108 Lisp_Object regexp
, bound
, noerror
, count
;
2110 return search_command (regexp
, bound
, noerror
, count
, -1, 1, 0);
2113 DEFUN ("re-search-forward", Fre_search_forward
, Sre_search_forward
, 1, 4,
2115 "Search forward from point for regular expression REGEXP.\n\
2116 Set point to the end of the occurrence found, and return point.\n\
2117 An optional second argument bounds the search; it is a buffer position.\n\
2118 The match found must not extend after that position.\n\
2119 Optional third argument, if t, means if fail just return nil (no error).\n\
2120 If not nil and not t, move to limit of search and return nil.\n\
2121 Optional fourth argument is repeat count--search for successive occurrences.\n\
2122 See also the functions `match-beginning', `match-end', `match-string',\n\
2123 and `replace-match'.")
2124 (regexp
, bound
, noerror
, count
)
2125 Lisp_Object regexp
, bound
, noerror
, count
;
2127 return search_command (regexp
, bound
, noerror
, count
, 1, 1, 0);
2130 DEFUN ("posix-search-backward", Fposix_search_backward
, Sposix_search_backward
, 1, 4,
2131 "sPosix search backward: ",
2132 "Search backward from point for match for regular expression REGEXP.\n\
2133 Find the longest match in accord with Posix regular expression rules.\n\
2134 Set point to the beginning of the match, and return point.\n\
2135 The match found is the one starting last in the buffer\n\
2136 and yet ending before the origin of the search.\n\
2137 An optional second argument bounds the search; it is a buffer position.\n\
2138 The match found must start at or after that position.\n\
2139 Optional third argument, if t, means if fail just return nil (no error).\n\
2140 If not nil and not t, move to limit of search and return nil.\n\
2141 Optional fourth argument is repeat count--search for successive occurrences.\n\
2142 See also the functions `match-beginning', `match-end', `match-string',\n\
2143 and `replace-match'.")
2144 (regexp
, bound
, noerror
, count
)
2145 Lisp_Object regexp
, bound
, noerror
, count
;
2147 return search_command (regexp
, bound
, noerror
, count
, -1, 1, 1);
2150 DEFUN ("posix-search-forward", Fposix_search_forward
, Sposix_search_forward
, 1, 4,
2152 "Search forward from point for regular expression REGEXP.\n\
2153 Find the longest match in accord with Posix regular expression rules.\n\
2154 Set point to the end of the occurrence found, and return point.\n\
2155 An optional second argument bounds the search; it is a buffer position.\n\
2156 The match found must not extend after that position.\n\
2157 Optional third argument, if t, means if fail just return nil (no error).\n\
2158 If not nil and not t, move to limit of search and return nil.\n\
2159 Optional fourth argument is repeat count--search for successive occurrences.\n\
2160 See also the functions `match-beginning', `match-end', `match-string',\n\
2161 and `replace-match'.")
2162 (regexp
, bound
, noerror
, count
)
2163 Lisp_Object regexp
, bound
, noerror
, count
;
2165 return search_command (regexp
, bound
, noerror
, count
, 1, 1, 1);
2168 DEFUN ("replace-match", Freplace_match
, Sreplace_match
, 1, 5, 0,
2169 "Replace text matched by last search with NEWTEXT.\n\
2170 If second arg FIXEDCASE is non-nil, do not alter case of replacement text.\n\
2171 Otherwise maybe capitalize the whole text, or maybe just word initials,\n\
2172 based on the replaced text.\n\
2173 If the replaced text has only capital letters\n\
2174 and has at least one multiletter word, convert NEWTEXT to all caps.\n\
2175 If the replaced text has at least one word starting with a capital letter,\n\
2176 then capitalize each word in NEWTEXT.\n\n\
2177 If third arg LITERAL is non-nil, insert NEWTEXT literally.\n\
2178 Otherwise treat `\\' as special:\n\
2179 `\\&' in NEWTEXT means substitute original matched text.\n\
2180 `\\N' means substitute what matched the Nth `\\(...\\)'.\n\
2181 If Nth parens didn't match, substitute nothing.\n\
2182 `\\\\' means insert one `\\'.\n\
2183 FIXEDCASE and LITERAL are optional arguments.\n\
2184 Leaves point at end of replacement text.\n\
2186 The optional fourth argument STRING can be a string to modify.\n\
2187 In that case, this function creates and returns a new string\n\
2188 which is made by replacing the part of STRING that was matched.\n\
2190 The optional fifth argument SUBEXP specifies a subexpression of the match.\n\
2191 It says to replace just that subexpression instead of the whole match.\n\
2192 This is useful only after a regular expression search or match\n\
2193 since only regular expressions have distinguished subexpressions.")
2194 (newtext
, fixedcase
, literal
, string
, subexp
)
2195 Lisp_Object newtext
, fixedcase
, literal
, string
, subexp
;
2197 enum { nochange
, all_caps
, cap_initial
} case_action
;
2198 register int pos
, pos_byte
;
2199 int some_multiletter_word
;
2202 int some_nonuppercase_initial
;
2203 register int c
, prevc
;
2206 int opoint
, newpoint
;
2208 CHECK_STRING (newtext
, 0);
2210 if (! NILP (string
))
2211 CHECK_STRING (string
, 4);
2213 case_action
= nochange
; /* We tried an initialization */
2214 /* but some C compilers blew it */
2216 if (search_regs
.num_regs
<= 0)
2217 error ("replace-match called before any match found");
2223 CHECK_NUMBER (subexp
, 3);
2224 sub
= XINT (subexp
);
2225 if (sub
< 0 || sub
>= search_regs
.num_regs
)
2226 args_out_of_range (subexp
, make_number (search_regs
.num_regs
));
2231 if (search_regs
.start
[sub
] < BEGV
2232 || search_regs
.start
[sub
] > search_regs
.end
[sub
]
2233 || search_regs
.end
[sub
] > ZV
)
2234 args_out_of_range (make_number (search_regs
.start
[sub
]),
2235 make_number (search_regs
.end
[sub
]));
2239 if (search_regs
.start
[sub
] < 0
2240 || search_regs
.start
[sub
] > search_regs
.end
[sub
]
2241 || search_regs
.end
[sub
] > XSTRING (string
)->size
)
2242 args_out_of_range (make_number (search_regs
.start
[sub
]),
2243 make_number (search_regs
.end
[sub
]));
2246 if (NILP (fixedcase
))
2248 /* Decide how to casify by examining the matched text. */
2251 pos
= search_regs
.start
[sub
];
2252 last
= search_regs
.end
[sub
];
2255 pos_byte
= CHAR_TO_BYTE (pos
);
2257 pos_byte
= string_char_to_byte (string
, pos
);
2260 case_action
= all_caps
;
2262 /* some_multiletter_word is set nonzero if any original word
2263 is more than one letter long. */
2264 some_multiletter_word
= 0;
2266 some_nonuppercase_initial
= 0;
2273 c
= FETCH_CHAR (pos_byte
);
2274 INC_BOTH (pos
, pos_byte
);
2277 FETCH_STRING_CHAR_ADVANCE (c
, string
, pos
, pos_byte
);
2281 /* Cannot be all caps if any original char is lower case */
2284 if (SYNTAX (prevc
) != Sword
)
2285 some_nonuppercase_initial
= 1;
2287 some_multiletter_word
= 1;
2289 else if (!NOCASEP (c
))
2292 if (SYNTAX (prevc
) != Sword
)
2295 some_multiletter_word
= 1;
2299 /* If the initial is a caseless word constituent,
2300 treat that like a lowercase initial. */
2301 if (SYNTAX (prevc
) != Sword
)
2302 some_nonuppercase_initial
= 1;
2308 /* Convert to all caps if the old text is all caps
2309 and has at least one multiletter word. */
2310 if (! some_lowercase
&& some_multiletter_word
)
2311 case_action
= all_caps
;
2312 /* Capitalize each word, if the old text has all capitalized words. */
2313 else if (!some_nonuppercase_initial
&& some_multiletter_word
)
2314 case_action
= cap_initial
;
2315 else if (!some_nonuppercase_initial
&& some_uppercase
)
2316 /* Should x -> yz, operating on X, give Yz or YZ?
2317 We'll assume the latter. */
2318 case_action
= all_caps
;
2320 case_action
= nochange
;
2323 /* Do replacement in a string. */
2326 Lisp_Object before
, after
;
2328 before
= Fsubstring (string
, make_number (0),
2329 make_number (search_regs
.start
[sub
]));
2330 after
= Fsubstring (string
, make_number (search_regs
.end
[sub
]), Qnil
);
2332 /* Substitute parts of the match into NEWTEXT
2337 int lastpos_byte
= 0;
2338 /* We build up the substituted string in ACCUM. */
2341 int length
= STRING_BYTES (XSTRING (newtext
));
2345 for (pos_byte
= 0, pos
= 0; pos_byte
< length
;)
2349 int delbackslash
= 0;
2351 FETCH_STRING_CHAR_ADVANCE (c
, newtext
, pos
, pos_byte
);
2355 FETCH_STRING_CHAR_ADVANCE (c
, newtext
, pos
, pos_byte
);
2359 substart
= search_regs
.start
[sub
];
2360 subend
= search_regs
.end
[sub
];
2362 else if (c
>= '1' && c
<= '9' && c
<= search_regs
.num_regs
+ '0')
2364 if (search_regs
.start
[c
- '0'] >= 0)
2366 substart
= search_regs
.start
[c
- '0'];
2367 subend
= search_regs
.end
[c
- '0'];
2373 error ("Invalid use of `\\' in replacement text");
2377 if (pos
- 2 != lastpos
)
2378 middle
= substring_both (newtext
, lastpos
,
2380 pos
- 2, pos_byte
- 2);
2383 accum
= concat3 (accum
, middle
,
2385 make_number (substart
),
2386 make_number (subend
)));
2388 lastpos_byte
= pos_byte
;
2390 else if (delbackslash
)
2392 middle
= substring_both (newtext
, lastpos
,
2394 pos
- 1, pos_byte
- 1);
2396 accum
= concat2 (accum
, middle
);
2398 lastpos_byte
= pos_byte
;
2403 middle
= substring_both (newtext
, lastpos
,
2409 newtext
= concat2 (accum
, middle
);
2412 /* Do case substitution in NEWTEXT if desired. */
2413 if (case_action
== all_caps
)
2414 newtext
= Fupcase (newtext
);
2415 else if (case_action
== cap_initial
)
2416 newtext
= Fupcase_initials (newtext
);
2418 return concat3 (before
, newtext
, after
);
2421 /* Record point, the move (quietly) to the start of the match. */
2422 if (PT
>= search_regs
.end
[sub
])
2424 else if (PT
> search_regs
.start
[sub
])
2425 opoint
= search_regs
.end
[sub
] - ZV
;
2429 TEMP_SET_PT (search_regs
.start
[sub
]);
2431 /* We insert the replacement text before the old text, and then
2432 delete the original text. This means that markers at the
2433 beginning or end of the original will float to the corresponding
2434 position in the replacement. */
2435 if (!NILP (literal
))
2436 Finsert_and_inherit (1, &newtext
);
2439 int length
= STRING_BYTES (XSTRING (newtext
));
2440 unsigned char *substed
;
2441 int substed_alloc_size
, substed_len
;
2442 int buf_multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
2443 int str_multibyte
= STRING_MULTIBYTE (newtext
);
2444 Lisp_Object rev_tbl
;
2446 rev_tbl
= (!buf_multibyte
&& CHAR_TABLE_P (Vnonascii_translation_table
)
2447 ? Fchar_table_extra_slot (Vnonascii_translation_table
,
2451 substed_alloc_size
= length
* 2 + 100;
2452 substed
= (unsigned char *) xmalloc (substed_alloc_size
+ 1);
2455 /* Go thru NEWTEXT, producing the actual text to insert in
2456 SUBSTED while adjusting multibyteness to that of the current
2459 for (pos_byte
= 0, pos
= 0; pos_byte
< length
;)
2461 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
2462 unsigned char *add_stuff
= NULL
;
2468 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, newtext
, pos
, pos_byte
);
2470 c
= multibyte_char_to_unibyte (c
, rev_tbl
);
2474 /* Note that we don't have to increment POS. */
2475 c
= XSTRING (newtext
)->data
[pos_byte
++];
2477 c
= unibyte_char_to_multibyte (c
);
2480 /* Either set ADD_STUFF and ADD_LEN to the text to put in SUBSTED,
2481 or set IDX to a match index, which means put that part
2482 of the buffer text into SUBSTED. */
2488 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, newtext
,
2490 if (!buf_multibyte
&& !SINGLE_BYTE_CHAR_P (c
))
2491 c
= multibyte_char_to_unibyte (c
, rev_tbl
);
2495 c
= XSTRING (newtext
)->data
[pos_byte
++];
2497 c
= unibyte_char_to_multibyte (c
);
2502 else if (c
>= '1' && c
<= '9' && c
<= search_regs
.num_regs
+ '0')
2504 if (search_regs
.start
[c
- '0'] >= 1)
2508 add_len
= 1, add_stuff
= "\\";
2512 error ("Invalid use of `\\' in replacement text");
2517 add_len
= CHAR_STRING (c
, str
);
2521 /* If we want to copy part of a previous match,
2522 set up ADD_STUFF and ADD_LEN to point to it. */
2525 int begbyte
= CHAR_TO_BYTE (search_regs
.start
[idx
]);
2526 add_len
= CHAR_TO_BYTE (search_regs
.end
[idx
]) - begbyte
;
2527 if (search_regs
.start
[idx
] < GPT
&& GPT
< search_regs
.end
[idx
])
2528 move_gap (search_regs
.start
[idx
]);
2529 add_stuff
= BYTE_POS_ADDR (begbyte
);
2532 /* Now the stuff we want to add to SUBSTED
2533 is invariably ADD_LEN bytes starting at ADD_STUFF. */
2535 /* Make sure SUBSTED is big enough. */
2536 if (substed_len
+ add_len
>= substed_alloc_size
)
2538 substed_alloc_size
= substed_len
+ add_len
+ 500;
2539 substed
= (unsigned char *) xrealloc (substed
,
2540 substed_alloc_size
+ 1);
2543 /* Now add to the end of SUBSTED. */
2546 bcopy (add_stuff
, substed
+ substed_len
, add_len
);
2547 substed_len
+= add_len
;
2551 /* Now insert what we accumulated. */
2552 insert_and_inherit (substed
, substed_len
);
2557 inslen
= PT
- (search_regs
.start
[sub
]);
2558 del_range (search_regs
.start
[sub
] + inslen
, search_regs
.end
[sub
] + inslen
);
2560 if (case_action
== all_caps
)
2561 Fupcase_region (make_number (PT
- inslen
), make_number (PT
));
2562 else if (case_action
== cap_initial
)
2563 Fupcase_initials_region (make_number (PT
- inslen
), make_number (PT
));
2567 /* Put point back where it was in the text. */
2569 TEMP_SET_PT (opoint
+ ZV
);
2571 TEMP_SET_PT (opoint
);
2573 /* Now move point "officially" to the start of the inserted replacement. */
2574 move_if_not_intangible (newpoint
);
2580 match_limit (num
, beginningp
)
2586 CHECK_NUMBER (num
, 0);
2588 if (n
< 0 || n
>= search_regs
.num_regs
)
2589 args_out_of_range (num
, make_number (search_regs
.num_regs
));
2590 if (search_regs
.num_regs
<= 0
2591 || search_regs
.start
[n
] < 0)
2593 return (make_number ((beginningp
) ? search_regs
.start
[n
]
2594 : search_regs
.end
[n
]));
2597 DEFUN ("match-beginning", Fmatch_beginning
, Smatch_beginning
, 1, 1, 0,
2598 "Return position of start of text matched by last search.\n\
2599 SUBEXP, a number, specifies which parenthesized expression in the last\n\
2601 Value is nil if SUBEXPth pair didn't match, or there were less than\n\
2603 Zero means the entire text matched by the whole regexp or whole string.")
2607 return match_limit (subexp
, 1);
2610 DEFUN ("match-end", Fmatch_end
, Smatch_end
, 1, 1, 0,
2611 "Return position of end of text matched by last search.\n\
2612 SUBEXP, a number, specifies which parenthesized expression in the last\n\
2614 Value is nil if SUBEXPth pair didn't match, or there were less than\n\
2616 Zero means the entire text matched by the whole regexp or whole string.")
2620 return match_limit (subexp
, 0);
2623 DEFUN ("match-data", Fmatch_data
, Smatch_data
, 0, 2, 0,
2624 "Return a list containing all info on what the last search matched.\n\
2625 Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.\n\
2626 All the elements are markers or nil (nil if the Nth pair didn't match)\n\
2627 if the last match was on a buffer; integers or nil if a string was matched.\n\
2628 Use `store-match-data' to reinstate the data in this list.\n\
2630 If INTEGERS (the optional first argument) is non-nil, always use integers\n\
2631 \(rather than markers) to represent buffer positions.\n\
2632 If REUSE is a list, reuse it as part of the value. If REUSE is long enough\n\
2633 to hold all the values, and if INTEGERS is non-nil, no consing is done.")
2635 Lisp_Object integers
, reuse
;
2637 Lisp_Object tail
, prev
;
2641 if (NILP (last_thing_searched
))
2646 data
= (Lisp_Object
*) alloca ((2 * search_regs
.num_regs
)
2647 * sizeof (Lisp_Object
));
2650 for (i
= 0; i
< search_regs
.num_regs
; i
++)
2652 int start
= search_regs
.start
[i
];
2655 if (EQ (last_thing_searched
, Qt
)
2656 || ! NILP (integers
))
2658 XSETFASTINT (data
[2 * i
], start
);
2659 XSETFASTINT (data
[2 * i
+ 1], search_regs
.end
[i
]);
2661 else if (BUFFERP (last_thing_searched
))
2663 data
[2 * i
] = Fmake_marker ();
2664 Fset_marker (data
[2 * i
],
2665 make_number (start
),
2666 last_thing_searched
);
2667 data
[2 * i
+ 1] = Fmake_marker ();
2668 Fset_marker (data
[2 * i
+ 1],
2669 make_number (search_regs
.end
[i
]),
2670 last_thing_searched
);
2673 /* last_thing_searched must always be Qt, a buffer, or Qnil. */
2679 data
[2 * i
] = data
[2 * i
+ 1] = Qnil
;
2682 /* If REUSE is not usable, cons up the values and return them. */
2683 if (! CONSP (reuse
))
2684 return Flist (2 * len
+ 2, data
);
2686 /* If REUSE is a list, store as many value elements as will fit
2687 into the elements of REUSE. */
2688 for (i
= 0, tail
= reuse
; CONSP (tail
);
2689 i
++, tail
= XCDR (tail
))
2691 if (i
< 2 * len
+ 2)
2692 XCAR (tail
) = data
[i
];
2698 /* If we couldn't fit all value elements into REUSE,
2699 cons up the rest of them and add them to the end of REUSE. */
2700 if (i
< 2 * len
+ 2)
2701 XCDR (prev
) = Flist (2 * len
+ 2 - i
, data
+ i
);
2707 DEFUN ("set-match-data", Fset_match_data
, Sset_match_data
, 1, 1, 0,
2708 "Set internal data on last search match from elements of LIST.\n\
2709 LIST should have been created by calling `match-data' previously.")
2711 register Lisp_Object list
;
2714 register Lisp_Object marker
;
2716 if (running_asynch_code
)
2717 save_search_regs ();
2719 if (!CONSP (list
) && !NILP (list
))
2720 list
= wrong_type_argument (Qconsp
, list
);
2722 /* Unless we find a marker with a buffer in LIST, assume that this
2723 match data came from a string. */
2724 last_thing_searched
= Qt
;
2726 /* Allocate registers if they don't already exist. */
2728 int length
= XFASTINT (Flength (list
)) / 2;
2730 if (length
> search_regs
.num_regs
)
2732 if (search_regs
.num_regs
== 0)
2735 = (regoff_t
*) xmalloc (length
* sizeof (regoff_t
));
2737 = (regoff_t
*) xmalloc (length
* sizeof (regoff_t
));
2742 = (regoff_t
*) xrealloc (search_regs
.start
,
2743 length
* sizeof (regoff_t
));
2745 = (regoff_t
*) xrealloc (search_regs
.end
,
2746 length
* sizeof (regoff_t
));
2749 search_regs
.num_regs
= length
;
2753 for (i
= 0; i
< search_regs
.num_regs
; i
++)
2755 marker
= Fcar (list
);
2758 search_regs
.start
[i
] = -1;
2763 if (MARKERP (marker
))
2765 if (XMARKER (marker
)->buffer
== 0)
2766 XSETFASTINT (marker
, 0);
2768 XSETBUFFER (last_thing_searched
, XMARKER (marker
)->buffer
);
2771 CHECK_NUMBER_COERCE_MARKER (marker
, 0);
2772 search_regs
.start
[i
] = XINT (marker
);
2775 marker
= Fcar (list
);
2776 if (MARKERP (marker
) && XMARKER (marker
)->buffer
== 0)
2777 XSETFASTINT (marker
, 0);
2779 CHECK_NUMBER_COERCE_MARKER (marker
, 0);
2780 search_regs
.end
[i
] = XINT (marker
);
2788 /* If non-zero the match data have been saved in saved_search_regs
2789 during the execution of a sentinel or filter. */
2790 static int search_regs_saved
;
2791 static struct re_registers saved_search_regs
;
2793 /* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data
2794 if asynchronous code (filter or sentinel) is running. */
2798 if (!search_regs_saved
)
2800 saved_search_regs
.num_regs
= search_regs
.num_regs
;
2801 saved_search_regs
.start
= search_regs
.start
;
2802 saved_search_regs
.end
= search_regs
.end
;
2803 search_regs
.num_regs
= 0;
2804 search_regs
.start
= 0;
2805 search_regs
.end
= 0;
2807 search_regs_saved
= 1;
2811 /* Called upon exit from filters and sentinels. */
2813 restore_match_data ()
2815 if (search_regs_saved
)
2817 if (search_regs
.num_regs
> 0)
2819 xfree (search_regs
.start
);
2820 xfree (search_regs
.end
);
2822 search_regs
.num_regs
= saved_search_regs
.num_regs
;
2823 search_regs
.start
= saved_search_regs
.start
;
2824 search_regs
.end
= saved_search_regs
.end
;
2826 search_regs_saved
= 0;
2830 /* Quote a string to inactivate reg-expr chars */
2832 DEFUN ("regexp-quote", Fregexp_quote
, Sregexp_quote
, 1, 1, 0,
2833 "Return a regexp string which matches exactly STRING and nothing else.")
2837 register unsigned char *in
, *out
, *end
;
2838 register unsigned char *temp
;
2839 int backslashes_added
= 0;
2841 CHECK_STRING (string
, 0);
2843 temp
= (unsigned char *) alloca (STRING_BYTES (XSTRING (string
)) * 2);
2845 /* Now copy the data into the new string, inserting escapes. */
2847 in
= XSTRING (string
)->data
;
2848 end
= in
+ STRING_BYTES (XSTRING (string
));
2851 for (; in
!= end
; in
++)
2853 if (*in
== '[' || *in
== ']'
2854 || *in
== '*' || *in
== '.' || *in
== '\\'
2855 || *in
== '?' || *in
== '+'
2856 || *in
== '^' || *in
== '$')
2857 *out
++ = '\\', backslashes_added
++;
2861 return make_specified_string (temp
,
2862 XSTRING (string
)->size
+ backslashes_added
,
2864 STRING_MULTIBYTE (string
));
2872 for (i
= 0; i
< REGEXP_CACHE_SIZE
; ++i
)
2874 searchbufs
[i
].buf
.allocated
= 100;
2875 searchbufs
[i
].buf
.buffer
= (unsigned char *) malloc (100);
2876 searchbufs
[i
].buf
.fastmap
= searchbufs
[i
].fastmap
;
2877 searchbufs
[i
].regexp
= Qnil
;
2878 staticpro (&searchbufs
[i
].regexp
);
2879 searchbufs
[i
].next
= (i
== REGEXP_CACHE_SIZE
-1 ? 0 : &searchbufs
[i
+1]);
2881 searchbuf_head
= &searchbufs
[0];
2883 Qsearch_failed
= intern ("search-failed");
2884 staticpro (&Qsearch_failed
);
2885 Qinvalid_regexp
= intern ("invalid-regexp");
2886 staticpro (&Qinvalid_regexp
);
2888 Fput (Qsearch_failed
, Qerror_conditions
,
2889 Fcons (Qsearch_failed
, Fcons (Qerror
, Qnil
)));
2890 Fput (Qsearch_failed
, Qerror_message
,
2891 build_string ("Search failed"));
2893 Fput (Qinvalid_regexp
, Qerror_conditions
,
2894 Fcons (Qinvalid_regexp
, Fcons (Qerror
, Qnil
)));
2895 Fput (Qinvalid_regexp
, Qerror_message
,
2896 build_string ("Invalid regexp"));
2898 last_thing_searched
= Qnil
;
2899 staticpro (&last_thing_searched
);
2901 defsubr (&Slooking_at
);
2902 defsubr (&Sposix_looking_at
);
2903 defsubr (&Sstring_match
);
2904 defsubr (&Sposix_string_match
);
2905 defsubr (&Ssearch_forward
);
2906 defsubr (&Ssearch_backward
);
2907 defsubr (&Sword_search_forward
);
2908 defsubr (&Sword_search_backward
);
2909 defsubr (&Sre_search_forward
);
2910 defsubr (&Sre_search_backward
);
2911 defsubr (&Sposix_search_forward
);
2912 defsubr (&Sposix_search_backward
);
2913 defsubr (&Sreplace_match
);
2914 defsubr (&Smatch_beginning
);
2915 defsubr (&Smatch_end
);
2916 defsubr (&Smatch_data
);
2917 defsubr (&Sset_match_data
);
2918 defsubr (&Sregexp_quote
);