Don't overide default value of diary-file.
[emacs.git] / src / search.c
blobd9d445afad03778be62dd911459aeed7f751279b
1 /* String search routines for GNU Emacs.
2 Copyright (C) 1985, 86, 87, 93, 94, 97, 1998 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)
9 any later version.
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. */
22 #include <config.h>
23 #ifdef STDC_HEADERS
24 #include <stdlib.h>
25 #endif
26 #include "lisp.h"
27 #include "syntax.h"
28 #include "category.h"
29 #include "buffer.h"
30 #include "charset.h"
31 #include "region-cache.h"
32 #include "commands.h"
33 #include "blockinput.h"
34 #include "intervals.h"
36 #include <sys/types.h>
37 #include "regex.h"
39 #define min(a, b) ((a) < (b) ? (a) : (b))
40 #define max(a, b) ((a) > (b) ? (a) : (b))
42 #define REGEXP_CACHE_SIZE 20
44 /* If the regexp is non-nil, then the buffer contains the compiled form
45 of that regexp, suitable for searching. */
46 struct regexp_cache
48 struct regexp_cache *next;
49 Lisp_Object regexp;
50 struct re_pattern_buffer buf;
51 char fastmap[0400];
52 /* Nonzero means regexp was compiled to do full POSIX backtracking. */
53 char posix;
56 /* The instances of that struct. */
57 struct regexp_cache searchbufs[REGEXP_CACHE_SIZE];
59 /* The head of the linked list; points to the most recently used buffer. */
60 struct regexp_cache *searchbuf_head;
63 /* Every call to re_match, etc., must pass &search_regs as the regs
64 argument unless you can show it is unnecessary (i.e., if re_match
65 is certainly going to be called again before region-around-match
66 can be called).
68 Since the registers are now dynamically allocated, we need to make
69 sure not to refer to the Nth register before checking that it has
70 been allocated by checking search_regs.num_regs.
72 The regex code keeps track of whether it has allocated the search
73 buffer using bits in the re_pattern_buffer. This means that whenever
74 you compile a new pattern, it completely forgets whether it has
75 allocated any registers, and will allocate new registers the next
76 time you call a searching or matching function. Therefore, we need
77 to call re_set_registers after compiling a new pattern or after
78 setting the match registers, so that the regex functions will be
79 able to free or re-allocate it properly. */
80 static struct re_registers search_regs;
82 /* The buffer in which the last search was performed, or
83 Qt if the last search was done in a string;
84 Qnil if no searching has been done yet. */
85 static Lisp_Object last_thing_searched;
87 /* error condition signaled when regexp compile_pattern fails */
89 Lisp_Object Qinvalid_regexp;
91 static void set_search_regs ();
92 static void save_search_regs ();
93 static int simple_search ();
94 static int boyer_moore ();
95 static int search_buffer ();
97 static void
98 matcher_overflow ()
100 error ("Stack overflow in regexp matcher");
103 #ifdef __STDC__
104 #define CONST const
105 #else
106 #define CONST
107 #endif
109 /* Compile a regexp and signal a Lisp error if anything goes wrong.
110 PATTERN is the pattern to compile.
111 CP is the place to put the result.
112 TRANSLATE is a translation table for ignoring case, or nil for none.
113 REGP is the structure that says where to store the "register"
114 values that will result from matching this pattern.
115 If it is 0, we should compile the pattern not to record any
116 subexpression bounds.
117 POSIX is nonzero if we want full backtracking (POSIX style)
118 for this pattern. 0 means backtrack only enough to get a valid match.
119 MULTIBYTE is nonzero if we want to handle multibyte characters in
120 PATTERN. 0 means all multibyte characters are recognized just as
121 sequences of binary data. */
123 static void
124 compile_pattern_1 (cp, pattern, translate, regp, posix, multibyte)
125 struct regexp_cache *cp;
126 Lisp_Object pattern;
127 Lisp_Object translate;
128 struct re_registers *regp;
129 int posix;
130 int multibyte;
132 unsigned char *raw_pattern;
133 int raw_pattern_size;
134 char *val;
135 reg_syntax_t old;
137 /* MULTIBYTE says whether the text to be searched is multibyte.
138 We must convert PATTERN to match that, or we will not really
139 find things right. */
141 if (multibyte == STRING_MULTIBYTE (pattern))
143 raw_pattern = (unsigned char *) XSTRING (pattern)->data;
144 raw_pattern_size = STRING_BYTES (XSTRING (pattern));
146 else if (multibyte)
148 raw_pattern_size = count_size_as_multibyte (XSTRING (pattern)->data,
149 XSTRING (pattern)->size);
150 raw_pattern = (unsigned char *) alloca (raw_pattern_size + 1);
151 copy_text (XSTRING (pattern)->data, raw_pattern,
152 XSTRING (pattern)->size, 0, 1);
154 else
156 /* Converting multibyte to single-byte.
158 ??? Perhaps this conversion should be done in a special way
159 by subtracting nonascii-insert-offset from each non-ASCII char,
160 so that only the multibyte chars which really correspond to
161 the chosen single-byte character set can possibly match. */
162 raw_pattern_size = XSTRING (pattern)->size;
163 raw_pattern = (unsigned char *) alloca (raw_pattern_size + 1);
164 copy_text (XSTRING (pattern)->data, raw_pattern,
165 STRING_BYTES (XSTRING (pattern)), 1, 0);
168 cp->regexp = Qnil;
169 cp->buf.translate = (! NILP (translate) ? translate : make_number (0));
170 cp->posix = posix;
171 cp->buf.multibyte = multibyte;
172 BLOCK_INPUT;
173 old = re_set_syntax (RE_SYNTAX_EMACS
174 | (posix ? 0 : RE_NO_POSIX_BACKTRACKING));
175 val = (char *) re_compile_pattern ((char *)raw_pattern,
176 raw_pattern_size, &cp->buf);
177 re_set_syntax (old);
178 UNBLOCK_INPUT;
179 if (val)
180 Fsignal (Qinvalid_regexp, Fcons (build_string (val), Qnil));
182 cp->regexp = Fcopy_sequence (pattern);
185 /* Shrink each compiled regexp buffer in the cache
186 to the size actually used right now.
187 This is called from garbage collection. */
189 void
190 shrink_regexp_cache ()
192 struct regexp_cache *cp, **cpp;
194 for (cp = searchbuf_head; cp != 0; cp = cp->next)
196 cp->buf.allocated = cp->buf.used;
197 cp->buf.buffer
198 = (unsigned char *) realloc (cp->buf.buffer, cp->buf.used);
202 /* Compile a regexp if necessary, but first check to see if there's one in
203 the cache.
204 PATTERN is the pattern to compile.
205 TRANSLATE is a translation table for ignoring case, or nil for none.
206 REGP is the structure that says where to store the "register"
207 values that will result from matching this pattern.
208 If it is 0, we should compile the pattern not to record any
209 subexpression bounds.
210 POSIX is nonzero if we want full backtracking (POSIX style)
211 for this pattern. 0 means backtrack only enough to get a valid match. */
213 struct re_pattern_buffer *
214 compile_pattern (pattern, regp, translate, posix, multibyte)
215 Lisp_Object pattern;
216 struct re_registers *regp;
217 Lisp_Object translate;
218 int posix, multibyte;
220 struct regexp_cache *cp, **cpp;
222 for (cpp = &searchbuf_head; ; cpp = &cp->next)
224 cp = *cpp;
225 if (XSTRING (cp->regexp)->size == XSTRING (pattern)->size
226 && !NILP (Fstring_equal (cp->regexp, pattern))
227 && EQ (cp->buf.translate, (! NILP (translate) ? translate : make_number (0)))
228 && cp->posix == posix
229 && cp->buf.multibyte == multibyte)
230 break;
232 /* If we're at the end of the cache, compile into the last cell. */
233 if (cp->next == 0)
235 compile_pattern_1 (cp, pattern, translate, regp, posix, multibyte);
236 break;
240 /* When we get here, cp (aka *cpp) contains the compiled pattern,
241 either because we found it in the cache or because we just compiled it.
242 Move it to the front of the queue to mark it as most recently used. */
243 *cpp = cp->next;
244 cp->next = searchbuf_head;
245 searchbuf_head = cp;
247 /* Advise the searching functions about the space we have allocated
248 for register data. */
249 if (regp)
250 re_set_registers (&cp->buf, regp, regp->num_regs, regp->start, regp->end);
252 return &cp->buf;
255 /* Error condition used for failing searches */
256 Lisp_Object Qsearch_failed;
258 Lisp_Object
259 signal_failure (arg)
260 Lisp_Object arg;
262 Fsignal (Qsearch_failed, Fcons (arg, Qnil));
263 return Qnil;
266 static Lisp_Object
267 looking_at_1 (string, posix)
268 Lisp_Object string;
269 int posix;
271 Lisp_Object val;
272 unsigned char *p1, *p2;
273 int s1, s2;
274 register int i;
275 struct re_pattern_buffer *bufp;
277 if (running_asynch_code)
278 save_search_regs ();
280 CHECK_STRING (string, 0);
281 bufp = compile_pattern (string, &search_regs,
282 (!NILP (current_buffer->case_fold_search)
283 ? DOWNCASE_TABLE : Qnil),
284 posix,
285 !NILP (current_buffer->enable_multibyte_characters));
287 immediate_quit = 1;
288 QUIT; /* Do a pending quit right away, to avoid paradoxical behavior */
290 /* Get pointers and sizes of the two strings
291 that make up the visible portion of the buffer. */
293 p1 = BEGV_ADDR;
294 s1 = GPT_BYTE - BEGV_BYTE;
295 p2 = GAP_END_ADDR;
296 s2 = ZV_BYTE - GPT_BYTE;
297 if (s1 < 0)
299 p2 = p1;
300 s2 = ZV_BYTE - BEGV_BYTE;
301 s1 = 0;
303 if (s2 < 0)
305 s1 = ZV_BYTE - BEGV_BYTE;
306 s2 = 0;
309 re_match_object = Qnil;
311 i = re_match_2 (bufp, (char *) p1, s1, (char *) p2, s2,
312 PT_BYTE - BEGV_BYTE, &search_regs,
313 ZV_BYTE - BEGV_BYTE);
314 if (i == -2)
315 matcher_overflow ();
317 val = (0 <= i ? Qt : Qnil);
318 if (i >= 0)
319 for (i = 0; i < search_regs.num_regs; i++)
320 if (search_regs.start[i] >= 0)
322 search_regs.start[i]
323 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
324 search_regs.end[i]
325 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
327 XSETBUFFER (last_thing_searched, current_buffer);
328 immediate_quit = 0;
329 return val;
332 DEFUN ("looking-at", Flooking_at, Slooking_at, 1, 1, 0,
333 "Return t if text after point matches regular expression REGEXP.\n\
334 This function modifies the match data that `match-beginning',\n\
335 `match-end' and `match-data' access; save and restore the match\n\
336 data if you want to preserve them.")
337 (regexp)
338 Lisp_Object regexp;
340 return looking_at_1 (regexp, 0);
343 DEFUN ("posix-looking-at", Fposix_looking_at, Sposix_looking_at, 1, 1, 0,
344 "Return t if text after point matches regular expression REGEXP.\n\
345 Find the longest match, in accord with Posix regular expression rules.\n\
346 This function modifies the match data that `match-beginning',\n\
347 `match-end' and `match-data' access; save and restore the match\n\
348 data if you want to preserve them.")
349 (regexp)
350 Lisp_Object regexp;
352 return looking_at_1 (regexp, 1);
355 static Lisp_Object
356 string_match_1 (regexp, string, start, posix)
357 Lisp_Object regexp, string, start;
358 int posix;
360 int val;
361 struct re_pattern_buffer *bufp;
362 int pos, pos_byte;
363 int i;
365 if (running_asynch_code)
366 save_search_regs ();
368 CHECK_STRING (regexp, 0);
369 CHECK_STRING (string, 1);
371 if (NILP (start))
372 pos = 0, pos_byte = 0;
373 else
375 int len = XSTRING (string)->size;
377 CHECK_NUMBER (start, 2);
378 pos = XINT (start);
379 if (pos < 0 && -pos <= len)
380 pos = len + pos;
381 else if (0 > pos || pos > len)
382 args_out_of_range (string, start);
383 pos_byte = string_char_to_byte (string, pos);
386 bufp = compile_pattern (regexp, &search_regs,
387 (!NILP (current_buffer->case_fold_search)
388 ? DOWNCASE_TABLE : Qnil),
389 posix,
390 STRING_MULTIBYTE (string));
391 immediate_quit = 1;
392 re_match_object = string;
394 val = re_search (bufp, (char *) XSTRING (string)->data,
395 STRING_BYTES (XSTRING (string)), pos_byte,
396 STRING_BYTES (XSTRING (string)) - pos_byte,
397 &search_regs);
398 immediate_quit = 0;
399 last_thing_searched = Qt;
400 if (val == -2)
401 matcher_overflow ();
402 if (val < 0) return Qnil;
404 for (i = 0; i < search_regs.num_regs; i++)
405 if (search_regs.start[i] >= 0)
407 search_regs.start[i]
408 = string_byte_to_char (string, search_regs.start[i]);
409 search_regs.end[i]
410 = string_byte_to_char (string, search_regs.end[i]);
413 return make_number (string_byte_to_char (string, val));
416 DEFUN ("string-match", Fstring_match, Sstring_match, 2, 3, 0,
417 "Return index of start of first match for REGEXP in STRING, or nil.\n\
418 If third arg START is non-nil, start search at that index in STRING.\n\
419 For index of first char beyond the match, do (match-end 0).\n\
420 `match-end' and `match-beginning' also give indices of substrings\n\
421 matched by parenthesis constructs in the pattern.")
422 (regexp, string, start)
423 Lisp_Object regexp, string, start;
425 return string_match_1 (regexp, string, start, 0);
428 DEFUN ("posix-string-match", Fposix_string_match, Sposix_string_match, 2, 3, 0,
429 "Return index of start of first match for REGEXP in STRING, or nil.\n\
430 Find the longest match, in accord with Posix regular expression rules.\n\
431 If third arg START is non-nil, start search at that index in STRING.\n\
432 For index of first char beyond the match, do (match-end 0).\n\
433 `match-end' and `match-beginning' also give indices of substrings\n\
434 matched by parenthesis constructs in the pattern.")
435 (regexp, string, start)
436 Lisp_Object regexp, string, start;
438 return string_match_1 (regexp, string, start, 1);
441 /* Match REGEXP against STRING, searching all of STRING,
442 and return the index of the match, or negative on failure.
443 This does not clobber the match data. */
446 fast_string_match (regexp, string)
447 Lisp_Object regexp, string;
449 int val;
450 struct re_pattern_buffer *bufp;
452 bufp = compile_pattern (regexp, 0, Qnil,
453 0, STRING_MULTIBYTE (string));
454 immediate_quit = 1;
455 re_match_object = string;
457 val = re_search (bufp, (char *) XSTRING (string)->data,
458 STRING_BYTES (XSTRING (string)), 0,
459 STRING_BYTES (XSTRING (string)), 0);
460 immediate_quit = 0;
461 return val;
464 /* Match REGEXP against STRING, searching all of STRING ignoring case,
465 and return the index of the match, or negative on failure.
466 This does not clobber the match data.
467 We assume that STRING contains single-byte characters. */
469 extern Lisp_Object Vascii_downcase_table;
472 fast_c_string_match_ignore_case (regexp, string)
473 Lisp_Object regexp;
474 char *string;
476 int val;
477 struct re_pattern_buffer *bufp;
478 int len = strlen (string);
480 regexp = string_make_unibyte (regexp);
481 re_match_object = Qt;
482 bufp = compile_pattern (regexp, 0,
483 Vascii_downcase_table, 0,
485 immediate_quit = 1;
486 val = re_search (bufp, string, len, 0, len, 0);
487 immediate_quit = 0;
488 return val;
491 /* The newline cache: remembering which sections of text have no newlines. */
493 /* If the user has requested newline caching, make sure it's on.
494 Otherwise, make sure it's off.
495 This is our cheezy way of associating an action with the change of
496 state of a buffer-local variable. */
497 static void
498 newline_cache_on_off (buf)
499 struct buffer *buf;
501 if (NILP (buf->cache_long_line_scans))
503 /* It should be off. */
504 if (buf->newline_cache)
506 free_region_cache (buf->newline_cache);
507 buf->newline_cache = 0;
510 else
512 /* It should be on. */
513 if (buf->newline_cache == 0)
514 buf->newline_cache = new_region_cache ();
519 /* Search for COUNT instances of the character TARGET between START and END.
521 If COUNT is positive, search forwards; END must be >= START.
522 If COUNT is negative, search backwards for the -COUNTth instance;
523 END must be <= START.
524 If COUNT is zero, do anything you please; run rogue, for all I care.
526 If END is zero, use BEGV or ZV instead, as appropriate for the
527 direction indicated by COUNT.
529 If we find COUNT instances, set *SHORTAGE to zero, and return the
530 position after the COUNTth match. Note that for reverse motion
531 this is not the same as the usual convention for Emacs motion commands.
533 If we don't find COUNT instances before reaching END, set *SHORTAGE
534 to the number of TARGETs left unfound, and return END.
536 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
537 except when inside redisplay. */
540 scan_buffer (target, start, end, count, shortage, allow_quit)
541 register int target;
542 int start, end;
543 int count;
544 int *shortage;
545 int allow_quit;
547 struct region_cache *newline_cache;
548 int direction;
550 if (count > 0)
552 direction = 1;
553 if (! end) end = ZV;
555 else
557 direction = -1;
558 if (! end) end = BEGV;
561 newline_cache_on_off (current_buffer);
562 newline_cache = current_buffer->newline_cache;
564 if (shortage != 0)
565 *shortage = 0;
567 immediate_quit = allow_quit;
569 if (count > 0)
570 while (start != end)
572 /* Our innermost scanning loop is very simple; it doesn't know
573 about gaps, buffer ends, or the newline cache. ceiling is
574 the position of the last character before the next such
575 obstacle --- the last character the dumb search loop should
576 examine. */
577 int ceiling_byte = CHAR_TO_BYTE (end) - 1;
578 int start_byte = CHAR_TO_BYTE (start);
579 int tem;
581 /* If we're looking for a newline, consult the newline cache
582 to see where we can avoid some scanning. */
583 if (target == '\n' && newline_cache)
585 int next_change;
586 immediate_quit = 0;
587 while (region_cache_forward
588 (current_buffer, newline_cache, start_byte, &next_change))
589 start_byte = next_change;
590 immediate_quit = allow_quit;
592 /* START should never be after END. */
593 if (start_byte > ceiling_byte)
594 start_byte = ceiling_byte;
596 /* Now the text after start is an unknown region, and
597 next_change is the position of the next known region. */
598 ceiling_byte = min (next_change - 1, ceiling_byte);
601 /* The dumb loop can only scan text stored in contiguous
602 bytes. BUFFER_CEILING_OF returns the last character
603 position that is contiguous, so the ceiling is the
604 position after that. */
605 tem = BUFFER_CEILING_OF (start_byte);
606 ceiling_byte = min (tem, ceiling_byte);
609 /* The termination address of the dumb loop. */
610 register unsigned char *ceiling_addr
611 = BYTE_POS_ADDR (ceiling_byte) + 1;
612 register unsigned char *cursor
613 = BYTE_POS_ADDR (start_byte);
614 unsigned char *base = cursor;
616 while (cursor < ceiling_addr)
618 unsigned char *scan_start = cursor;
620 /* The dumb loop. */
621 while (*cursor != target && ++cursor < ceiling_addr)
624 /* If we're looking for newlines, cache the fact that
625 the region from start to cursor is free of them. */
626 if (target == '\n' && newline_cache)
627 know_region_cache (current_buffer, newline_cache,
628 start_byte + scan_start - base,
629 start_byte + cursor - base);
631 /* Did we find the target character? */
632 if (cursor < ceiling_addr)
634 if (--count == 0)
636 immediate_quit = 0;
637 return BYTE_TO_CHAR (start_byte + cursor - base + 1);
639 cursor++;
643 start = BYTE_TO_CHAR (start_byte + cursor - base);
646 else
647 while (start > end)
649 /* The last character to check before the next obstacle. */
650 int ceiling_byte = CHAR_TO_BYTE (end);
651 int start_byte = CHAR_TO_BYTE (start);
652 int tem;
654 /* Consult the newline cache, if appropriate. */
655 if (target == '\n' && newline_cache)
657 int next_change;
658 immediate_quit = 0;
659 while (region_cache_backward
660 (current_buffer, newline_cache, start_byte, &next_change))
661 start_byte = next_change;
662 immediate_quit = allow_quit;
664 /* Start should never be at or before end. */
665 if (start_byte <= ceiling_byte)
666 start_byte = ceiling_byte + 1;
668 /* Now the text before start is an unknown region, and
669 next_change is the position of the next known region. */
670 ceiling_byte = max (next_change, ceiling_byte);
673 /* Stop scanning before the gap. */
674 tem = BUFFER_FLOOR_OF (start_byte - 1);
675 ceiling_byte = max (tem, ceiling_byte);
678 /* The termination address of the dumb loop. */
679 register unsigned char *ceiling_addr = BYTE_POS_ADDR (ceiling_byte);
680 register unsigned char *cursor = BYTE_POS_ADDR (start_byte - 1);
681 unsigned char *base = cursor;
683 while (cursor >= ceiling_addr)
685 unsigned char *scan_start = cursor;
687 while (*cursor != target && --cursor >= ceiling_addr)
690 /* If we're looking for newlines, cache the fact that
691 the region from after the cursor to start is free of them. */
692 if (target == '\n' && newline_cache)
693 know_region_cache (current_buffer, newline_cache,
694 start_byte + cursor - base,
695 start_byte + scan_start - base);
697 /* Did we find the target character? */
698 if (cursor >= ceiling_addr)
700 if (++count >= 0)
702 immediate_quit = 0;
703 return BYTE_TO_CHAR (start_byte + cursor - base);
705 cursor--;
709 start = BYTE_TO_CHAR (start_byte + cursor - base);
713 immediate_quit = 0;
714 if (shortage != 0)
715 *shortage = count * direction;
716 return start;
719 /* Search for COUNT instances of a line boundary, which means either a
720 newline or (if selective display enabled) a carriage return.
721 Start at START. If COUNT is negative, search backwards.
723 We report the resulting position by calling TEMP_SET_PT_BOTH.
725 If we find COUNT instances. we position after (always after,
726 even if scanning backwards) the COUNTth match, and return 0.
728 If we don't find COUNT instances before reaching the end of the
729 buffer (or the beginning, if scanning backwards), we return
730 the number of line boundaries left unfound, and position at
731 the limit we bumped up against.
733 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
734 except in special cases. */
737 scan_newline (start, start_byte, limit, limit_byte, count, allow_quit)
738 int start, start_byte;
739 int limit, limit_byte;
740 register int count;
741 int allow_quit;
743 int direction = ((count > 0) ? 1 : -1);
745 register unsigned char *cursor;
746 unsigned char *base;
748 register int ceiling;
749 register unsigned char *ceiling_addr;
751 int old_immediate_quit = immediate_quit;
753 /* If we are not in selective display mode,
754 check only for newlines. */
755 int selective_display = (!NILP (current_buffer->selective_display)
756 && !INTEGERP (current_buffer->selective_display));
758 /* The code that follows is like scan_buffer
759 but checks for either newline or carriage return. */
761 if (allow_quit)
762 immediate_quit++;
764 start_byte = CHAR_TO_BYTE (start);
766 if (count > 0)
768 while (start_byte < limit_byte)
770 ceiling = BUFFER_CEILING_OF (start_byte);
771 ceiling = min (limit_byte - 1, ceiling);
772 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
773 base = (cursor = BYTE_POS_ADDR (start_byte));
774 while (1)
776 while (*cursor != '\n' && ++cursor != ceiling_addr)
779 if (cursor != ceiling_addr)
781 if (--count == 0)
783 immediate_quit = old_immediate_quit;
784 start_byte = start_byte + cursor - base + 1;
785 start = BYTE_TO_CHAR (start_byte);
786 TEMP_SET_PT_BOTH (start, start_byte);
787 return 0;
789 else
790 if (++cursor == ceiling_addr)
791 break;
793 else
794 break;
796 start_byte += cursor - base;
799 else
801 while (start_byte > limit_byte)
803 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
804 ceiling = max (limit_byte, ceiling);
805 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1;
806 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
807 while (1)
809 while (--cursor != ceiling_addr && *cursor != '\n')
812 if (cursor != ceiling_addr)
814 if (++count == 0)
816 immediate_quit = old_immediate_quit;
817 /* Return the position AFTER the match we found. */
818 start_byte = start_byte + cursor - base + 1;
819 start = BYTE_TO_CHAR (start_byte);
820 TEMP_SET_PT_BOTH (start, start_byte);
821 return 0;
824 else
825 break;
827 /* Here we add 1 to compensate for the last decrement
828 of CURSOR, which took it past the valid range. */
829 start_byte += cursor - base + 1;
833 TEMP_SET_PT_BOTH (limit, limit_byte);
834 immediate_quit = old_immediate_quit;
836 return count * direction;
840 find_next_newline_no_quit (from, cnt)
841 register int from, cnt;
843 return scan_buffer ('\n', from, 0, cnt, (int *) 0, 0);
846 /* Like find_next_newline, but returns position before the newline,
847 not after, and only search up to TO. This isn't just
848 find_next_newline (...)-1, because you might hit TO. */
851 find_before_next_newline (from, to, cnt)
852 int from, to, cnt;
854 int shortage;
855 int pos = scan_buffer ('\n', from, to, cnt, &shortage, 1);
857 if (shortage == 0)
858 pos--;
860 return pos;
863 /* Subroutines of Lisp buffer search functions. */
865 static Lisp_Object
866 search_command (string, bound, noerror, count, direction, RE, posix)
867 Lisp_Object string, bound, noerror, count;
868 int direction;
869 int RE;
870 int posix;
872 register int np;
873 int lim, lim_byte;
874 int n = direction;
876 if (!NILP (count))
878 CHECK_NUMBER (count, 3);
879 n *= XINT (count);
882 CHECK_STRING (string, 0);
883 if (NILP (bound))
885 if (n > 0)
886 lim = ZV, lim_byte = ZV_BYTE;
887 else
888 lim = BEGV, lim_byte = BEGV_BYTE;
890 else
892 CHECK_NUMBER_COERCE_MARKER (bound, 1);
893 lim = XINT (bound);
894 if (n > 0 ? lim < PT : lim > PT)
895 error ("Invalid search bound (wrong side of point)");
896 if (lim > ZV)
897 lim = ZV, lim_byte = ZV_BYTE;
898 else if (lim < BEGV)
899 lim = BEGV, lim_byte = BEGV_BYTE;
900 else
901 lim_byte = CHAR_TO_BYTE (lim);
904 np = search_buffer (string, PT, PT_BYTE, lim, lim_byte, n, RE,
905 (!NILP (current_buffer->case_fold_search)
906 ? current_buffer->case_canon_table
907 : Qnil),
908 (!NILP (current_buffer->case_fold_search)
909 ? current_buffer->case_eqv_table
910 : Qnil),
911 posix);
912 if (np <= 0)
914 if (NILP (noerror))
915 return signal_failure (string);
916 if (!EQ (noerror, Qt))
918 if (lim < BEGV || lim > ZV)
919 abort ();
920 SET_PT_BOTH (lim, lim_byte);
921 return Qnil;
922 #if 0 /* This would be clean, but maybe programs depend on
923 a value of nil here. */
924 np = lim;
925 #endif
927 else
928 return Qnil;
931 if (np < BEGV || np > ZV)
932 abort ();
934 SET_PT (np);
936 return make_number (np);
939 /* Return 1 if REGEXP it matches just one constant string. */
941 static int
942 trivial_regexp_p (regexp)
943 Lisp_Object regexp;
945 int len = STRING_BYTES (XSTRING (regexp));
946 unsigned char *s = XSTRING (regexp)->data;
947 unsigned char c;
948 while (--len >= 0)
950 switch (*s++)
952 case '.': case '*': case '+': case '?': case '[': case '^': case '$':
953 return 0;
954 case '\\':
955 if (--len < 0)
956 return 0;
957 switch (*s++)
959 case '|': case '(': case ')': case '`': case '\'': case 'b':
960 case 'B': case '<': case '>': case 'w': case 'W': case 's':
961 case 'S': case '=':
962 case 'c': case 'C': /* for categoryspec and notcategoryspec */
963 case '1': case '2': case '3': case '4': case '5':
964 case '6': case '7': case '8': case '9':
965 return 0;
969 return 1;
972 /* Search for the n'th occurrence of STRING in the current buffer,
973 starting at position POS and stopping at position LIM,
974 treating STRING as a literal string if RE is false or as
975 a regular expression if RE is true.
977 If N is positive, searching is forward and LIM must be greater than POS.
978 If N is negative, searching is backward and LIM must be less than POS.
980 Returns -x if x occurrences remain to be found (x > 0),
981 or else the position at the beginning of the Nth occurrence
982 (if searching backward) or the end (if searching forward).
984 POSIX is nonzero if we want full backtracking (POSIX style)
985 for this pattern. 0 means backtrack only enough to get a valid match. */
987 #define TRANSLATE(out, trt, d) \
988 do \
990 if (! NILP (trt)) \
992 Lisp_Object temp; \
993 temp = Faref (trt, make_number (d)); \
994 if (INTEGERP (temp)) \
995 out = XINT (temp); \
996 else \
997 out = d; \
999 else \
1000 out = d; \
1002 while (0)
1004 static int
1005 search_buffer (string, pos, pos_byte, lim, lim_byte, n,
1006 RE, trt, inverse_trt, posix)
1007 Lisp_Object string;
1008 int pos;
1009 int pos_byte;
1010 int lim;
1011 int lim_byte;
1012 int n;
1013 int RE;
1014 Lisp_Object trt;
1015 Lisp_Object inverse_trt;
1016 int posix;
1018 int len = XSTRING (string)->size;
1019 int len_byte = STRING_BYTES (XSTRING (string));
1020 register int i;
1022 if (running_asynch_code)
1023 save_search_regs ();
1025 /* Searching 0 times means don't move. */
1026 /* Null string is found at starting position. */
1027 if (len == 0 || n == 0)
1029 set_search_regs (pos, 0);
1030 return pos;
1033 if (RE && !trivial_regexp_p (string))
1035 unsigned char *p1, *p2;
1036 int s1, s2;
1037 struct re_pattern_buffer *bufp;
1039 bufp = compile_pattern (string, &search_regs, trt, posix,
1040 !NILP (current_buffer->enable_multibyte_characters));
1042 immediate_quit = 1; /* Quit immediately if user types ^G,
1043 because letting this function finish
1044 can take too long. */
1045 QUIT; /* Do a pending quit right away,
1046 to avoid paradoxical behavior */
1047 /* Get pointers and sizes of the two strings
1048 that make up the visible portion of the buffer. */
1050 p1 = BEGV_ADDR;
1051 s1 = GPT_BYTE - BEGV_BYTE;
1052 p2 = GAP_END_ADDR;
1053 s2 = ZV_BYTE - GPT_BYTE;
1054 if (s1 < 0)
1056 p2 = p1;
1057 s2 = ZV_BYTE - BEGV_BYTE;
1058 s1 = 0;
1060 if (s2 < 0)
1062 s1 = ZV_BYTE - BEGV_BYTE;
1063 s2 = 0;
1065 re_match_object = Qnil;
1067 while (n < 0)
1069 int val;
1070 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
1071 pos_byte - BEGV_BYTE, lim_byte - pos_byte,
1072 &search_regs,
1073 /* Don't allow match past current point */
1074 pos_byte - BEGV_BYTE);
1075 if (val == -2)
1077 matcher_overflow ();
1079 if (val >= 0)
1081 pos_byte = search_regs.start[0] + BEGV_BYTE;
1082 for (i = 0; i < search_regs.num_regs; i++)
1083 if (search_regs.start[i] >= 0)
1085 search_regs.start[i]
1086 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
1087 search_regs.end[i]
1088 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
1090 XSETBUFFER (last_thing_searched, current_buffer);
1091 /* Set pos to the new position. */
1092 pos = search_regs.start[0];
1094 else
1096 immediate_quit = 0;
1097 return (n);
1099 n++;
1101 while (n > 0)
1103 int val;
1104 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
1105 pos_byte - BEGV_BYTE, lim_byte - pos_byte,
1106 &search_regs,
1107 lim_byte - BEGV_BYTE);
1108 if (val == -2)
1110 matcher_overflow ();
1112 if (val >= 0)
1114 pos_byte = search_regs.end[0] + BEGV_BYTE;
1115 for (i = 0; i < search_regs.num_regs; i++)
1116 if (search_regs.start[i] >= 0)
1118 search_regs.start[i]
1119 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
1120 search_regs.end[i]
1121 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
1123 XSETBUFFER (last_thing_searched, current_buffer);
1124 pos = search_regs.end[0];
1126 else
1128 immediate_quit = 0;
1129 return (0 - n);
1131 n--;
1133 immediate_quit = 0;
1134 return (pos);
1136 else /* non-RE case */
1138 unsigned char *raw_pattern, *pat;
1139 int raw_pattern_size;
1140 int raw_pattern_size_byte;
1141 unsigned char *patbuf;
1142 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
1143 unsigned char *base_pat = XSTRING (string)->data;
1144 int charset_base = -1;
1145 int simple = 1;
1147 /* MULTIBYTE says whether the text to be searched is multibyte.
1148 We must convert PATTERN to match that, or we will not really
1149 find things right. */
1151 if (multibyte == STRING_MULTIBYTE (string))
1153 raw_pattern = (unsigned char *) XSTRING (string)->data;
1154 raw_pattern_size = XSTRING (string)->size;
1155 raw_pattern_size_byte = STRING_BYTES (XSTRING (string));
1157 else if (multibyte)
1159 raw_pattern_size = XSTRING (string)->size;
1160 raw_pattern_size_byte
1161 = count_size_as_multibyte (XSTRING (string)->data,
1162 raw_pattern_size);
1163 raw_pattern = (unsigned char *) alloca (raw_pattern_size_byte + 1);
1164 copy_text (XSTRING (string)->data, raw_pattern,
1165 XSTRING (string)->size, 0, 1);
1167 else
1169 /* Converting multibyte to single-byte.
1171 ??? Perhaps this conversion should be done in a special way
1172 by subtracting nonascii-insert-offset from each non-ASCII char,
1173 so that only the multibyte chars which really correspond to
1174 the chosen single-byte character set can possibly match. */
1175 raw_pattern_size = XSTRING (string)->size;
1176 raw_pattern_size_byte = XSTRING (string)->size;
1177 raw_pattern = (unsigned char *) alloca (raw_pattern_size + 1);
1178 copy_text (XSTRING (string)->data, raw_pattern,
1179 STRING_BYTES (XSTRING (string)), 1, 0);
1182 /* Copy and optionally translate the pattern. */
1183 len = raw_pattern_size;
1184 len_byte = raw_pattern_size_byte;
1185 patbuf = (unsigned char *) alloca (len_byte);
1186 pat = patbuf;
1187 base_pat = raw_pattern;
1188 if (multibyte)
1190 while (--len >= 0)
1192 unsigned char workbuf[4], *str;
1193 int c, translated, inverse;
1194 int in_charlen, charlen;
1196 /* If we got here and the RE flag is set, it's because we're
1197 dealing with a regexp known to be trivial, so the backslash
1198 just quotes the next character. */
1199 if (RE && *base_pat == '\\')
1201 len--;
1202 len_byte--;
1203 base_pat++;
1206 c = STRING_CHAR_AND_LENGTH (base_pat, len_byte, in_charlen);
1207 /* Translate the character, if requested. */
1208 TRANSLATE (translated, trt, c);
1209 /* If translation changed the byte-length, go back
1210 to the original character. */
1211 charlen = CHAR_STRING (translated, workbuf, str);
1212 if (in_charlen != charlen)
1214 translated = c;
1215 charlen = CHAR_STRING (c, workbuf, str);
1218 TRANSLATE (inverse, inverse_trt, c);
1220 /* Did this char actually get translated?
1221 Would any other char get translated into it? */
1222 if (translated != c || inverse != c)
1224 /* Keep track of which character set row
1225 contains the characters that need translation. */
1226 int charset_base_code = c & ~0xff;
1227 if (charset_base == -1)
1228 charset_base = charset_base_code;
1229 else if (charset_base != charset_base_code)
1230 /* If two different rows appear, needing translation,
1231 then we cannot use boyer_moore search. */
1232 simple = 0;
1233 /* ??? Handa: this must do simple = 0
1234 if c is a composite character. */
1237 /* Store this character into the translated pattern. */
1238 bcopy (str, pat, charlen);
1239 pat += charlen;
1240 base_pat += in_charlen;
1241 len_byte -= in_charlen;
1244 else
1246 while (--len >= 0)
1248 int c, translated, inverse;
1250 /* If we got here and the RE flag is set, it's because we're
1251 dealing with a regexp known to be trivial, so the backslash
1252 just quotes the next character. */
1253 if (RE && *base_pat == '\\')
1255 len--;
1256 base_pat++;
1258 c = *base_pat++;
1259 TRANSLATE (translated, trt, c);
1260 TRANSLATE (inverse, inverse_trt, c);
1262 /* Did this char actually get translated?
1263 Would any other char get translated into it? */
1264 if (translated != c || inverse != c)
1266 /* Keep track of which character set row
1267 contains the characters that need translation. */
1268 int charset_base_code = c & ~0xff;
1269 if (charset_base == -1)
1270 charset_base = charset_base_code;
1271 else if (charset_base != charset_base_code)
1272 /* If two different rows appear, needing translation,
1273 then we cannot use boyer_moore search. */
1274 simple = 0;
1276 *pat++ = translated;
1280 len_byte = pat - patbuf;
1281 len = raw_pattern_size;
1282 pat = base_pat = patbuf;
1284 if (simple)
1285 return boyer_moore (n, pat, len, len_byte, trt, inverse_trt,
1286 pos, pos_byte, lim, lim_byte,
1287 charset_base);
1288 else
1289 return simple_search (n, pat, len, len_byte, trt,
1290 pos, pos_byte, lim, lim_byte);
1294 /* Do a simple string search N times for the string PAT,
1295 whose length is LEN/LEN_BYTE,
1296 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1297 TRT is the translation table.
1299 Return the character position where the match is found.
1300 Otherwise, if M matches remained to be found, return -M.
1302 This kind of search works regardless of what is in PAT and
1303 regardless of what is in TRT. It is used in cases where
1304 boyer_moore cannot work. */
1306 static int
1307 simple_search (n, pat, len, len_byte, trt, pos, pos_byte, lim, lim_byte)
1308 int n;
1309 unsigned char *pat;
1310 int len, len_byte;
1311 Lisp_Object trt;
1312 int pos, pos_byte;
1313 int lim, lim_byte;
1315 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
1316 int forward = n > 0;
1318 if (lim > pos && multibyte)
1319 while (n > 0)
1321 while (1)
1323 /* Try matching at position POS. */
1324 int this_pos = pos;
1325 int this_pos_byte = pos_byte;
1326 int this_len = len;
1327 int this_len_byte = len_byte;
1328 unsigned char *p = pat;
1329 if (pos + len > lim)
1330 goto stop;
1332 while (this_len > 0)
1334 int charlen, buf_charlen;
1335 int pat_ch, buf_ch;
1337 pat_ch = STRING_CHAR_AND_LENGTH (p, this_len_byte, charlen);
1338 buf_ch = STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte),
1339 ZV_BYTE - this_pos_byte,
1340 buf_charlen);
1341 TRANSLATE (buf_ch, trt, buf_ch);
1343 if (buf_ch != pat_ch)
1344 break;
1346 this_len_byte -= charlen;
1347 this_len--;
1348 p += charlen;
1350 this_pos_byte += buf_charlen;
1351 this_pos++;
1354 if (this_len == 0)
1356 pos += len;
1357 pos_byte += len_byte;
1358 break;
1361 INC_BOTH (pos, pos_byte);
1364 n--;
1366 else if (lim > pos)
1367 while (n > 0)
1369 while (1)
1371 /* Try matching at position POS. */
1372 int this_pos = pos;
1373 int this_len = len;
1374 unsigned char *p = pat;
1376 if (pos + len > lim)
1377 goto stop;
1379 while (this_len > 0)
1381 int pat_ch = *p++;
1382 int buf_ch = FETCH_BYTE (this_pos);
1383 TRANSLATE (buf_ch, trt, buf_ch);
1385 if (buf_ch != pat_ch)
1386 break;
1388 this_len--;
1389 this_pos++;
1392 if (this_len == 0)
1394 pos += len;
1395 break;
1398 pos++;
1401 n--;
1403 /* Backwards search. */
1404 else if (lim < pos && multibyte)
1405 while (n < 0)
1407 while (1)
1409 /* Try matching at position POS. */
1410 int this_pos = pos - len;
1411 int this_pos_byte = pos_byte - len_byte;
1412 int this_len = len;
1413 int this_len_byte = len_byte;
1414 unsigned char *p = pat;
1416 if (pos - len < lim)
1417 goto stop;
1419 while (this_len > 0)
1421 int charlen, buf_charlen;
1422 int pat_ch, buf_ch;
1424 pat_ch = STRING_CHAR_AND_LENGTH (p, this_len_byte, charlen);
1425 buf_ch = STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte),
1426 ZV_BYTE - this_pos_byte,
1427 buf_charlen);
1428 TRANSLATE (buf_ch, trt, buf_ch);
1430 if (buf_ch != pat_ch)
1431 break;
1433 this_len_byte -= charlen;
1434 this_len--;
1435 p += charlen;
1436 this_pos_byte += buf_charlen;
1437 this_pos++;
1440 if (this_len == 0)
1442 pos -= len;
1443 pos_byte -= len_byte;
1444 break;
1447 DEC_BOTH (pos, pos_byte);
1450 n++;
1452 else if (lim < pos)
1453 while (n < 0)
1455 while (1)
1457 /* Try matching at position POS. */
1458 int this_pos = pos - len;
1459 int this_len = len;
1460 unsigned char *p = pat;
1462 if (pos - len < lim)
1463 goto stop;
1465 while (this_len > 0)
1467 int pat_ch = *p++;
1468 int buf_ch = FETCH_BYTE (this_pos);
1469 TRANSLATE (buf_ch, trt, buf_ch);
1471 if (buf_ch != pat_ch)
1472 break;
1473 this_len--;
1474 this_pos++;
1477 if (this_len == 0)
1479 pos -= len;
1480 break;
1483 pos--;
1486 n++;
1489 stop:
1490 if (n == 0)
1492 if (forward)
1493 set_search_regs ((multibyte ? pos_byte : pos) - len_byte, len_byte);
1494 else
1495 set_search_regs (multibyte ? pos_byte : pos, len_byte);
1497 return pos;
1499 else if (n > 0)
1500 return -n;
1501 else
1502 return n;
1505 /* Do Boyer-Moore search N times for the string PAT,
1506 whose length is LEN/LEN_BYTE,
1507 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1508 DIRECTION says which direction we search in.
1509 TRT and INVERSE_TRT are translation tables.
1511 This kind of search works if all the characters in PAT that have
1512 nontrivial translation are the same aside from the last byte. This
1513 makes it possible to translate just the last byte of a character,
1514 and do so after just a simple test of the context.
1516 If that criterion is not satisfied, do not call this function. */
1518 static int
1519 boyer_moore (n, base_pat, len, len_byte, trt, inverse_trt,
1520 pos, pos_byte, lim, lim_byte, charset_base)
1521 int n;
1522 unsigned char *base_pat;
1523 int len, len_byte;
1524 Lisp_Object trt;
1525 Lisp_Object inverse_trt;
1526 int pos, pos_byte;
1527 int lim, lim_byte;
1528 int charset_base;
1530 int direction = ((n > 0) ? 1 : -1);
1531 register int dirlen;
1532 int infinity, limit, k, stride_for_teases;
1533 register int *BM_tab;
1534 int *BM_tab_base;
1535 register unsigned char *cursor, *p_limit;
1536 register int i, j;
1537 unsigned char *pat, *pat_end;
1538 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
1540 unsigned char simple_translate[0400];
1541 int translate_prev_byte;
1542 int translate_anteprev_byte;
1544 #ifdef C_ALLOCA
1545 int BM_tab_space[0400];
1546 BM_tab = &BM_tab_space[0];
1547 #else
1548 BM_tab = (int *) alloca (0400 * sizeof (int));
1549 #endif
1550 /* The general approach is that we are going to maintain that we know */
1551 /* the first (closest to the present position, in whatever direction */
1552 /* we're searching) character that could possibly be the last */
1553 /* (furthest from present position) character of a valid match. We */
1554 /* advance the state of our knowledge by looking at that character */
1555 /* and seeing whether it indeed matches the last character of the */
1556 /* pattern. If it does, we take a closer look. If it does not, we */
1557 /* move our pointer (to putative last characters) as far as is */
1558 /* logically possible. This amount of movement, which I call a */
1559 /* stride, will be the length of the pattern if the actual character */
1560 /* appears nowhere in the pattern, otherwise it will be the distance */
1561 /* from the last occurrence of that character to the end of the */
1562 /* pattern. */
1563 /* As a coding trick, an enormous stride is coded into the table for */
1564 /* characters that match the last character. This allows use of only */
1565 /* a single test, a test for having gone past the end of the */
1566 /* permissible match region, to test for both possible matches (when */
1567 /* the stride goes past the end immediately) and failure to */
1568 /* match (where you get nudged past the end one stride at a time). */
1570 /* Here we make a "mickey mouse" BM table. The stride of the search */
1571 /* is determined only by the last character of the putative match. */
1572 /* If that character does not match, we will stride the proper */
1573 /* distance to propose a match that superimposes it on the last */
1574 /* instance of a character that matches it (per trt), or misses */
1575 /* it entirely if there is none. */
1577 dirlen = len_byte * direction;
1578 infinity = dirlen - (lim_byte + pos_byte + len_byte + len_byte) * direction;
1580 /* Record position after the end of the pattern. */
1581 pat_end = base_pat + len_byte;
1582 /* BASE_PAT points to a character that we start scanning from.
1583 It is the first character in a forward search,
1584 the last character in a backward search. */
1585 if (direction < 0)
1586 base_pat = pat_end - 1;
1588 BM_tab_base = BM_tab;
1589 BM_tab += 0400;
1590 j = dirlen; /* to get it in a register */
1591 /* A character that does not appear in the pattern induces a */
1592 /* stride equal to the pattern length. */
1593 while (BM_tab_base != BM_tab)
1595 *--BM_tab = j;
1596 *--BM_tab = j;
1597 *--BM_tab = j;
1598 *--BM_tab = j;
1601 /* We use this for translation, instead of TRT itself.
1602 We fill this in to handle the characters that actually
1603 occur in the pattern. Others don't matter anyway! */
1604 bzero (simple_translate, sizeof simple_translate);
1605 for (i = 0; i < 0400; i++)
1606 simple_translate[i] = i;
1608 i = 0;
1609 while (i != infinity)
1611 unsigned char *ptr = base_pat + i;
1612 i += direction;
1613 if (i == dirlen)
1614 i = infinity;
1615 if (! NILP (trt))
1617 int ch;
1618 int untranslated;
1619 int this_translated = 1;
1621 if (multibyte
1622 /* Is *PTR the last byte of a character? */
1623 && (pat_end - ptr == 1 || CHAR_HEAD_P (ptr[1])))
1625 unsigned char *charstart = ptr;
1626 while (! CHAR_HEAD_P (*charstart))
1627 charstart--;
1628 untranslated = STRING_CHAR (charstart, ptr - charstart + 1);
1629 if (charset_base == (untranslated & ~0xff))
1631 TRANSLATE (ch, trt, untranslated);
1632 if (! CHAR_HEAD_P (*ptr))
1634 translate_prev_byte = ptr[-1];
1635 if (! CHAR_HEAD_P (translate_prev_byte))
1636 translate_anteprev_byte = ptr[-2];
1639 else
1641 this_translated = 0;
1642 ch = *ptr;
1645 else if (!multibyte)
1646 TRANSLATE (ch, trt, *ptr);
1647 else
1649 ch = *ptr;
1650 this_translated = 0;
1653 if (ch > 0400)
1654 j = ((unsigned char) ch) | 0200;
1655 else
1656 j = (unsigned char) ch;
1658 if (i == infinity)
1659 stride_for_teases = BM_tab[j];
1661 BM_tab[j] = dirlen - i;
1662 /* A translation table is accompanied by its inverse -- see */
1663 /* comment following downcase_table for details */
1664 if (this_translated)
1666 int starting_ch = ch;
1667 int starting_j = j;
1668 while (1)
1670 TRANSLATE (ch, inverse_trt, ch);
1671 if (ch > 0400)
1672 j = ((unsigned char) ch) | 0200;
1673 else
1674 j = (unsigned char) ch;
1676 /* For all the characters that map into CH,
1677 set up simple_translate to map the last byte
1678 into STARTING_J. */
1679 simple_translate[j] = starting_j;
1680 if (ch == starting_ch)
1681 break;
1682 BM_tab[j] = dirlen - i;
1686 else
1688 j = *ptr;
1690 if (i == infinity)
1691 stride_for_teases = BM_tab[j];
1692 BM_tab[j] = dirlen - i;
1694 /* stride_for_teases tells how much to stride if we get a */
1695 /* match on the far character but are subsequently */
1696 /* disappointed, by recording what the stride would have been */
1697 /* for that character if the last character had been */
1698 /* different. */
1700 infinity = dirlen - infinity;
1701 pos_byte += dirlen - ((direction > 0) ? direction : 0);
1702 /* loop invariant - POS_BYTE points at where last char (first
1703 char if reverse) of pattern would align in a possible match. */
1704 while (n != 0)
1706 int tail_end;
1707 unsigned char *tail_end_ptr;
1709 /* It's been reported that some (broken) compiler thinks that
1710 Boolean expressions in an arithmetic context are unsigned.
1711 Using an explicit ?1:0 prevents this. */
1712 if ((lim_byte - pos_byte - ((direction > 0) ? 1 : 0)) * direction
1713 < 0)
1714 return (n * (0 - direction));
1715 /* First we do the part we can by pointers (maybe nothing) */
1716 QUIT;
1717 pat = base_pat;
1718 limit = pos_byte - dirlen + direction;
1719 if (direction > 0)
1721 limit = BUFFER_CEILING_OF (limit);
1722 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1723 can take on without hitting edge of buffer or the gap. */
1724 limit = min (limit, pos_byte + 20000);
1725 limit = min (limit, lim_byte - 1);
1727 else
1729 limit = BUFFER_FLOOR_OF (limit);
1730 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1731 can take on without hitting edge of buffer or the gap. */
1732 limit = max (limit, pos_byte - 20000);
1733 limit = max (limit, lim_byte);
1735 tail_end = BUFFER_CEILING_OF (pos_byte) + 1;
1736 tail_end_ptr = BYTE_POS_ADDR (tail_end);
1738 if ((limit - pos_byte) * direction > 20)
1740 unsigned char *p2;
1742 p_limit = BYTE_POS_ADDR (limit);
1743 p2 = (cursor = BYTE_POS_ADDR (pos_byte));
1744 /* In this loop, pos + cursor - p2 is the surrogate for pos */
1745 while (1) /* use one cursor setting as long as i can */
1747 if (direction > 0) /* worth duplicating */
1749 /* Use signed comparison if appropriate
1750 to make cursor+infinity sure to be > p_limit.
1751 Assuming that the buffer lies in a range of addresses
1752 that are all "positive" (as ints) or all "negative",
1753 either kind of comparison will work as long
1754 as we don't step by infinity. So pick the kind
1755 that works when we do step by infinity. */
1756 if ((EMACS_INT) (p_limit + infinity) > (EMACS_INT) p_limit)
1757 while ((EMACS_INT) cursor <= (EMACS_INT) p_limit)
1758 cursor += BM_tab[*cursor];
1759 else
1760 while ((EMACS_UINT) cursor <= (EMACS_UINT) p_limit)
1761 cursor += BM_tab[*cursor];
1763 else
1765 if ((EMACS_INT) (p_limit + infinity) < (EMACS_INT) p_limit)
1766 while ((EMACS_INT) cursor >= (EMACS_INT) p_limit)
1767 cursor += BM_tab[*cursor];
1768 else
1769 while ((EMACS_UINT) cursor >= (EMACS_UINT) p_limit)
1770 cursor += BM_tab[*cursor];
1772 /* If you are here, cursor is beyond the end of the searched region. */
1773 /* This can happen if you match on the far character of the pattern, */
1774 /* because the "stride" of that character is infinity, a number able */
1775 /* to throw you well beyond the end of the search. It can also */
1776 /* happen if you fail to match within the permitted region and would */
1777 /* otherwise try a character beyond that region */
1778 if ((cursor - p_limit) * direction <= len_byte)
1779 break; /* a small overrun is genuine */
1780 cursor -= infinity; /* large overrun = hit */
1781 i = dirlen - direction;
1782 if (! NILP (trt))
1784 while ((i -= direction) + direction != 0)
1786 int ch;
1787 cursor -= direction;
1788 /* Translate only the last byte of a character. */
1789 if (! multibyte
1790 || ((cursor == tail_end_ptr
1791 || CHAR_HEAD_P (cursor[1]))
1792 && (CHAR_HEAD_P (cursor[0])
1793 || (translate_prev_byte == cursor[-1]
1794 && (CHAR_HEAD_P (translate_prev_byte)
1795 || translate_anteprev_byte == cursor[-2])))))
1796 ch = simple_translate[*cursor];
1797 else
1798 ch = *cursor;
1799 if (pat[i] != ch)
1800 break;
1803 else
1805 while ((i -= direction) + direction != 0)
1807 cursor -= direction;
1808 if (pat[i] != *cursor)
1809 break;
1812 cursor += dirlen - i - direction; /* fix cursor */
1813 if (i + direction == 0)
1815 int position;
1817 cursor -= direction;
1819 position = pos_byte + cursor - p2 + ((direction > 0)
1820 ? 1 - len_byte : 0);
1821 set_search_regs (position, len_byte);
1823 if ((n -= direction) != 0)
1824 cursor += dirlen; /* to resume search */
1825 else
1826 return ((direction > 0)
1827 ? search_regs.end[0] : search_regs.start[0]);
1829 else
1830 cursor += stride_for_teases; /* <sigh> we lose - */
1832 pos_byte += cursor - p2;
1834 else
1835 /* Now we'll pick up a clump that has to be done the hard */
1836 /* way because it covers a discontinuity */
1838 limit = ((direction > 0)
1839 ? BUFFER_CEILING_OF (pos_byte - dirlen + 1)
1840 : BUFFER_FLOOR_OF (pos_byte - dirlen - 1));
1841 limit = ((direction > 0)
1842 ? min (limit + len_byte, lim_byte - 1)
1843 : max (limit - len_byte, lim_byte));
1844 /* LIMIT is now the last value POS_BYTE can have
1845 and still be valid for a possible match. */
1846 while (1)
1848 /* This loop can be coded for space rather than */
1849 /* speed because it will usually run only once. */
1850 /* (the reach is at most len + 21, and typically */
1851 /* does not exceed len) */
1852 while ((limit - pos_byte) * direction >= 0)
1853 pos_byte += BM_tab[FETCH_BYTE (pos_byte)];
1854 /* now run the same tests to distinguish going off the */
1855 /* end, a match or a phony match. */
1856 if ((pos_byte - limit) * direction <= len_byte)
1857 break; /* ran off the end */
1858 /* Found what might be a match.
1859 Set POS_BYTE back to last (first if reverse) pos. */
1860 pos_byte -= infinity;
1861 i = dirlen - direction;
1862 while ((i -= direction) + direction != 0)
1864 int ch;
1865 unsigned char *ptr;
1866 pos_byte -= direction;
1867 ptr = BYTE_POS_ADDR (pos_byte);
1868 /* Translate only the last byte of a character. */
1869 if (! multibyte
1870 || ((ptr == tail_end_ptr
1871 || CHAR_HEAD_P (ptr[1]))
1872 && (CHAR_HEAD_P (ptr[0])
1873 || (translate_prev_byte == ptr[-1]
1874 && (CHAR_HEAD_P (translate_prev_byte)
1875 || translate_anteprev_byte == ptr[-2])))))
1876 ch = simple_translate[*ptr];
1877 else
1878 ch = *ptr;
1879 if (pat[i] != ch)
1880 break;
1882 /* Above loop has moved POS_BYTE part or all the way
1883 back to the first pos (last pos if reverse).
1884 Set it once again at the last (first if reverse) char. */
1885 pos_byte += dirlen - i- direction;
1886 if (i + direction == 0)
1888 int position;
1889 pos_byte -= direction;
1891 position = pos_byte + ((direction > 0) ? 1 - len_byte : 0);
1893 set_search_regs (position, len_byte);
1895 if ((n -= direction) != 0)
1896 pos_byte += dirlen; /* to resume search */
1897 else
1898 return ((direction > 0)
1899 ? search_regs.end[0] : search_regs.start[0]);
1901 else
1902 pos_byte += stride_for_teases;
1905 /* We have done one clump. Can we continue? */
1906 if ((lim_byte - pos_byte) * direction < 0)
1907 return ((0 - n) * direction);
1909 return BYTE_TO_CHAR (pos_byte);
1912 /* Record beginning BEG_BYTE and end BEG_BYTE + NBYTES
1913 for the overall match just found in the current buffer.
1914 Also clear out the match data for registers 1 and up. */
1916 static void
1917 set_search_regs (beg_byte, nbytes)
1918 int beg_byte, nbytes;
1920 int i;
1922 /* Make sure we have registers in which to store
1923 the match position. */
1924 if (search_regs.num_regs == 0)
1926 search_regs.start = (regoff_t *) xmalloc (2 * sizeof (regoff_t));
1927 search_regs.end = (regoff_t *) xmalloc (2 * sizeof (regoff_t));
1928 search_regs.num_regs = 2;
1931 /* Clear out the other registers. */
1932 for (i = 1; i < search_regs.num_regs; i++)
1934 search_regs.start[i] = -1;
1935 search_regs.end[i] = -1;
1938 search_regs.start[0] = BYTE_TO_CHAR (beg_byte);
1939 search_regs.end[0] = BYTE_TO_CHAR (beg_byte + nbytes);
1940 XSETBUFFER (last_thing_searched, current_buffer);
1943 /* Given a string of words separated by word delimiters,
1944 compute a regexp that matches those exact words
1945 separated by arbitrary punctuation. */
1947 static Lisp_Object
1948 wordify (string)
1949 Lisp_Object string;
1951 register unsigned char *p, *o;
1952 register int i, i_byte, len, punct_count = 0, word_count = 0;
1953 Lisp_Object val;
1954 int prev_c = 0;
1955 int adjust;
1957 CHECK_STRING (string, 0);
1958 p = XSTRING (string)->data;
1959 len = XSTRING (string)->size;
1961 for (i = 0, i_byte = 0; i < len; )
1963 int c;
1965 if (STRING_MULTIBYTE (string))
1966 FETCH_STRING_CHAR_ADVANCE (c, string, i, i_byte);
1967 else
1968 c = XSTRING (string)->data[i++];
1970 if (SYNTAX (c) != Sword)
1972 punct_count++;
1973 if (i > 0 && SYNTAX (prev_c) == Sword)
1974 word_count++;
1977 prev_c = c;
1980 if (SYNTAX (prev_c) == Sword)
1981 word_count++;
1982 if (!word_count)
1983 return build_string ("");
1985 adjust = - punct_count + 5 * (word_count - 1) + 4;
1986 val = make_uninit_multibyte_string (len + adjust,
1987 STRING_BYTES (XSTRING (string)) + adjust);
1989 o = XSTRING (val)->data;
1990 *o++ = '\\';
1991 *o++ = 'b';
1992 prev_c = 0;
1994 for (i = 0, i_byte = 0; i < len; )
1996 int c;
1997 int i_byte_orig = i_byte;
1999 if (STRING_MULTIBYTE (string))
2000 FETCH_STRING_CHAR_ADVANCE (c, string, i, i_byte);
2001 else
2002 c = XSTRING (string)->data[i++];
2004 if (SYNTAX (c) == Sword)
2006 bcopy (&XSTRING (string)->data[i_byte_orig], o,
2007 i_byte - i_byte_orig);
2008 o += i_byte - i_byte_orig;
2010 else if (i > 0 && SYNTAX (prev_c) == Sword && --word_count)
2012 *o++ = '\\';
2013 *o++ = 'W';
2014 *o++ = '\\';
2015 *o++ = 'W';
2016 *o++ = '*';
2019 prev_c = c;
2022 *o++ = '\\';
2023 *o++ = 'b';
2025 return val;
2028 DEFUN ("search-backward", Fsearch_backward, Ssearch_backward, 1, 4,
2029 "MSearch backward: ",
2030 "Search backward from point for STRING.\n\
2031 Set point to the beginning of the occurrence found, and return point.\n\
2032 An optional second argument bounds the search; it is a buffer position.\n\
2033 The match found must not extend before that position.\n\
2034 Optional third argument, if t, means if fail just return nil (no error).\n\
2035 If not nil and not t, position at limit of search and return nil.\n\
2036 Optional fourth argument is repeat count--search for successive occurrences.\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\
2049 to (point-max).\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\
2053 See also the functions `match-beginning', `match-end' and `replace-match'.")
2054 (string, bound, noerror, count)
2055 Lisp_Object string, bound, noerror, count;
2057 return search_command (string, bound, noerror, count, 1, 0, 0);
2060 DEFUN ("word-search-backward", Fword_search_backward, Sword_search_backward, 1, 4,
2061 "sWord search backward: ",
2062 "Search backward from point for STRING, ignoring differences in punctuation.\n\
2063 Set point to the beginning of the occurrence found, and return point.\n\
2064 An optional second argument bounds the search; it is a buffer position.\n\
2065 The match found must not extend before that position.\n\
2066 Optional third argument, if t, means if fail just return nil (no error).\n\
2067 If not nil and not t, move to limit of search and return nil.\n\
2068 Optional fourth argument is repeat count--search for successive occurrences.")
2069 (string, bound, noerror, count)
2070 Lisp_Object string, bound, noerror, count;
2072 return search_command (wordify (string), bound, noerror, count, -1, 1, 0);
2075 DEFUN ("word-search-forward", Fword_search_forward, Sword_search_forward, 1, 4,
2076 "sWord search: ",
2077 "Search forward from point for STRING, ignoring differences in punctuation.\n\
2078 Set point to the end of the occurrence found, and return point.\n\
2079 An optional second argument bounds the search; it is a buffer position.\n\
2080 The match found must not extend after that position.\n\
2081 Optional third argument, if t, means if fail just return nil (no error).\n\
2082 If not nil and not t, move to limit of search and return nil.\n\
2083 Optional fourth argument is repeat count--search for successive occurrences.")
2084 (string, bound, noerror, count)
2085 Lisp_Object string, bound, noerror, count;
2087 return search_command (wordify (string), bound, noerror, count, 1, 1, 0);
2090 DEFUN ("re-search-backward", Fre_search_backward, Sre_search_backward, 1, 4,
2091 "sRE search backward: ",
2092 "Search backward from point for match for regular expression REGEXP.\n\
2093 Set point to the beginning of the match, and return point.\n\
2094 The match found is the one starting last in the buffer\n\
2095 and yet ending before the origin of the search.\n\
2096 An optional second argument bounds the search; it is a buffer position.\n\
2097 The match found must start at or after that position.\n\
2098 Optional third argument, if t, means if fail just return nil (no error).\n\
2099 If not nil and not t, move to limit of search and return nil.\n\
2100 Optional fourth argument is repeat count--search for successive occurrences.\n\
2101 See also the functions `match-beginning', `match-end' and `replace-match'.")
2102 (regexp, bound, noerror, count)
2103 Lisp_Object regexp, bound, noerror, count;
2105 return search_command (regexp, bound, noerror, count, -1, 1, 0);
2108 DEFUN ("re-search-forward", Fre_search_forward, Sre_search_forward, 1, 4,
2109 "sRE search: ",
2110 "Search forward from point for regular expression REGEXP.\n\
2111 Set point to the end of the occurrence found, and return point.\n\
2112 An optional second argument bounds the search; it is a buffer position.\n\
2113 The match found must not extend after that position.\n\
2114 Optional third argument, if t, means if fail just return nil (no error).\n\
2115 If not nil and not t, move to limit of search and return nil.\n\
2116 Optional fourth argument is repeat count--search for successive occurrences.\n\
2117 See also the functions `match-beginning', `match-end' and `replace-match'.")
2118 (regexp, bound, noerror, count)
2119 Lisp_Object regexp, bound, noerror, count;
2121 return search_command (regexp, bound, noerror, count, 1, 1, 0);
2124 DEFUN ("posix-search-backward", Fposix_search_backward, Sposix_search_backward, 1, 4,
2125 "sPosix search backward: ",
2126 "Search backward from point for match for regular expression REGEXP.\n\
2127 Find the longest match in accord with Posix regular expression rules.\n\
2128 Set point to the beginning of the match, and return point.\n\
2129 The match found is the one starting last in the buffer\n\
2130 and yet ending before the origin of the search.\n\
2131 An optional second argument bounds the search; it is a buffer position.\n\
2132 The match found must start at or after that position.\n\
2133 Optional third argument, if t, means if fail just return nil (no error).\n\
2134 If not nil and not t, move to limit of search and return nil.\n\
2135 Optional fourth argument is repeat count--search for successive occurrences.\n\
2136 See also the functions `match-beginning', `match-end' and `replace-match'.")
2137 (regexp, bound, noerror, count)
2138 Lisp_Object regexp, bound, noerror, count;
2140 return search_command (regexp, bound, noerror, count, -1, 1, 1);
2143 DEFUN ("posix-search-forward", Fposix_search_forward, Sposix_search_forward, 1, 4,
2144 "sPosix search: ",
2145 "Search forward from point for regular expression REGEXP.\n\
2146 Find the longest match in accord with Posix regular expression rules.\n\
2147 Set point to the end of the occurrence found, and return point.\n\
2148 An optional second argument bounds the search; it is a buffer position.\n\
2149 The match found must not extend after that position.\n\
2150 Optional third argument, if t, means if fail just return nil (no error).\n\
2151 If not nil and not t, move to limit of search and return nil.\n\
2152 Optional fourth argument is repeat count--search for successive occurrences.\n\
2153 See also the functions `match-beginning', `match-end' and `replace-match'.")
2154 (regexp, bound, noerror, count)
2155 Lisp_Object regexp, bound, noerror, count;
2157 return search_command (regexp, bound, noerror, count, 1, 1, 1);
2160 DEFUN ("replace-match", Freplace_match, Sreplace_match, 1, 5, 0,
2161 "Replace text matched by last search with NEWTEXT.\n\
2162 If second arg FIXEDCASE is non-nil, do not alter case of replacement text.\n\
2163 Otherwise maybe capitalize the whole text, or maybe just word initials,\n\
2164 based on the replaced text.\n\
2165 If the replaced text has only capital letters\n\
2166 and has at least one multiletter word, convert NEWTEXT to all caps.\n\
2167 If the replaced text has at least one word starting with a capital letter,\n\
2168 then capitalize each word in NEWTEXT.\n\n\
2169 If third arg LITERAL is non-nil, insert NEWTEXT literally.\n\
2170 Otherwise treat `\\' as special:\n\
2171 `\\&' in NEWTEXT means substitute original matched text.\n\
2172 `\\N' means substitute what matched the Nth `\\(...\\)'.\n\
2173 If Nth parens didn't match, substitute nothing.\n\
2174 `\\\\' means insert one `\\'.\n\
2175 FIXEDCASE and LITERAL are optional arguments.\n\
2176 Leaves point at end of replacement text.\n\
2178 The optional fourth argument STRING can be a string to modify.\n\
2179 In that case, this function creates and returns a new string\n\
2180 which is made by replacing the part of STRING that was matched.\n\
2182 The optional fifth argument SUBEXP specifies a subexpression of the match.\n\
2183 It says to replace just that subexpression instead of the whole match.\n\
2184 This is useful only after a regular expression search or match\n\
2185 since only regular expressions have distinguished subexpressions.")
2186 (newtext, fixedcase, literal, string, subexp)
2187 Lisp_Object newtext, fixedcase, literal, string, subexp;
2189 enum { nochange, all_caps, cap_initial } case_action;
2190 register int pos, last;
2191 int some_multiletter_word;
2192 int some_lowercase;
2193 int some_uppercase;
2194 int some_nonuppercase_initial;
2195 register int c, prevc;
2196 int inslen;
2197 int sub;
2198 int opoint, newpoint;
2200 CHECK_STRING (newtext, 0);
2202 if (! NILP (string))
2203 CHECK_STRING (string, 4);
2205 case_action = nochange; /* We tried an initialization */
2206 /* but some C compilers blew it */
2208 if (search_regs.num_regs <= 0)
2209 error ("replace-match called before any match found");
2211 if (NILP (subexp))
2212 sub = 0;
2213 else
2215 CHECK_NUMBER (subexp, 3);
2216 sub = XINT (subexp);
2217 if (sub < 0 || sub >= search_regs.num_regs)
2218 args_out_of_range (subexp, make_number (search_regs.num_regs));
2221 if (NILP (string))
2223 if (search_regs.start[sub] < BEGV
2224 || search_regs.start[sub] > search_regs.end[sub]
2225 || search_regs.end[sub] > ZV)
2226 args_out_of_range (make_number (search_regs.start[sub]),
2227 make_number (search_regs.end[sub]));
2229 else
2231 if (search_regs.start[sub] < 0
2232 || search_regs.start[sub] > search_regs.end[sub]
2233 || search_regs.end[sub] > XSTRING (string)->size)
2234 args_out_of_range (make_number (search_regs.start[sub]),
2235 make_number (search_regs.end[sub]));
2238 if (NILP (fixedcase))
2240 int beg;
2241 /* Decide how to casify by examining the matched text. */
2243 if (NILP (string))
2244 last = CHAR_TO_BYTE (search_regs.end[sub]);
2245 else
2246 last = search_regs.end[sub];
2248 if (NILP (string))
2249 beg = CHAR_TO_BYTE (search_regs.start[sub]);
2250 else
2251 beg = search_regs.start[sub];
2253 prevc = '\n';
2254 case_action = all_caps;
2256 /* some_multiletter_word is set nonzero if any original word
2257 is more than one letter long. */
2258 some_multiletter_word = 0;
2259 some_lowercase = 0;
2260 some_nonuppercase_initial = 0;
2261 some_uppercase = 0;
2263 for (pos = beg; pos < last; pos++)
2265 if (NILP (string))
2266 c = FETCH_BYTE (pos);
2267 else
2268 c = XSTRING (string)->data[pos];
2270 if (LOWERCASEP (c))
2272 /* Cannot be all caps if any original char is lower case */
2274 some_lowercase = 1;
2275 if (SYNTAX (prevc) != Sword)
2276 some_nonuppercase_initial = 1;
2277 else
2278 some_multiletter_word = 1;
2280 else if (!NOCASEP (c))
2282 some_uppercase = 1;
2283 if (SYNTAX (prevc) != Sword)
2285 else
2286 some_multiletter_word = 1;
2288 else
2290 /* If the initial is a caseless word constituent,
2291 treat that like a lowercase initial. */
2292 if (SYNTAX (prevc) != Sword)
2293 some_nonuppercase_initial = 1;
2296 prevc = c;
2299 /* Convert to all caps if the old text is all caps
2300 and has at least one multiletter word. */
2301 if (! some_lowercase && some_multiletter_word)
2302 case_action = all_caps;
2303 /* Capitalize each word, if the old text has all capitalized words. */
2304 else if (!some_nonuppercase_initial && some_multiletter_word)
2305 case_action = cap_initial;
2306 else if (!some_nonuppercase_initial && some_uppercase)
2307 /* Should x -> yz, operating on X, give Yz or YZ?
2308 We'll assume the latter. */
2309 case_action = all_caps;
2310 else
2311 case_action = nochange;
2314 /* Do replacement in a string. */
2315 if (!NILP (string))
2317 Lisp_Object before, after;
2319 before = Fsubstring (string, make_number (0),
2320 make_number (search_regs.start[sub]));
2321 after = Fsubstring (string, make_number (search_regs.end[sub]), Qnil);
2323 /* Substitute parts of the match into NEWTEXT
2324 if desired. */
2325 if (NILP (literal))
2327 int lastpos = 0;
2328 int lastpos_byte = 0;
2329 /* We build up the substituted string in ACCUM. */
2330 Lisp_Object accum;
2331 Lisp_Object middle;
2332 int pos_byte;
2334 accum = Qnil;
2336 for (pos_byte = 0, pos = 0; pos_byte < STRING_BYTES (XSTRING (newtext));)
2338 int substart = -1;
2339 int subend;
2340 int delbackslash = 0;
2342 FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte);
2344 if (c == '\\')
2346 FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte);
2347 if (c == '&')
2349 substart = search_regs.start[sub];
2350 subend = search_regs.end[sub];
2352 else if (c >= '1' && c <= '9' && c <= search_regs.num_regs + '0')
2354 if (search_regs.start[c - '0'] >= 0)
2356 substart = search_regs.start[c - '0'];
2357 subend = search_regs.end[c - '0'];
2360 else if (c == '\\')
2361 delbackslash = 1;
2362 else
2363 error ("Invalid use of `\\' in replacement text");
2365 if (substart >= 0)
2367 if (pos - 2 != lastpos)
2368 middle = substring_both (newtext, lastpos,
2369 lastpos_byte,
2370 pos - 2, pos_byte - 2);
2371 else
2372 middle = Qnil;
2373 accum = concat3 (accum, middle,
2374 Fsubstring (string,
2375 make_number (substart),
2376 make_number (subend)));
2377 lastpos = pos;
2378 lastpos_byte = pos_byte;
2380 else if (delbackslash)
2382 middle = substring_both (newtext, lastpos,
2383 lastpos_byte,
2384 pos - 1, pos_byte - 1);
2386 accum = concat2 (accum, middle);
2387 lastpos = pos;
2388 lastpos_byte = pos_byte;
2392 if (pos != lastpos)
2393 middle = substring_both (newtext, lastpos,
2394 lastpos_byte,
2395 pos, pos_byte);
2396 else
2397 middle = Qnil;
2399 newtext = concat2 (accum, middle);
2402 /* Do case substitution in NEWTEXT if desired. */
2403 if (case_action == all_caps)
2404 newtext = Fupcase (newtext);
2405 else if (case_action == cap_initial)
2406 newtext = Fupcase_initials (newtext);
2408 return concat3 (before, newtext, after);
2411 /* Record point, the move (quietly) to the start of the match. */
2412 if (PT > search_regs.start[sub])
2413 opoint = PT - ZV;
2414 else
2415 opoint = PT;
2417 TEMP_SET_PT (search_regs.start[sub]);
2419 /* We insert the replacement text before the old text, and then
2420 delete the original text. This means that markers at the
2421 beginning or end of the original will float to the corresponding
2422 position in the replacement. */
2423 if (!NILP (literal))
2424 Finsert_and_inherit (1, &newtext);
2425 else
2427 struct gcpro gcpro1;
2428 GCPRO1 (newtext);
2430 for (pos = 0; pos < XSTRING (newtext)->size; pos++)
2432 int offset = PT - search_regs.start[sub];
2434 c = XSTRING (newtext)->data[pos];
2435 if (c == '\\')
2437 c = XSTRING (newtext)->data[++pos];
2438 if (c == '&')
2439 Finsert_buffer_substring
2440 (Fcurrent_buffer (),
2441 make_number (search_regs.start[sub] + offset),
2442 make_number (search_regs.end[sub] + offset));
2443 else if (c >= '1' && c <= '9' && c <= search_regs.num_regs + '0')
2445 if (search_regs.start[c - '0'] >= 1)
2446 Finsert_buffer_substring
2447 (Fcurrent_buffer (),
2448 make_number (search_regs.start[c - '0'] + offset),
2449 make_number (search_regs.end[c - '0'] + offset));
2451 else if (c == '\\')
2452 insert_char (c);
2453 else
2454 error ("Invalid use of `\\' in replacement text");
2456 else
2457 insert_char (c);
2459 UNGCPRO;
2462 inslen = PT - (search_regs.start[sub]);
2463 del_range (search_regs.start[sub] + inslen, search_regs.end[sub] + inslen);
2465 if (case_action == all_caps)
2466 Fupcase_region (make_number (PT - inslen), make_number (PT));
2467 else if (case_action == cap_initial)
2468 Fupcase_initials_region (make_number (PT - inslen), make_number (PT));
2470 newpoint = PT;
2472 /* Put point back where it was in the text. */
2473 if (opoint <= 0)
2474 TEMP_SET_PT (opoint + ZV);
2475 else
2476 TEMP_SET_PT (opoint);
2478 /* Now move point "officially" to the start of the inserted replacement. */
2479 move_if_not_intangible (newpoint);
2481 return Qnil;
2484 static Lisp_Object
2485 match_limit (num, beginningp)
2486 Lisp_Object num;
2487 int beginningp;
2489 register int n;
2491 CHECK_NUMBER (num, 0);
2492 n = XINT (num);
2493 if (n < 0 || n >= search_regs.num_regs)
2494 args_out_of_range (num, make_number (search_regs.num_regs));
2495 if (search_regs.num_regs <= 0
2496 || search_regs.start[n] < 0)
2497 return Qnil;
2498 return (make_number ((beginningp) ? search_regs.start[n]
2499 : search_regs.end[n]));
2502 DEFUN ("match-beginning", Fmatch_beginning, Smatch_beginning, 1, 1, 0,
2503 "Return position of start of text matched by last search.\n\
2504 SUBEXP, a number, specifies which parenthesized expression in the last\n\
2505 regexp.\n\
2506 Value is nil if SUBEXPth pair didn't match, or there were less than\n\
2507 SUBEXP pairs.\n\
2508 Zero means the entire text matched by the whole regexp or whole string.")
2509 (subexp)
2510 Lisp_Object subexp;
2512 return match_limit (subexp, 1);
2515 DEFUN ("match-end", Fmatch_end, Smatch_end, 1, 1, 0,
2516 "Return position of end of text matched by last search.\n\
2517 SUBEXP, a number, specifies which parenthesized expression in the last\n\
2518 regexp.\n\
2519 Value is nil if SUBEXPth pair didn't match, or there were less than\n\
2520 SUBEXP pairs.\n\
2521 Zero means the entire text matched by the whole regexp or whole string.")
2522 (subexp)
2523 Lisp_Object subexp;
2525 return match_limit (subexp, 0);
2528 DEFUN ("match-data", Fmatch_data, Smatch_data, 0, 2, 0,
2529 "Return a list containing all info on what the last search matched.\n\
2530 Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.\n\
2531 All the elements are markers or nil (nil if the Nth pair didn't match)\n\
2532 if the last match was on a buffer; integers or nil if a string was matched.\n\
2533 Use `store-match-data' to reinstate the data in this list.\n\
2535 If INTEGERS (the optional first argument) is non-nil, always use integers\n\
2536 \(rather than markers) to represent buffer positions.\n\
2537 If REUSE is a list, reuse it as part of the value. If REUSE is long enough\n\
2538 to hold all the values, and if INTEGERS is non-nil, no consing is done.")
2539 (integers, reuse)
2540 Lisp_Object integers, reuse;
2542 Lisp_Object tail, prev;
2543 Lisp_Object *data;
2544 int i, len;
2546 if (NILP (last_thing_searched))
2547 return Qnil;
2549 data = (Lisp_Object *) alloca ((2 * search_regs.num_regs)
2550 * sizeof (Lisp_Object));
2552 len = -1;
2553 for (i = 0; i < search_regs.num_regs; i++)
2555 int start = search_regs.start[i];
2556 if (start >= 0)
2558 if (EQ (last_thing_searched, Qt)
2559 || ! NILP (integers))
2561 XSETFASTINT (data[2 * i], start);
2562 XSETFASTINT (data[2 * i + 1], search_regs.end[i]);
2564 else if (BUFFERP (last_thing_searched))
2566 data[2 * i] = Fmake_marker ();
2567 Fset_marker (data[2 * i],
2568 make_number (start),
2569 last_thing_searched);
2570 data[2 * i + 1] = Fmake_marker ();
2571 Fset_marker (data[2 * i + 1],
2572 make_number (search_regs.end[i]),
2573 last_thing_searched);
2575 else
2576 /* last_thing_searched must always be Qt, a buffer, or Qnil. */
2577 abort ();
2579 len = i;
2581 else
2582 data[2 * i] = data [2 * i + 1] = Qnil;
2585 /* If REUSE is not usable, cons up the values and return them. */
2586 if (! CONSP (reuse))
2587 return Flist (2 * len + 2, data);
2589 /* If REUSE is a list, store as many value elements as will fit
2590 into the elements of REUSE. */
2591 for (i = 0, tail = reuse; CONSP (tail);
2592 i++, tail = XCONS (tail)->cdr)
2594 if (i < 2 * len + 2)
2595 XCONS (tail)->car = data[i];
2596 else
2597 XCONS (tail)->car = Qnil;
2598 prev = tail;
2601 /* If we couldn't fit all value elements into REUSE,
2602 cons up the rest of them and add them to the end of REUSE. */
2603 if (i < 2 * len + 2)
2604 XCONS (prev)->cdr = Flist (2 * len + 2 - i, data + i);
2606 return reuse;
2610 DEFUN ("set-match-data", Fset_match_data, Sset_match_data, 1, 1, 0,
2611 "Set internal data on last search match from elements of LIST.\n\
2612 LIST should have been created by calling `match-data' previously.")
2613 (list)
2614 register Lisp_Object list;
2616 register int i;
2617 register Lisp_Object marker;
2619 if (running_asynch_code)
2620 save_search_regs ();
2622 if (!CONSP (list) && !NILP (list))
2623 list = wrong_type_argument (Qconsp, list);
2625 /* Unless we find a marker with a buffer in LIST, assume that this
2626 match data came from a string. */
2627 last_thing_searched = Qt;
2629 /* Allocate registers if they don't already exist. */
2631 int length = XFASTINT (Flength (list)) / 2;
2633 if (length > search_regs.num_regs)
2635 if (search_regs.num_regs == 0)
2637 search_regs.start
2638 = (regoff_t *) xmalloc (length * sizeof (regoff_t));
2639 search_regs.end
2640 = (regoff_t *) xmalloc (length * sizeof (regoff_t));
2642 else
2644 search_regs.start
2645 = (regoff_t *) xrealloc (search_regs.start,
2646 length * sizeof (regoff_t));
2647 search_regs.end
2648 = (regoff_t *) xrealloc (search_regs.end,
2649 length * sizeof (regoff_t));
2652 search_regs.num_regs = length;
2656 for (i = 0; i < search_regs.num_regs; i++)
2658 marker = Fcar (list);
2659 if (NILP (marker))
2661 search_regs.start[i] = -1;
2662 list = Fcdr (list);
2664 else
2666 if (MARKERP (marker))
2668 if (XMARKER (marker)->buffer == 0)
2669 XSETFASTINT (marker, 0);
2670 else
2671 XSETBUFFER (last_thing_searched, XMARKER (marker)->buffer);
2674 CHECK_NUMBER_COERCE_MARKER (marker, 0);
2675 search_regs.start[i] = XINT (marker);
2676 list = Fcdr (list);
2678 marker = Fcar (list);
2679 if (MARKERP (marker) && XMARKER (marker)->buffer == 0)
2680 XSETFASTINT (marker, 0);
2682 CHECK_NUMBER_COERCE_MARKER (marker, 0);
2683 search_regs.end[i] = XINT (marker);
2685 list = Fcdr (list);
2688 return Qnil;
2691 /* If non-zero the match data have been saved in saved_search_regs
2692 during the execution of a sentinel or filter. */
2693 static int search_regs_saved;
2694 static struct re_registers saved_search_regs;
2696 /* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data
2697 if asynchronous code (filter or sentinel) is running. */
2698 static void
2699 save_search_regs ()
2701 if (!search_regs_saved)
2703 saved_search_regs.num_regs = search_regs.num_regs;
2704 saved_search_regs.start = search_regs.start;
2705 saved_search_regs.end = search_regs.end;
2706 search_regs.num_regs = 0;
2707 search_regs.start = 0;
2708 search_regs.end = 0;
2710 search_regs_saved = 1;
2714 /* Called upon exit from filters and sentinels. */
2715 void
2716 restore_match_data ()
2718 if (search_regs_saved)
2720 if (search_regs.num_regs > 0)
2722 xfree (search_regs.start);
2723 xfree (search_regs.end);
2725 search_regs.num_regs = saved_search_regs.num_regs;
2726 search_regs.start = saved_search_regs.start;
2727 search_regs.end = saved_search_regs.end;
2729 search_regs_saved = 0;
2733 /* Quote a string to inactivate reg-expr chars */
2735 DEFUN ("regexp-quote", Fregexp_quote, Sregexp_quote, 1, 1, 0,
2736 "Return a regexp string which matches exactly STRING and nothing else.")
2737 (string)
2738 Lisp_Object string;
2740 register unsigned char *in, *out, *end;
2741 register unsigned char *temp;
2742 int backslashes_added = 0;
2744 CHECK_STRING (string, 0);
2746 temp = (unsigned char *) alloca (STRING_BYTES (XSTRING (string)) * 2);
2748 /* Now copy the data into the new string, inserting escapes. */
2750 in = XSTRING (string)->data;
2751 end = in + STRING_BYTES (XSTRING (string));
2752 out = temp;
2754 for (; in != end; in++)
2756 if (*in == '[' || *in == ']'
2757 || *in == '*' || *in == '.' || *in == '\\'
2758 || *in == '?' || *in == '+'
2759 || *in == '^' || *in == '$')
2760 *out++ = '\\', backslashes_added++;
2761 *out++ = *in;
2764 return make_specified_string (temp,
2765 XSTRING (string)->size + backslashes_added,
2766 out - temp,
2767 STRING_MULTIBYTE (string));
2770 void
2771 syms_of_search ()
2773 register int i;
2775 for (i = 0; i < REGEXP_CACHE_SIZE; ++i)
2777 searchbufs[i].buf.allocated = 100;
2778 searchbufs[i].buf.buffer = (unsigned char *) malloc (100);
2779 searchbufs[i].buf.fastmap = searchbufs[i].fastmap;
2780 searchbufs[i].regexp = Qnil;
2781 staticpro (&searchbufs[i].regexp);
2782 searchbufs[i].next = (i == REGEXP_CACHE_SIZE-1 ? 0 : &searchbufs[i+1]);
2784 searchbuf_head = &searchbufs[0];
2786 Qsearch_failed = intern ("search-failed");
2787 staticpro (&Qsearch_failed);
2788 Qinvalid_regexp = intern ("invalid-regexp");
2789 staticpro (&Qinvalid_regexp);
2791 Fput (Qsearch_failed, Qerror_conditions,
2792 Fcons (Qsearch_failed, Fcons (Qerror, Qnil)));
2793 Fput (Qsearch_failed, Qerror_message,
2794 build_string ("Search failed"));
2796 Fput (Qinvalid_regexp, Qerror_conditions,
2797 Fcons (Qinvalid_regexp, Fcons (Qerror, Qnil)));
2798 Fput (Qinvalid_regexp, Qerror_message,
2799 build_string ("Invalid regexp"));
2801 last_thing_searched = Qnil;
2802 staticpro (&last_thing_searched);
2804 defsubr (&Slooking_at);
2805 defsubr (&Sposix_looking_at);
2806 defsubr (&Sstring_match);
2807 defsubr (&Sposix_string_match);
2808 defsubr (&Ssearch_forward);
2809 defsubr (&Ssearch_backward);
2810 defsubr (&Sword_search_forward);
2811 defsubr (&Sword_search_backward);
2812 defsubr (&Sre_search_forward);
2813 defsubr (&Sre_search_backward);
2814 defsubr (&Sposix_search_forward);
2815 defsubr (&Sposix_search_backward);
2816 defsubr (&Sreplace_match);
2817 defsubr (&Smatch_beginning);
2818 defsubr (&Smatch_end);
2819 defsubr (&Smatch_data);
2820 defsubr (&Sset_match_data);
2821 defsubr (&Sregexp_quote);