49c4c8d4a74bd52acfd76d460a089d1de547a328
[chise/xemacs-chise.git-] / src / search.c
1 /* String search routines for XEmacs.
2    Copyright (C) 1985, 1986, 1987, 1992-1995 Free Software Foundation, Inc.
3    Copyright (C) 1995 Sun Microsystems, Inc.
4
5 This file is part of XEmacs.
6
7 XEmacs is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
10 later version.
11
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with XEmacs; see the file COPYING.  If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 /* Synched up with: FSF 19.29, except for region-cache stuff. */
23
24 /* Hacked on for Mule by Ben Wing, December 1994 and August 1995. */
25
26 /* This file has been Mule-ized except for the TRT stuff. */
27
28 #include <config.h>
29 #include "lisp.h"
30
31 #include "buffer.h"
32 #include "insdel.h"
33 #include "opaque.h"
34 #ifdef REGION_CACHE_NEEDS_WORK
35 #include "region-cache.h"
36 #endif
37 #include "syntax.h"
38
39 #include <sys/types.h>
40 #include "regex.h"
41 #include "casetab.h"
42 #include "chartab.h"
43
44 #define TRANSLATE(table, pos)   \
45  (!NILP (table) ? TRT_TABLE_OF (table, (Emchar) pos) : pos)
46 \f
47 #define REGEXP_CACHE_SIZE 20
48
49 /* If the regexp is non-nil, then the buffer contains the compiled form
50    of that regexp, suitable for searching.  */
51 struct regexp_cache
52 {
53   struct regexp_cache *next;
54   Lisp_Object regexp;
55   struct re_pattern_buffer buf;
56   char fastmap[0400];
57   /* Nonzero means regexp was compiled to do full POSIX backtracking.  */
58   char posix;
59 };
60
61 /* The instances of that struct.  */
62 static struct regexp_cache searchbufs[REGEXP_CACHE_SIZE];
63
64 /* The head of the linked list; points to the most recently used buffer.  */
65 static struct regexp_cache *searchbuf_head;
66
67
68 /* Every call to re_match, etc., must pass &search_regs as the regs
69    argument unless you can show it is unnecessary (i.e., if re_match
70    is certainly going to be called again before region-around-match
71    can be called).
72
73    Since the registers are now dynamically allocated, we need to make
74    sure not to refer to the Nth register before checking that it has
75    been allocated by checking search_regs.num_regs.
76
77    The regex code keeps track of whether it has allocated the search
78    buffer using bits in the re_pattern_buffer.  This means that whenever
79    you compile a new pattern, it completely forgets whether it has
80    allocated any registers, and will allocate new registers the next
81    time you call a searching or matching function.  Therefore, we need
82    to call re_set_registers after compiling a new pattern or after
83    setting the match registers, so that the regex functions will be
84    able to free or re-allocate it properly.  */
85
86 /* Note: things get trickier under Mule because the values returned from
87    the regexp routines are in Bytinds but we need them to be in Bufpos's.
88    We take the easy way out for the moment and just convert them immediately.
89    We could be more clever by not converting them until necessary, but
90    that gets real ugly real fast since the buffer might have changed and
91    the positions might be out of sync or out of range.
92    */
93 static struct re_registers search_regs;
94
95 /* The buffer in which the last search was performed, or
96    Qt if the last search was done in a string;
97    Qnil if no searching has been done yet.  */
98 static Lisp_Object last_thing_searched;
99
100 /* error condition signalled when regexp compile_pattern fails */
101
102 Lisp_Object Qinvalid_regexp;
103
104 /* Regular expressions used in forward/backward-word */
105 Lisp_Object Vforward_word_regexp, Vbackward_word_regexp;
106
107 /* range table for use with skip_chars.  Only needed for Mule. */
108 Lisp_Object Vskip_chars_range_table;
109
110 static void set_search_regs (struct buffer *buf, Bufpos beg, Charcount len);
111 static void save_search_regs (void);
112 static Bufpos simple_search (struct buffer *buf, Bufbyte *base_pat,
113                              Bytecount len, Bytind pos, Bytind lim,
114                              EMACS_INT n, Lisp_Object trt);
115 static Bufpos boyer_moore (struct buffer *buf, Bufbyte *base_pat,
116                            Bytecount len, Bytind pos, Bytind lim,
117                            EMACS_INT n, Lisp_Object trt,
118                            Lisp_Object inverse_trt, int charset_base);
119 static Bufpos search_buffer (struct buffer *buf, Lisp_Object str,
120                              Bufpos bufpos, Bufpos buflim, EMACS_INT n, int RE,
121                              Lisp_Object trt, Lisp_Object inverse_trt,
122                              int posix);
123
124 static void
125 matcher_overflow (void)
126 {
127   error ("Stack overflow in regexp matcher");
128 }
129
130 /* Compile a regexp and signal a Lisp error if anything goes wrong.
131    PATTERN is the pattern to compile.
132    CP is the place to put the result.
133    TRANSLATE is a translation table for ignoring case, or NULL for none.
134    REGP is the structure that says where to store the "register"
135    values that will result from matching this pattern.
136    If it is 0, we should compile the pattern not to record any
137    subexpression bounds.
138    POSIX is nonzero if we want full backtracking (POSIX style)
139    for this pattern.  0 means backtrack only enough to get a valid match.  */
140
141 static int
142 compile_pattern_1 (struct regexp_cache *cp, Lisp_Object pattern,
143                    Lisp_Object translate, struct re_registers *regp, int posix,
144                    Error_behavior errb)
145 {
146   const char *val;
147   reg_syntax_t old;
148
149   cp->regexp = Qnil;
150   cp->buf.translate = translate;
151   cp->posix = posix;
152   old = re_set_syntax (RE_SYNTAX_EMACS
153                        | (posix ? 0 : RE_NO_POSIX_BACKTRACKING));
154   val = (const char *)
155     re_compile_pattern ((char *) XSTRING_DATA (pattern),
156                         XSTRING_LENGTH (pattern), &cp->buf);
157   re_set_syntax (old);
158   if (val)
159     {
160       maybe_signal_error (Qinvalid_regexp, list1 (build_string (val)),
161                           Qsearch, errb);
162       return 0;
163     }
164
165   cp->regexp = Fcopy_sequence (pattern);
166   return 1;
167 }
168
169 /* Compile a regexp if necessary, but first check to see if there's one in
170    the cache.
171    PATTERN is the pattern to compile.
172    TRANSLATE is a translation table for ignoring case, or NULL for none.
173    REGP is the structure that says where to store the "register"
174    values that will result from matching this pattern.
175    If it is 0, we should compile the pattern not to record any
176    subexpression bounds.
177    POSIX is nonzero if we want full backtracking (POSIX style)
178    for this pattern.  0 means backtrack only enough to get a valid match.  */
179
180 struct re_pattern_buffer *
181 compile_pattern (Lisp_Object pattern, struct re_registers *regp,
182                  Lisp_Object translate, int posix, Error_behavior errb)
183 {
184   struct regexp_cache *cp, **cpp;
185
186   for (cpp = &searchbuf_head; ; cpp = &cp->next)
187     {
188       cp = *cpp;
189       if (!NILP (Fstring_equal (cp->regexp, pattern))
190           && EQ (cp->buf.translate, translate)
191           && cp->posix == posix)
192         break;
193
194       /* If we're at the end of the cache, compile into the last cell.  */
195       if (cp->next == 0)
196         {
197           if (!compile_pattern_1 (cp, pattern, translate, regp, posix,
198                                   errb))
199             return 0;
200           break;
201         }
202     }
203
204   /* When we get here, cp (aka *cpp) contains the compiled pattern,
205      either because we found it in the cache or because we just compiled it.
206      Move it to the front of the queue to mark it as most recently used.  */
207   *cpp = cp->next;
208   cp->next = searchbuf_head;
209   searchbuf_head = cp;
210
211   /* Advise the searching functions about the space we have allocated
212      for register data.  */
213   if (regp)
214     re_set_registers (&cp->buf, regp, regp->num_regs, regp->start, regp->end);
215
216   return &cp->buf;
217 }
218
219 /* Error condition used for failing searches */
220 Lisp_Object Qsearch_failed;
221
222 static Lisp_Object
223 signal_failure (Lisp_Object arg)
224 {
225   for (;;)
226     Fsignal (Qsearch_failed, list1 (arg));
227   return Qnil; /* Not reached. */
228 }
229
230 /* Convert the search registers from Bytinds to Bufpos's.  Needs to be
231    done after each regexp match that uses the search regs.
232
233    We could get a potential speedup by not converting the search registers
234    until it's really necessary, e.g. when match-data or replace-match is
235    called.  However, this complexifies the code a lot (e.g. the buffer
236    could have changed and the Bytinds stored might be invalid) and is
237    probably not a great time-saver. */
238
239 static void
240 fixup_search_regs_for_buffer (struct buffer *buf)
241 {
242   int i;
243   int num_regs = search_regs.num_regs;
244
245   for (i = 0; i < num_regs; i++)
246     {
247       if (search_regs.start[i] >= 0)
248         search_regs.start[i] = bytind_to_bufpos (buf, search_regs.start[i]);
249       if (search_regs.end[i] >= 0)
250         search_regs.end[i] = bytind_to_bufpos (buf, search_regs.end[i]);
251     }
252 }
253
254 /* Similar but for strings. */
255 static void
256 fixup_search_regs_for_string (Lisp_Object string)
257 {
258   int i;
259   int num_regs = search_regs.num_regs;
260
261   /* #### bytecount_to_charcount() is not that efficient.  This function
262      could be faster if it did its own conversion (using INC_CHARPTR()
263      and such), because the register ends are likely to be somewhat ordered.
264      (Even if not, you could sort them.)
265
266      Think about this if this function is a time hog, which it's probably
267      not. */
268   for (i = 0; i < num_regs; i++)
269     {
270       if (search_regs.start[i] > 0)
271         {
272           search_regs.start[i] =
273             bytecount_to_charcount (XSTRING_DATA (string),
274                                     search_regs.start[i]);
275         }
276       if (search_regs.end[i] > 0)
277         {
278           search_regs.end[i] =
279             bytecount_to_charcount (XSTRING_DATA (string),
280                                     search_regs.end[i]);
281         }
282     }
283 }
284
285 \f
286 static Lisp_Object
287 looking_at_1 (Lisp_Object string, struct buffer *buf, int posix)
288 {
289   /* This function has been Mule-ized, except for the trt table handling. */
290   Lisp_Object val;
291   Bytind p1, p2;
292   Bytecount s1, s2;
293   REGISTER int i;
294   struct re_pattern_buffer *bufp;
295
296   if (running_asynch_code)
297     save_search_regs ();
298
299   CHECK_STRING (string);
300   bufp = compile_pattern (string, &search_regs,
301                           (!NILP (buf->case_fold_search)
302                            ? XCASE_TABLE_DOWNCASE (buf->case_table) : Qnil),
303                           posix, ERROR_ME);
304
305   QUIT;
306
307   /* Get pointers and sizes of the two strings
308      that make up the visible portion of the buffer. */
309
310   p1 = BI_BUF_BEGV (buf);
311   p2 = BI_BUF_CEILING_OF (buf, p1);
312   s1 = p2 - p1;
313   s2 = BI_BUF_ZV (buf) - p2;
314
315   regex_emacs_buffer = buf;
316   regex_emacs_buffer_p = 1;
317   i = re_match_2 (bufp, (char *) BI_BUF_BYTE_ADDRESS (buf, p1),
318                   s1, (char *) BI_BUF_BYTE_ADDRESS (buf, p2), s2,
319                   BI_BUF_PT (buf) - BI_BUF_BEGV (buf), &search_regs,
320                   BI_BUF_ZV (buf) - BI_BUF_BEGV (buf));
321
322   if (i == -2)
323     matcher_overflow ();
324
325   val = (0 <= i ? Qt : Qnil);
326   if (NILP (val))
327     return Qnil;
328   {
329     int num_regs = search_regs.num_regs;
330     for (i = 0; i < num_regs; i++)
331       if (search_regs.start[i] >= 0)
332         {
333           search_regs.start[i] += BI_BUF_BEGV (buf);
334           search_regs.end[i] += BI_BUF_BEGV (buf);
335         }
336   }
337   XSETBUFFER (last_thing_searched, buf);
338   fixup_search_regs_for_buffer (buf);
339   return val;
340 }
341
342 DEFUN ("looking-at", Flooking_at, 1, 2, 0, /*
343 Return t if text after point matches regular expression REGEXP.
344 This function modifies the match data that `match-beginning',
345 `match-end' and `match-data' access; save and restore the match
346 data if you want to preserve them.
347
348 Optional argument BUFFER defaults to the current buffer.
349 */
350        (regexp, buffer))
351 {
352   return looking_at_1 (regexp, decode_buffer (buffer, 0), 0);
353 }
354
355 DEFUN ("posix-looking-at", Fposix_looking_at, 1, 2, 0, /*
356 Return t if text after point matches regular expression REGEXP.
357 Find the longest match, in accord with Posix regular expression rules.
358 This function modifies the match data that `match-beginning',
359 `match-end' and `match-data' access; save and restore the match
360 data if you want to preserve them.
361
362 Optional argument BUFFER defaults to the current buffer.
363 */
364        (regexp, buffer))
365 {
366   return looking_at_1 (regexp,  decode_buffer (buffer, 0), 1);
367 }
368 \f
369 static Lisp_Object
370 string_match_1 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start,
371                 struct buffer *buf, int posix)
372 {
373   /* This function has been Mule-ized, except for the trt table handling. */
374   Bytecount val;
375   Charcount s;
376   struct re_pattern_buffer *bufp;
377
378   if (running_asynch_code)
379     save_search_regs ();
380
381   CHECK_STRING (regexp);
382   CHECK_STRING (string);
383
384   if (NILP (start))
385     s = 0;
386   else
387     {
388       Charcount len = XSTRING_CHAR_LENGTH (string);
389
390       CHECK_INT (start);
391       s = XINT (start);
392       if (s < 0 && -s <= len)
393         s = len + s;
394       else if (0 > s || s > len)
395         args_out_of_range (string, start);
396     }
397
398
399   bufp = compile_pattern (regexp, &search_regs,
400                           (!NILP (buf->case_fold_search)
401                            ? XCASE_TABLE_DOWNCASE (buf->case_table) : Qnil),
402                           0, ERROR_ME);
403   QUIT;
404   {
405     Bytecount bis = charcount_to_bytecount (XSTRING_DATA (string), s);
406     regex_emacs_buffer = buf;
407     regex_emacs_buffer_p = 0;
408     val = re_search (bufp, (char *) XSTRING_DATA (string),
409                      XSTRING_LENGTH (string), bis,
410                      XSTRING_LENGTH (string) - bis,
411                      &search_regs);
412   }
413   if (val == -2)
414     matcher_overflow ();
415   if (val < 0) return Qnil;
416   last_thing_searched = Qt;
417   fixup_search_regs_for_string (string);
418   return make_int (bytecount_to_charcount (XSTRING_DATA (string), val));
419 }
420
421 DEFUN ("string-match", Fstring_match, 2, 4, 0, /*
422 Return index of start of first match for REGEXP in STRING, or nil.
423 If third arg START is non-nil, start search at that index in STRING.
424 For index of first char beyond the match, do (match-end 0).
425 `match-end' and `match-beginning' also give indices of substrings
426 matched by parenthesis constructs in the pattern.
427
428 Optional arg BUFFER controls how case folding is done (according to
429 the value of `case-fold-search' in that buffer and that buffer's case
430 tables) and defaults to the current buffer.
431 */
432        (regexp, string, start, buffer))
433 {
434   return string_match_1 (regexp, string, start, decode_buffer (buffer, 0), 0);
435 }
436
437 DEFUN ("posix-string-match", Fposix_string_match, 2, 4, 0, /*
438 Return index of start of first match for REGEXP in STRING, or nil.
439 Find the longest match, in accord with Posix regular expression rules.
440 If third arg START is non-nil, start search at that index in STRING.
441 For index of first char beyond the match, do (match-end 0).
442 `match-end' and `match-beginning' also give indices of substrings
443 matched by parenthesis constructs in the pattern.
444
445 Optional arg BUFFER controls how case folding is done (according to
446 the value of `case-fold-search' in that buffer and that buffer's case
447 tables) and defaults to the current buffer.
448 */
449        (regexp, string, start, buffer))
450 {
451   return string_match_1 (regexp, string, start, decode_buffer (buffer, 0), 1);
452 }
453
454 /* Match REGEXP against STRING, searching all of STRING,
455    and return the index of the match, or negative on failure.
456    This does not clobber the match data. */
457
458 Bytecount
459 fast_string_match (Lisp_Object regexp,  const Bufbyte *nonreloc,
460                    Lisp_Object reloc, Bytecount offset,
461                    Bytecount length, int case_fold_search,
462                    Error_behavior errb, int no_quit)
463 {
464   /* This function has been Mule-ized, except for the trt table handling. */
465   Bytecount val;
466   Bufbyte *newnonreloc = (Bufbyte *) nonreloc;
467   struct re_pattern_buffer *bufp;
468
469   bufp = compile_pattern (regexp, 0,
470                           (case_fold_search
471                            ? XCASE_TABLE_DOWNCASE (current_buffer->case_table)
472                            : Qnil),
473                           0, errb);
474   if (!bufp)
475     return -1; /* will only do this when errb != ERROR_ME */
476   if (!no_quit)
477     QUIT;
478   else
479     no_quit_in_re_search = 1;
480
481   fixup_internal_substring (nonreloc, reloc, offset, &length);
482
483   if (!NILP (reloc))
484     {
485       if (no_quit)
486         newnonreloc = XSTRING_DATA (reloc);
487       else
488         {
489           /* QUIT could relocate RELOC.  Therefore we must alloca()
490              and copy.  No way around this except some serious
491              rewriting of re_search(). */
492           newnonreloc = (Bufbyte *) alloca (length);
493           memcpy (newnonreloc, XSTRING_DATA (reloc), length);
494         }
495     }
496
497   /* #### evil current-buffer dependency */
498   regex_emacs_buffer = current_buffer;
499   regex_emacs_buffer_p = 0;
500   val = re_search (bufp, (char *) newnonreloc + offset, length, 0,
501                    length, 0);
502
503   no_quit_in_re_search = 0;
504   return val;
505 }
506
507 Bytecount
508 fast_lisp_string_match (Lisp_Object regex, Lisp_Object string)
509 {
510   return fast_string_match (regex, 0, string, 0, -1, 0, ERROR_ME, 0);
511 }
512
513 \f
514 #ifdef REGION_CACHE_NEEDS_WORK
515 /* The newline cache: remembering which sections of text have no newlines.  */
516
517 /* If the user has requested newline caching, make sure it's on.
518    Otherwise, make sure it's off.
519    This is our cheezy way of associating an action with the change of
520    state of a buffer-local variable.  */
521 static void
522 newline_cache_on_off (struct buffer *buf)
523 {
524   if (NILP (buf->cache_long_line_scans))
525     {
526       /* It should be off.  */
527       if (buf->newline_cache)
528         {
529           free_region_cache (buf->newline_cache);
530           buf->newline_cache = 0;
531         }
532     }
533   else
534     {
535       /* It should be on.  */
536       if (buf->newline_cache == 0)
537         buf->newline_cache = new_region_cache ();
538     }
539 }
540 #endif
541 \f
542 /* Search in BUF for COUNT instances of the character TARGET between
543    START and END.
544
545    If COUNT is positive, search forwards; END must be >= START.
546    If COUNT is negative, search backwards for the -COUNTth instance;
547       END must be <= START.
548    If COUNT is zero, do anything you please; run rogue, for all I care.
549
550    If END is zero, use BEGV or ZV instead, as appropriate for the
551    direction indicated by COUNT.
552
553    If we find COUNT instances, set *SHORTAGE to zero, and return the
554    position after the COUNTth match.  Note that for reverse motion
555    this is not the same as the usual convention for Emacs motion commands.
556
557    If we don't find COUNT instances before reaching END, set *SHORTAGE
558    to the number of TARGETs left unfound, and return END.
559
560    If ALLOW_QUIT is non-zero, call QUIT periodically. */
561
562 static Bytind
563 bi_scan_buffer (struct buffer *buf, Emchar target, Bytind st, Bytind en,
564                 EMACS_INT count, EMACS_INT *shortage, int allow_quit)
565 {
566   /* This function has been Mule-ized. */
567   Bytind lim = en > 0 ? en :
568     ((count > 0) ? BI_BUF_ZV (buf) : BI_BUF_BEGV (buf));
569
570   /* #### newline cache stuff in this function not yet ported */
571
572   assert (count != 0);
573
574   if (shortage)
575     *shortage = 0;
576
577   if (count > 0)
578     {
579 #ifdef MULE
580       /* Due to the Mule representation of characters in a buffer,
581          we can simply search for characters in the range 0 - 127
582          directly.  For other characters, we do it the "hard" way.
583          Note that this way works for all characters but the other
584          way is faster. */
585       if (target >= 0200)
586         {
587           while (st < lim && count > 0)
588             {
589               if (BI_BUF_FETCH_CHAR (buf, st) == target)
590                 count--;
591               INC_BYTIND (buf, st);
592             }
593         }
594       else
595 #endif
596         {
597           while (st < lim && count > 0)
598             {
599               Bytind ceil;
600               Bufbyte *bufptr;
601
602               ceil = BI_BUF_CEILING_OF (buf, st);
603               ceil = min (lim, ceil);
604               bufptr = (Bufbyte *) memchr (BI_BUF_BYTE_ADDRESS (buf, st),
605                                            (int) target, ceil - st);
606               if (bufptr)
607                 {
608                   count--;
609                   st = BI_BUF_PTR_BYTE_POS (buf, bufptr) + 1;
610                 }
611               else
612                 st = ceil;
613             }
614         }
615
616       if (shortage)
617         *shortage = count;
618       if (allow_quit)
619         QUIT;
620       return st;
621     }
622   else
623     {
624 #ifdef MULE
625       if (target >= 0200)
626         {
627           while (st > lim && count < 0)
628             {
629               DEC_BYTIND (buf, st);
630               if (BI_BUF_FETCH_CHAR (buf, st) == target)
631                 count++;
632             }
633         }
634       else
635 #endif
636         {
637           while (st > lim && count < 0)
638             {
639               Bytind floor;
640               Bufbyte *bufptr;
641               Bufbyte *floorptr;
642
643               floor = BI_BUF_FLOOR_OF (buf, st);
644               floor = max (lim, floor);
645               /* No memrchr() ... */
646               bufptr = BI_BUF_BYTE_ADDRESS_BEFORE (buf, st);
647               floorptr = BI_BUF_BYTE_ADDRESS (buf, floor);
648               while (bufptr >= floorptr)
649                 {
650                   st--;
651                   /* At this point, both ST and BUFPTR refer to the same
652                      character.  When the loop terminates, ST will
653                      always point to the last character we tried. */
654                   if (* (unsigned char *) bufptr == (unsigned char) target)
655                     {
656                       count++;
657                       break;
658                     }
659                   bufptr--;
660                 }
661             }
662         }
663
664       if (shortage)
665         *shortage = -count;
666       if (allow_quit)
667         QUIT;
668       if (count)
669         return st;
670       else
671         {
672         /* We found the character we were looking for; we have to return
673            the position *after* it due to the strange way that the return
674            value is defined. */
675           INC_BYTIND (buf, st);
676           return st;
677         }
678     }
679 }
680
681 Bufpos
682 scan_buffer (struct buffer *buf, Emchar target, Bufpos start, Bufpos end,
683              EMACS_INT count, EMACS_INT *shortage, int allow_quit)
684 {
685   Bytind bi_retval;
686   Bytind bi_start, bi_end;
687
688   bi_start = bufpos_to_bytind (buf, start);
689   if (end)
690     bi_end = bufpos_to_bytind (buf, end);
691   else
692     bi_end = 0;
693   bi_retval = bi_scan_buffer (buf, target, bi_start, bi_end, count,
694                               shortage, allow_quit);
695   return bytind_to_bufpos (buf, bi_retval);
696 }
697
698 Bytind
699 bi_find_next_newline_no_quit (struct buffer *buf, Bytind from, int count)
700 {
701   return bi_scan_buffer (buf, '\n', from, 0, count, 0, 0);
702 }
703
704 Bufpos
705 find_next_newline_no_quit (struct buffer *buf, Bufpos from, int count)
706 {
707   return scan_buffer (buf, '\n', from, 0, count, 0, 0);
708 }
709
710 Bufpos
711 find_next_newline (struct buffer *buf, Bufpos from, int count)
712 {
713   return scan_buffer (buf, '\n', from, 0, count, 0, 1);
714 }
715
716 Bytind
717 bi_find_next_emchar_in_string (Lisp_String* str, Emchar target, Bytind st,
718                                EMACS_INT count)
719 {
720   /* This function has been Mule-ized. */
721   Bytind lim = string_length (str) -1;
722   Bufbyte* s = string_data (str);
723
724   assert (count >= 0);
725
726 #ifdef MULE
727   /* Due to the Mule representation of characters in a buffer,
728      we can simply search for characters in the range 0 - 127
729      directly.  For other characters, we do it the "hard" way.
730      Note that this way works for all characters but the other
731      way is faster. */
732   if (target >= 0200)
733     {
734       while (st < lim && count > 0)
735         {
736           if (string_char (str, st) == target)
737             count--;
738           INC_CHARBYTIND (s, st);
739         }
740     }
741   else
742 #endif
743     {
744       while (st < lim && count > 0)
745         {
746           Bufbyte *bufptr = (Bufbyte *) memchr (charptr_n_addr (s, st),
747                                                 (int) target, lim - st);
748           if (bufptr)
749             {
750               count--;
751               st =  (Bytind)(bufptr - s) + 1;
752             }
753           else
754             st = lim;
755         }
756     }
757   return st;
758 }
759
760 /* Like find_next_newline, but returns position before the newline,
761    not after, and only search up to TO.  This isn't just
762    find_next_newline (...)-1, because you might hit TO.  */
763 Bufpos
764 find_before_next_newline (struct buffer *buf, Bufpos from, Bufpos to, int count)
765 {
766   EMACS_INT shortage;
767   Bufpos pos = scan_buffer (buf, '\n', from, to, count, &shortage, 1);
768
769   if (shortage == 0)
770     pos--;
771
772   return pos;
773 }
774 \f
775 static Lisp_Object
776 skip_chars (struct buffer *buf, int forwardp, int syntaxp,
777             Lisp_Object string, Lisp_Object lim)
778 {
779   /* This function has been Mule-ized. */
780   REGISTER Bufbyte *p, *pend;
781   REGISTER Emchar c;
782   /* We store the first 256 chars in an array here and the rest in
783      a range table. */
784   unsigned char fastmap[0400];
785   int negate = 0;
786   REGISTER int i;
787   Lisp_Char_Table *syntax_table = XCHAR_TABLE (buf->mirror_syntax_table);
788   Bufpos limit;
789
790   if (NILP (lim))
791     limit = forwardp ? BUF_ZV (buf) : BUF_BEGV (buf);
792   else
793     {
794       CHECK_INT_COERCE_MARKER (lim);
795       limit = XINT (lim);
796
797       /* In any case, don't allow scan outside bounds of buffer.  */
798       if (limit > BUF_ZV   (buf)) limit = BUF_ZV   (buf);
799       if (limit < BUF_BEGV (buf)) limit = BUF_BEGV (buf);
800     }
801
802   CHECK_STRING (string);
803   p = XSTRING_DATA (string);
804   pend = p + XSTRING_LENGTH (string);
805   memset (fastmap, 0, sizeof (fastmap));
806
807   Fclear_range_table (Vskip_chars_range_table);
808
809   if (p != pend && *p == '^')
810     {
811       negate = 1;
812       p++;
813     }
814
815   /* Find the characters specified and set their elements of fastmap.
816      If syntaxp, each character counts as itself.
817      Otherwise, handle backslashes and ranges specially  */
818
819   while (p != pend)
820     {
821       c = charptr_emchar (p);
822       INC_CHARPTR (p);
823       if (syntaxp)
824         {
825           if (c < 0400 && syntax_spec_code[c] < (unsigned char) Smax)
826             fastmap[c] = 1;
827           else
828             signal_simple_error ("Invalid syntax designator",
829                                  make_char (c));
830         }
831       else
832         {
833           if (c == '\\')
834             {
835               if (p == pend) break;
836               c = charptr_emchar (p);
837               INC_CHARPTR (p);
838             }
839           if (p != pend && *p == '-')
840             {
841               Emchar cend;
842
843               p++;
844               if (p == pend) break;
845               cend = charptr_emchar (p);
846               while (c <= cend && c < 0400)
847                 {
848                   fastmap[c] = 1;
849                   c++;
850                 }
851               if (c <= cend)
852                 Fput_range_table (make_int (c), make_int (cend), Qt,
853                                   Vskip_chars_range_table);
854               INC_CHARPTR (p);
855             }
856           else
857             {
858               if (c < 0400)
859                 fastmap[c] = 1;
860               else
861                 Fput_range_table (make_int (c), make_int (c), Qt,
862                                   Vskip_chars_range_table);
863             }
864         }
865     }
866
867   if (syntaxp && fastmap['-'] != 0)
868     fastmap[' '] = 1;
869
870   /* If ^ was the first character, complement the fastmap.
871      We don't complement the range table, however; we just use negate
872      in the comparisons below. */
873
874   if (negate)
875     for (i = 0; i < (int) (sizeof fastmap); i++)
876       fastmap[i] ^= 1;
877
878   {
879     Bufpos start_point = BUF_PT (buf);
880
881     if (syntaxp)
882       {
883         /* All syntax designators are normal chars so nothing strange
884            to worry about */
885         if (forwardp)
886           {
887             while (BUF_PT (buf) < limit
888                    && fastmap[(unsigned char)
889                               syntax_code_spec
890                               [(int) SYNTAX (syntax_table,
891                                              BUF_FETCH_CHAR
892                                              (buf, BUF_PT (buf)))]])
893               BUF_SET_PT (buf, BUF_PT (buf) + 1);
894           }
895         else
896           {
897             while (BUF_PT (buf) > limit
898                    && fastmap[(unsigned char)
899                               syntax_code_spec
900                               [(int) SYNTAX (syntax_table,
901                                              BUF_FETCH_CHAR
902                                              (buf, BUF_PT (buf) - 1))]])
903               BUF_SET_PT (buf, BUF_PT (buf) - 1);
904           }
905       }
906     else
907       {
908         if (forwardp)
909           {
910             while (BUF_PT (buf) < limit)
911               {
912                 Emchar ch = BUF_FETCH_CHAR (buf, BUF_PT (buf));
913                 if ((ch < 0400) ? fastmap[ch] :
914                     (NILP (Fget_range_table (make_int (ch),
915                                              Vskip_chars_range_table,
916                                              Qnil))
917                      == negate))
918                   BUF_SET_PT (buf, BUF_PT (buf) + 1);
919                 else
920                   break;
921               }
922           }
923         else
924           {
925             while (BUF_PT (buf) > limit)
926               {
927                 Emchar ch = BUF_FETCH_CHAR (buf, BUF_PT (buf) - 1);
928                 if ((ch < 0400) ? fastmap[ch] :
929                     (NILP (Fget_range_table (make_int (ch),
930                                              Vskip_chars_range_table,
931                                              Qnil))
932                      == negate))
933                   BUF_SET_PT (buf, BUF_PT (buf) - 1);
934                 else
935                   break;
936               }
937           }
938       }
939     QUIT;
940     return make_int (BUF_PT (buf) - start_point);
941   }
942 }
943
944 DEFUN ("skip-chars-forward", Fskip_chars_forward, 1, 3, 0, /*
945 Move point forward, stopping before a char not in STRING, or at pos LIMIT.
946 STRING is like the inside of a `[...]' in a regular expression
947 except that `]' is never special and `\\' quotes `^', `-' or `\\'.
948 Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
949 With arg "^a-zA-Z", skips nonletters stopping before first letter.
950 Returns the distance traveled, either zero or positive.
951
952 Optional argument BUFFER defaults to the current buffer.
953 */
954        (string, limit, buffer))
955 {
956   return skip_chars (decode_buffer (buffer, 0), 1, 0, string, limit);
957 }
958
959 DEFUN ("skip-chars-backward", Fskip_chars_backward, 1, 3, 0, /*
960 Move point backward, stopping after a char not in STRING, or at pos LIMIT.
961 See `skip-chars-forward' for details.
962 Returns the distance traveled, either zero or negative.
963
964 Optional argument BUFFER defaults to the current buffer.
965 */
966        (string, limit, buffer))
967 {
968   return skip_chars (decode_buffer (buffer, 0), 0, 0, string, limit);
969 }
970
971
972 DEFUN ("skip-syntax-forward", Fskip_syntax_forward, 1, 3, 0, /*
973 Move point forward across chars in specified syntax classes.
974 SYNTAX is a string of syntax code characters.
975 Stop before a char whose syntax is not in SYNTAX, or at position LIMIT.
976 If SYNTAX starts with ^, skip characters whose syntax is NOT in SYNTAX.
977 This function returns the distance traveled, either zero or positive.
978
979 Optional argument BUFFER defaults to the current buffer.
980 */
981        (syntax, limit, buffer))
982 {
983   return skip_chars (decode_buffer (buffer, 0), 1, 1, syntax, limit);
984 }
985
986 DEFUN ("skip-syntax-backward", Fskip_syntax_backward, 1, 3, 0, /*
987 Move point backward across chars in specified syntax classes.
988 SYNTAX is a string of syntax code characters.
989 Stop on reaching a char whose syntax is not in SYNTAX, or at position LIMIT.
990 If SYNTAX starts with ^, skip characters whose syntax is NOT in SYNTAX.
991 This function returns the distance traveled, either zero or negative.
992
993 Optional argument BUFFER defaults to the current buffer.
994 */
995        (syntax, limit, buffer))
996 {
997   return skip_chars (decode_buffer (buffer, 0), 0, 1, syntax, limit);
998 }
999
1000 \f
1001 /* Subroutines of Lisp buffer search functions. */
1002
1003 static Lisp_Object
1004 search_command (Lisp_Object string, Lisp_Object limit, Lisp_Object noerror,
1005                 Lisp_Object count, Lisp_Object buffer, int direction,
1006                 int RE, int posix)
1007 {
1008   /* This function has been Mule-ized, except for the trt table handling. */
1009   REGISTER Bufpos np;
1010   Bufpos lim;
1011   EMACS_INT n = direction;
1012   struct buffer *buf;
1013
1014   if (!NILP (count))
1015     {
1016       CHECK_INT (count);
1017       n *= XINT (count);
1018     }
1019
1020   buf = decode_buffer (buffer, 0);
1021   CHECK_STRING (string);
1022   if (NILP (limit))
1023     lim = n > 0 ? BUF_ZV (buf) : BUF_BEGV (buf);
1024   else
1025     {
1026       CHECK_INT_COERCE_MARKER (limit);
1027       lim = XINT (limit);
1028       if (n > 0 ? lim < BUF_PT (buf) : lim > BUF_PT (buf))
1029         error ("Invalid search limit (wrong side of point)");
1030       if (lim > BUF_ZV (buf))
1031         lim = BUF_ZV (buf);
1032       if (lim < BUF_BEGV (buf))
1033         lim = BUF_BEGV (buf);
1034     }
1035
1036   np = search_buffer (buf, string, BUF_PT (buf), lim, n, RE,
1037                       (!NILP (buf->case_fold_search)
1038                        ? XCASE_TABLE_CANON (buf->case_table)
1039                        : Qnil),
1040                       (!NILP (buf->case_fold_search)
1041                        ? XCASE_TABLE_EQV (buf->case_table)
1042                        : Qnil), posix);
1043
1044   if (np <= 0)
1045     {
1046       if (NILP (noerror))
1047         return signal_failure (string);
1048       if (!EQ (noerror, Qt))
1049         {
1050           if (lim < BUF_BEGV (buf) || lim > BUF_ZV (buf))
1051             abort ();
1052           BUF_SET_PT (buf, lim);
1053           return Qnil;
1054 #if 0 /* This would be clean, but maybe programs depend on
1055          a value of nil here.  */
1056           np = lim;
1057 #endif
1058         }
1059       else
1060         return Qnil;
1061     }
1062
1063   if (np < BUF_BEGV (buf) || np > BUF_ZV (buf))
1064     abort ();
1065
1066   BUF_SET_PT (buf, np);
1067
1068   return make_int (np);
1069 }
1070 \f
1071 static int
1072 trivial_regexp_p (Lisp_Object regexp)
1073 {
1074   /* This function has been Mule-ized. */
1075   Bytecount len = XSTRING_LENGTH (regexp);
1076   Bufbyte *s = XSTRING_DATA (regexp);
1077   while (--len >= 0)
1078     {
1079       switch (*s++)
1080         {
1081         case '.': case '*': case '+': case '?': case '[': case '^': case '$':
1082           return 0;
1083         case '\\':
1084           if (--len < 0)
1085             return 0;
1086           switch (*s++)
1087             {
1088             case '|': case '(': case ')': case '`': case '\'': case 'b':
1089             case 'B': case '<': case '>': case 'w': case 'W': case 's':
1090             case 'S': case '=':
1091 #ifdef MULE
1092             /* 97/2/25 jhod Added for category matches */
1093             case 'c': case 'C':
1094 #endif /* MULE */
1095             case '1': case '2': case '3': case '4': case '5':
1096             case '6': case '7': case '8': case '9':
1097               return 0;
1098             }
1099         }
1100     }
1101   return 1;
1102 }
1103
1104 /* Search for the n'th occurrence of STRING in BUF,
1105    starting at position BUFPOS and stopping at position BUFLIM,
1106    treating PAT as a literal string if RE is false or as
1107    a regular expression if RE is true.
1108
1109    If N is positive, searching is forward and BUFLIM must be greater
1110    than BUFPOS.
1111    If N is negative, searching is backward and BUFLIM must be less
1112    than BUFPOS.
1113
1114    Returns -x if only N-x occurrences found (x > 0),
1115    or else the position at the beginning of the Nth occurrence
1116    (if searching backward) or the end (if searching forward).
1117
1118    POSIX is nonzero if we want full backtracking (POSIX style)
1119    for this pattern.  0 means backtrack only enough to get a valid match.  */
1120 static Bufpos
1121 search_buffer (struct buffer *buf, Lisp_Object string, Bufpos bufpos,
1122                Bufpos buflim, EMACS_INT n, int RE, Lisp_Object trt,
1123                Lisp_Object inverse_trt, int posix)
1124 {
1125   /* This function has been Mule-ized, except for the trt table handling. */
1126   Bytecount len = XSTRING_LENGTH (string);
1127   Bufbyte *base_pat = XSTRING_DATA (string);
1128   REGISTER EMACS_INT i, j;
1129   Bytind p1, p2;
1130   Bytecount s1, s2;
1131   Bytind pos, lim;
1132
1133   if (running_asynch_code)
1134     save_search_regs ();
1135
1136   /* Null string is found at starting position.  */
1137   if (len == 0)
1138     {
1139       set_search_regs (buf, bufpos, 0);
1140       return bufpos;
1141     }
1142
1143   /* Searching 0 times means don't move.  */
1144   if (n == 0)
1145     return bufpos;
1146
1147   pos = bufpos_to_bytind (buf, bufpos);
1148   lim = bufpos_to_bytind (buf, buflim);
1149   if (RE && !trivial_regexp_p (string))
1150     {
1151       struct re_pattern_buffer *bufp;
1152
1153       bufp = compile_pattern (string, &search_regs, trt, posix,
1154                               ERROR_ME);
1155
1156       /* Get pointers and sizes of the two strings
1157          that make up the visible portion of the buffer. */
1158
1159       p1 = BI_BUF_BEGV (buf);
1160       p2 = BI_BUF_CEILING_OF (buf, p1);
1161       s1 = p2 - p1;
1162       s2 = BI_BUF_ZV (buf) - p2;
1163
1164       while (n < 0)
1165         {
1166           Bytecount val;
1167           QUIT;
1168           regex_emacs_buffer = buf;
1169           regex_emacs_buffer_p = 1;
1170           val = re_search_2 (bufp,
1171                              (char *) BI_BUF_BYTE_ADDRESS (buf, p1), s1,
1172                              (char *) BI_BUF_BYTE_ADDRESS (buf, p2), s2,
1173                              pos - BI_BUF_BEGV (buf), lim - pos, &search_regs,
1174                              pos - BI_BUF_BEGV (buf));
1175
1176           if (val == -2)
1177             {
1178               matcher_overflow ();
1179             }
1180           if (val >= 0)
1181             {
1182               int num_regs = search_regs.num_regs;
1183               j = BI_BUF_BEGV (buf);
1184               for (i = 0; i < num_regs; i++)
1185                 if (search_regs.start[i] >= 0)
1186                   {
1187                     search_regs.start[i] += j;
1188                     search_regs.end[i] += j;
1189                   }
1190               XSETBUFFER (last_thing_searched, buf);
1191               /* Set pos to the new position. */
1192               pos = search_regs.start[0];
1193               fixup_search_regs_for_buffer (buf);
1194               /* And bufpos too. */
1195               bufpos = search_regs.start[0];
1196             }
1197           else
1198             {
1199               return n;
1200             }
1201           n++;
1202         }
1203       while (n > 0)
1204         {
1205           Bytecount val;
1206           QUIT;
1207           regex_emacs_buffer = buf;
1208           regex_emacs_buffer_p = 1;
1209           val = re_search_2 (bufp,
1210                              (char *) BI_BUF_BYTE_ADDRESS (buf, p1), s1,
1211                              (char *) BI_BUF_BYTE_ADDRESS (buf, p2), s2,
1212                              pos - BI_BUF_BEGV (buf), lim - pos, &search_regs,
1213                              lim - BI_BUF_BEGV (buf));
1214           if (val == -2)
1215             {
1216               matcher_overflow ();
1217             }
1218           if (val >= 0)
1219             {
1220               int num_regs = search_regs.num_regs;
1221               j = BI_BUF_BEGV (buf);
1222               for (i = 0; i < num_regs; i++)
1223                 if (search_regs.start[i] >= 0)
1224                   {
1225                     search_regs.start[i] += j;
1226                     search_regs.end[i] += j;
1227                   }
1228               XSETBUFFER (last_thing_searched, buf);
1229               /* Set pos to the new position. */
1230               pos = search_regs.end[0];
1231               fixup_search_regs_for_buffer (buf);
1232               /* And bufpos too. */
1233               bufpos = search_regs.end[0];
1234             }
1235           else
1236             {
1237               return 0 - n;
1238             }
1239           n--;
1240         }
1241       return bufpos;
1242     }
1243   else                          /* non-RE case */
1244     {
1245       int charset_base = -1;
1246       int boyer_moore_ok = 1;
1247       Bufbyte *pat = 0;
1248       Bufbyte *patbuf = alloca_array (Bufbyte, len * MAX_EMCHAR_LEN);
1249       pat = patbuf;
1250 #ifdef MULE
1251       while (len > 0)
1252         {
1253           Bufbyte tmp_str[MAX_EMCHAR_LEN];
1254           Emchar c, translated, inverse;
1255           Bytecount orig_bytelen, new_bytelen, inv_bytelen;
1256
1257           /* If we got here and the RE flag is set, it's because
1258              we're dealing with a regexp known to be trivial, so the
1259              backslash just quotes the next character.  */
1260           if (RE && *base_pat == '\\')
1261             {
1262               len--;
1263               base_pat++;
1264             }
1265           c = charptr_emchar (base_pat);
1266           translated = TRANSLATE (trt, c);
1267           inverse = TRANSLATE (inverse_trt, c);
1268
1269           orig_bytelen = charcount_to_bytecount (base_pat, 1);
1270           inv_bytelen = set_charptr_emchar (tmp_str, inverse);
1271           new_bytelen = set_charptr_emchar (tmp_str, translated);
1272
1273
1274           if (new_bytelen != orig_bytelen || inv_bytelen != orig_bytelen)
1275             boyer_moore_ok = 0;
1276           if (translated != c || inverse != c)
1277             {
1278               /* Keep track of which character set row
1279                  contains the characters that need translation.  */
1280 #ifdef UTF2000
1281               int charset_base_code = c >> 6;
1282 #else
1283               int charset_base_code = c & ~CHAR_FIELD3_MASK;
1284 #endif
1285               if (charset_base == -1)
1286                 charset_base = charset_base_code;
1287               else if (charset_base != charset_base_code)
1288                 /* If two different rows appear, needing translation,
1289                    then we cannot use boyer_moore search.  */
1290                 boyer_moore_ok = 0;
1291             }
1292           memcpy (pat, tmp_str, new_bytelen);
1293           pat += new_bytelen;
1294           base_pat += orig_bytelen;
1295           len -= orig_bytelen;
1296         }
1297 #else /* not MULE */
1298       while (--len >= 0)
1299         {
1300           /* If we got here and the RE flag is set, it's because
1301              we're dealing with a regexp known to be trivial, so the
1302              backslash just quotes the next character.  */
1303           if (RE && *base_pat == '\\')
1304             {
1305               len--;
1306               base_pat++;
1307             }
1308           *pat++ = TRANSLATE (trt, *base_pat++);
1309         }
1310 #endif /* MULE */
1311       len = pat - patbuf;
1312       pat = base_pat = patbuf;
1313       if (boyer_moore_ok)
1314         return boyer_moore (buf, base_pat, len, pos, lim, n,
1315                             trt, inverse_trt, charset_base);
1316       else
1317         return simple_search (buf, base_pat, len, pos, lim, n, trt);
1318     }
1319 }
1320
1321 /* Do a simple string search N times for the string PAT,
1322    whose length is LEN/LEN_BYTE,
1323    from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1324    TRT is the translation table.
1325
1326    Return the character position where the match is found.
1327    Otherwise, if M matches remained to be found, return -M.
1328
1329    This kind of search works regardless of what is in PAT and
1330    regardless of what is in TRT.  It is used in cases where
1331    boyer_moore cannot work.  */
1332
1333 static Bufpos
1334 simple_search (struct buffer *buf, Bufbyte *base_pat, Bytecount len_byte,
1335                Bytind idx, Bytind lim, EMACS_INT n, Lisp_Object trt)
1336 {
1337   int forward = n > 0;
1338   Bytecount buf_len = 0; /* Shut up compiler. */
1339
1340   if (lim > idx)
1341     while (n > 0)
1342       {
1343         while (1)
1344           {
1345             Bytecount this_len = len_byte;
1346             Bytind this_idx = idx;
1347             Bufbyte *p = base_pat;
1348             if (idx >= lim)
1349               goto stop;
1350
1351             while (this_len > 0)
1352               {
1353                 Emchar pat_ch, buf_ch;
1354                 Bytecount pat_len;
1355
1356                 pat_ch = charptr_emchar (p);
1357                 buf_ch = BI_BUF_FETCH_CHAR (buf, this_idx);
1358
1359                 buf_ch = TRANSLATE (trt, buf_ch);
1360
1361                 if (buf_ch != pat_ch)
1362                   break;
1363
1364                 pat_len = charcount_to_bytecount (p, 1);
1365                 p += pat_len;
1366                 this_len -= pat_len;
1367                 INC_BYTIND (buf, this_idx);
1368               }
1369             if (this_len == 0)
1370               {
1371                 buf_len = this_idx - idx;
1372                 idx = this_idx;
1373                 break;
1374               }
1375             INC_BYTIND (buf, idx);
1376           }
1377         n--;
1378       }
1379   else
1380     while (n < 0)
1381       {
1382         while (1)
1383           {
1384             Bytecount this_len = len_byte;
1385             Bytind this_idx = idx;
1386             Bufbyte *p;
1387             if (idx <= lim)
1388               goto stop;
1389             p = base_pat + len_byte;
1390
1391             while (this_len > 0)
1392               {
1393                 Emchar pat_ch, buf_ch;
1394
1395                 DEC_CHARPTR (p);
1396                 DEC_BYTIND (buf, this_idx);
1397                 pat_ch = charptr_emchar (p);
1398                 buf_ch = BI_BUF_FETCH_CHAR (buf, this_idx);
1399
1400                 buf_ch = TRANSLATE (trt, buf_ch);
1401
1402                 if (buf_ch != pat_ch)
1403                   break;
1404
1405                 this_len -= charcount_to_bytecount (p, 1);
1406               }
1407             if (this_len == 0)
1408               {
1409                 buf_len = idx - this_idx;
1410                 idx = this_idx;
1411                 break;
1412               }
1413             DEC_BYTIND (buf, idx);
1414           }
1415         n++;
1416       }
1417  stop:
1418   if (n == 0)
1419     {
1420       Bufpos beg, end, retval;
1421       if (forward)
1422         {
1423           beg = bytind_to_bufpos (buf, idx - buf_len);
1424           retval = end = bytind_to_bufpos (buf, idx);
1425         }
1426       else
1427         {
1428           retval = beg = bytind_to_bufpos (buf, idx);
1429           end = bytind_to_bufpos (buf, idx + buf_len);
1430         }
1431       set_search_regs (buf, beg, end - beg);
1432
1433       return retval;
1434     }
1435   else if (n > 0)
1436     return -n;
1437   else
1438     return n;
1439 }
1440
1441 /* Do Boyer-Moore search N times for the string PAT,
1442    whose length is LEN/LEN_BYTE,
1443    from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1444    DIRECTION says which direction we search in.
1445    TRT and INVERSE_TRT are translation tables.
1446
1447    This kind of search works if all the characters in PAT that have
1448    nontrivial translation are the same aside from the last byte.  This
1449    makes it possible to translate just the last byte of a character,
1450    and do so after just a simple test of the context.
1451
1452    If that criterion is not satisfied, do not call this function.  */
1453             
1454 static Bufpos
1455 boyer_moore (struct buffer *buf, Bufbyte *base_pat, Bytecount len,
1456              Bytind pos, Bytind lim, EMACS_INT n, Lisp_Object trt,
1457              Lisp_Object inverse_trt, int charset_base)
1458 {
1459   /* #### Someone really really really needs to comment the workings
1460      of this junk somewhat better.
1461
1462      BTW "BM" stands for Boyer-Moore, which is one of the standard
1463      string-searching algorithms.  It's the best string-searching
1464      algorithm out there, provided that:
1465
1466      a) You're not fazed by algorithm complexity. (Rabin-Karp, which
1467      uses hashing, is much much easier to code but not as fast.)
1468      b) You can freely move backwards in the string that you're
1469      searching through.
1470
1471      As the comment below tries to explain (but garbles in typical
1472      programmer-ese), the idea is that you don't have to do a
1473      string match at every successive position in the text.  For
1474      example, let's say the pattern is "a very long string".  We
1475      compare the last character in the string (`g') with the
1476      corresponding character in the text.  If it mismatches, and
1477      it is, say, `z', then we can skip forward by the entire
1478      length of the pattern because `z' does not occur anywhere
1479      in the pattern.  If the mismatching character does occur
1480      in the pattern, we can usually still skip forward by more
1481      than one: e.g. if it is `l', then we can skip forward
1482      by the length of the substring "ong string" -- i.e. the
1483      largest end section of the pattern that does not contain
1484      the mismatched character.  So what we do is compute, for
1485      each possible character, the distance we can skip forward
1486      (the "stride") and use it in the string matching.  This
1487      is what the BM_tab holds. */
1488   REGISTER EMACS_INT *BM_tab;
1489   EMACS_INT *BM_tab_base;
1490   REGISTER Bytecount dirlen;
1491   EMACS_INT infinity;
1492   Bytind limit;
1493   Bytecount stride_for_teases = 0;
1494   REGISTER EMACS_INT i, j;
1495   Bufbyte *pat, *pat_end;
1496   REGISTER Bufbyte *cursor, *p_limit, *ptr2;
1497   Bufbyte simple_translate[0400];
1498   REGISTER int direction = ((n > 0) ? 1 : -1);
1499 #ifdef MULE
1500   Bufbyte translate_prev_byte = 0;
1501   Bufbyte translate_anteprev_byte = 0;
1502 #endif
1503 #ifdef C_ALLOCA
1504   EMACS_INT BM_tab_space[0400];
1505   BM_tab = &BM_tab_space[0];
1506 #else
1507   BM_tab = alloca_array (EMACS_INT, 256);
1508 #endif
1509   
1510   /* The general approach is that we are going to maintain that we
1511      know the first (closest to the present position, in whatever
1512      direction we're searching) character that could possibly be
1513      the last (furthest from present position) character of a
1514      valid match.  We advance the state of our knowledge by
1515      looking at that character and seeing whether it indeed
1516      matches the last character of the pattern.  If it does, we
1517      take a closer look.  If it does not, we move our pointer (to
1518      putative last characters) as far as is logically possible.
1519      This amount of movement, which I call a stride, will be the
1520      length of the pattern if the actual character appears nowhere
1521      in the pattern, otherwise it will be the distance from the
1522      last occurrence of that character to the end of the pattern.
1523      As a coding trick, an enormous stride is coded into the table
1524      for characters that match the last character.  This allows
1525      use of only a single test, a test for having gone past the
1526      end of the permissible match region, to test for both
1527      possible matches (when the stride goes past the end
1528      immediately) and failure to match (where you get nudged past
1529      the end one stride at a time).
1530
1531      Here we make a "mickey mouse" BM table.  The stride of the
1532      search is determined only by the last character of the
1533      putative match.  If that character does not match, we will
1534      stride the proper distance to propose a match that
1535      superimposes it on the last instance of a character that
1536      matches it (per trt), or misses it entirely if there is
1537      none. */
1538
1539   dirlen = len * direction;
1540   infinity = dirlen - (lim + pos + len + len) * direction;
1541   /* Record position after the end of the pattern.  */
1542   pat_end = base_pat + len;
1543   if (direction < 0)
1544     base_pat = pat_end - 1;
1545   BM_tab_base = BM_tab;
1546   BM_tab += 0400;
1547   j = dirlen;           /* to get it in a register */
1548   /* A character that does not appear in the pattern induces a
1549      stride equal to the pattern length. */
1550   while (BM_tab_base != BM_tab)
1551     {
1552       *--BM_tab = j;
1553       *--BM_tab = j;
1554       *--BM_tab = j;
1555       *--BM_tab = j;
1556     }
1557   /* We use this for translation, instead of TRT itself.  We
1558      fill this in to handle the characters that actually occur
1559      in the pattern.  Others don't matter anyway!  */
1560   xzero (simple_translate);
1561   for (i = 0; i < 0400; i++)
1562     simple_translate[i] = i;
1563   i = 0;
1564   while (i != infinity)
1565     {
1566       Bufbyte *ptr = base_pat + i;
1567       i += direction;
1568       if (i == dirlen)
1569         i = infinity;
1570       if (!NILP (trt))
1571         {
1572 #ifdef MULE
1573           Emchar ch, untranslated;
1574           int this_translated = 1;
1575
1576           /* Is *PTR the last byte of a character?  */
1577           if (pat_end - ptr == 1 || BUFBYTE_FIRST_BYTE_P (ptr[1]))
1578             {
1579               Bufbyte *charstart = ptr;
1580               while (!BUFBYTE_FIRST_BYTE_P (*charstart))
1581                 charstart--;
1582               untranslated = charptr_emchar (charstart);
1583 #ifdef UTF2000
1584               if (charset_base == (untranslated >> 6))
1585 #else
1586               if (charset_base == (untranslated & ~CHAR_FIELD3_MASK))
1587 #endif
1588                 {
1589                   ch = TRANSLATE (trt, untranslated);
1590                   if (!BUFBYTE_FIRST_BYTE_P (*ptr))
1591                     {
1592                       translate_prev_byte = ptr[-1];
1593                       if (!BUFBYTE_FIRST_BYTE_P (translate_prev_byte))
1594                         translate_anteprev_byte = ptr[-2];
1595                     }
1596                 }
1597               else
1598                 {
1599                   this_translated = 0;
1600                   ch = *ptr;
1601                 }
1602             }
1603           else
1604             {
1605               ch = *ptr;
1606               this_translated = 0;
1607             }
1608           if (ch > 0400)
1609             j = ((unsigned char) ch | 0200);
1610           else
1611             j = (unsigned char) ch;
1612               
1613           if (i == infinity)
1614             stride_for_teases = BM_tab[j];
1615           BM_tab[j] = dirlen - i;
1616           /* A translation table is accompanied by its inverse --
1617              see comment following downcase_table for details */
1618           if (this_translated)
1619             {
1620               Emchar starting_ch = ch;
1621               EMACS_INT starting_j = j;
1622               while (1)
1623                 {
1624                   ch = TRANSLATE (inverse_trt, ch);
1625                   if (ch > 0400)
1626                     j = ((unsigned char) ch | 0200);
1627                   else
1628                     j = (unsigned char) ch;
1629
1630                   /* For all the characters that map into CH,
1631                      set up simple_translate to map the last byte
1632                      into STARTING_J.  */
1633                   simple_translate[j] = starting_j;
1634                   if (ch == starting_ch)
1635                     break;
1636                   BM_tab[j] = dirlen - i;
1637                 }
1638             }
1639 #else
1640           EMACS_INT k;
1641           j = *ptr;
1642           k = (j = TRANSLATE (trt, j));
1643           if (i == infinity)
1644             stride_for_teases = BM_tab[j];
1645           BM_tab[j] = dirlen - i;
1646           /* A translation table is accompanied by its inverse --
1647              see comment following downcase_table for details */
1648
1649           while ((j = TRANSLATE (inverse_trt, j)) != k)
1650             {
1651               simple_translate[j] = k;
1652               BM_tab[j] = dirlen - i;
1653             }
1654 #endif
1655         }
1656       else
1657         {
1658           j = *ptr;
1659
1660           if (i == infinity)
1661             stride_for_teases = BM_tab[j];
1662           BM_tab[j] = dirlen - i;
1663         }
1664       /* stride_for_teases tells how much to stride if we get a
1665          match on the far character but are subsequently
1666          disappointed, by recording what the stride would have been
1667          for that character if the last character had been
1668          different. */
1669     }
1670   infinity = dirlen - infinity;
1671   pos += dirlen - ((direction > 0) ? direction : 0);
1672   /* loop invariant - pos points at where last char (first char if
1673      reverse) of pattern would align in a possible match.  */
1674   while (n != 0)
1675     {
1676       Bytind tail_end;
1677       Bufbyte *tail_end_ptr;
1678       /* It's been reported that some (broken) compiler thinks
1679          that Boolean expressions in an arithmetic context are
1680          unsigned.  Using an explicit ?1:0 prevents this.  */
1681       if ((lim - pos - ((direction > 0) ? 1 : 0)) * direction < 0)
1682         return n * (0 - direction);
1683       /* First we do the part we can by pointers (maybe
1684          nothing) */
1685       QUIT;
1686       pat = base_pat;
1687       limit = pos - dirlen + direction;
1688       /* XEmacs change: definitions of CEILING_OF and FLOOR_OF
1689          have changed.  See buffer.h. */
1690       limit = ((direction > 0)
1691                ? BI_BUF_CEILING_OF (buf, limit) - 1
1692                : BI_BUF_FLOOR_OF (buf, limit + 1));
1693       /* LIMIT is now the last (not beyond-last!) value POS can
1694          take on without hitting edge of buffer or the gap.  */
1695       limit = ((direction > 0)
1696                ? min (lim - 1, min (limit, pos + 20000))
1697                : max (lim, max (limit, pos - 20000)));
1698       tail_end = BI_BUF_CEILING_OF (buf, pos);
1699       tail_end_ptr = BI_BUF_BYTE_ADDRESS (buf, tail_end);
1700
1701       if ((limit - pos) * direction > 20)
1702         {
1703           p_limit = BI_BUF_BYTE_ADDRESS (buf, limit);
1704           ptr2 = (cursor = BI_BUF_BYTE_ADDRESS (buf, pos));
1705           /* In this loop, pos + cursor - ptr2 is the surrogate
1706              for pos */
1707           while (1)     /* use one cursor setting as long as i can */
1708             {
1709               if (direction > 0) /* worth duplicating */
1710                 {
1711                   /* Use signed comparison if appropriate to make
1712                      cursor+infinity sure to be > p_limit.
1713                      Assuming that the buffer lies in a range of
1714                      addresses that are all "positive" (as ints)
1715                      or all "negative", either kind of comparison
1716                      will work as long as we don't step by
1717                      infinity.  So pick the kind that works when
1718                      we do step by infinity.  */
1719                   if ((EMACS_INT) (p_limit + infinity) >
1720                       (EMACS_INT) p_limit)
1721                     while ((EMACS_INT) cursor <=
1722                            (EMACS_INT) p_limit)
1723                       cursor += BM_tab[*cursor];
1724                   else
1725                     while ((EMACS_UINT) cursor <=
1726                            (EMACS_UINT) p_limit)
1727                       cursor += BM_tab[*cursor];
1728                 }
1729               else
1730                 {
1731                   if ((EMACS_INT) (p_limit + infinity) <
1732                       (EMACS_INT) p_limit)
1733                     while ((EMACS_INT) cursor >=
1734                            (EMACS_INT) p_limit)
1735                       cursor += BM_tab[*cursor];
1736                   else
1737                     while ((EMACS_UINT) cursor >=
1738                            (EMACS_UINT) p_limit)
1739                       cursor += BM_tab[*cursor];
1740                 }
1741               /* If you are here, cursor is beyond the end of the
1742                  searched region.  This can happen if you match on
1743                  the far character of the pattern, because the
1744                  "stride" of that character is infinity, a number
1745                  able to throw you well beyond the end of the
1746                  search.  It can also happen if you fail to match
1747                  within the permitted region and would otherwise
1748                  try a character beyond that region */
1749               if ((cursor - p_limit) * direction <= len)
1750                 break;  /* a small overrun is genuine */
1751               cursor -= infinity; /* large overrun = hit */
1752               i = dirlen - direction;
1753               if (!NILP (trt))
1754                 {
1755                   while ((i -= direction) + direction != 0)
1756                     {
1757 #ifdef MULE
1758                       Emchar ch;
1759                       cursor -= direction;
1760                       /* Translate only the last byte of a character.  */
1761                       if ((cursor == tail_end_ptr
1762                            || BUFBYTE_FIRST_BYTE_P (cursor[1]))
1763                           && (BUFBYTE_FIRST_BYTE_P (cursor[0])
1764                               || (translate_prev_byte == cursor[-1]
1765                                   && (BUFBYTE_FIRST_BYTE_P (translate_prev_byte)
1766                                       || translate_anteprev_byte == cursor[-2]))))
1767                         ch = simple_translate[*cursor];
1768                       else
1769                         ch = *cursor;
1770                       if (pat[i] != ch)
1771                         break;
1772 #else
1773                       if (pat[i] != TRANSLATE (trt, *(cursor -= direction)))
1774                         break;
1775 #endif
1776                     }
1777                 }
1778               else
1779                 {
1780                   while ((i -= direction) + direction != 0)
1781                     if (pat[i] != *(cursor -= direction))
1782                       break;
1783                 }
1784               cursor += dirlen - i - direction; /* fix cursor */
1785               if (i + direction == 0)
1786                 {
1787                   cursor -= direction;
1788
1789                   {
1790                     Bytind bytstart = (pos + cursor - ptr2 +
1791                                        ((direction > 0)
1792                                         ? 1 - len : 0));
1793                     Bufpos bufstart = bytind_to_bufpos (buf, bytstart);
1794                     Bufpos bufend = bytind_to_bufpos (buf, bytstart + len);
1795
1796                     set_search_regs (buf, bufstart, bufend - bufstart);
1797                   }
1798
1799                   if ((n -= direction) != 0)
1800                     cursor += dirlen; /* to resume search */
1801                   else
1802                     return ((direction > 0)
1803                             ? search_regs.end[0] : search_regs.start[0]);
1804                 }
1805               else
1806                 cursor += stride_for_teases; /* <sigh> we lose -  */
1807             }
1808           pos += cursor - ptr2;
1809         }
1810       else
1811         /* Now we'll pick up a clump that has to be done the hard
1812            way because it covers a discontinuity */
1813         {
1814           /* XEmacs change: definitions of CEILING_OF and FLOOR_OF
1815              have changed.  See buffer.h. */
1816           limit = ((direction > 0)
1817                    ? BI_BUF_CEILING_OF (buf, pos - dirlen + 1) - 1
1818                    : BI_BUF_FLOOR_OF (buf, pos - dirlen));
1819           limit = ((direction > 0)
1820                    ? min (limit + len, lim - 1)
1821                    : max (limit - len, lim));
1822           /* LIMIT is now the last value POS can have
1823              and still be valid for a possible match.  */
1824           while (1)
1825             {
1826               /* This loop can be coded for space rather than
1827                  speed because it will usually run only once.
1828                  (the reach is at most len + 21, and typically
1829                  does not exceed len) */
1830               while ((limit - pos) * direction >= 0)
1831                 /* *not* BI_BUF_FETCH_CHAR.  We are working here
1832                    with bytes, not characters. */
1833                 pos += BM_tab[*BI_BUF_BYTE_ADDRESS (buf, pos)];
1834               /* now run the same tests to distinguish going off
1835                  the end, a match or a phony match. */
1836               if ((pos - limit) * direction <= len)
1837                 break;  /* ran off the end */
1838               /* Found what might be a match.
1839                  Set POS back to last (first if reverse) char pos.  */
1840               pos -= infinity;
1841               i = dirlen - direction;
1842               while ((i -= direction) + direction != 0)
1843                 {
1844 #ifdef MULE
1845                   Emchar ch;
1846                   Bufbyte *ptr;
1847 #endif
1848                   pos -= direction;
1849 #ifdef MULE
1850                   ptr = BI_BUF_BYTE_ADDRESS (buf, pos);
1851                   if ((ptr == tail_end_ptr
1852                        || BUFBYTE_FIRST_BYTE_P (ptr[1]))
1853                       && (BUFBYTE_FIRST_BYTE_P (ptr[0])
1854                           || (translate_prev_byte == ptr[-1]
1855                               && (BUFBYTE_FIRST_BYTE_P (translate_prev_byte)
1856                                   || translate_anteprev_byte == ptr[-2]))))
1857                     ch = simple_translate[*ptr];
1858                   else
1859                     ch = *ptr;
1860                   if (pat[i] != ch)
1861                     break;
1862                       
1863 #else
1864                   if (pat[i] != TRANSLATE (trt,
1865                                            *BI_BUF_BYTE_ADDRESS (buf, pos)))
1866                     break;
1867 #endif
1868                 }
1869               /* Above loop has moved POS part or all the way back
1870                  to the first char pos (last char pos if reverse).
1871                  Set it once again at the last (first if reverse)
1872                  char.  */
1873               pos += dirlen - i- direction;
1874               if (i + direction == 0)
1875                 {
1876                   pos -= direction;
1877
1878                   {
1879                     Bytind bytstart = (pos +
1880                                        ((direction > 0)
1881                                         ? 1 - len : 0));
1882                     Bufpos bufstart = bytind_to_bufpos (buf, bytstart);
1883                     Bufpos bufend = bytind_to_bufpos (buf, bytstart + len);
1884
1885                     set_search_regs (buf, bufstart, bufend - bufstart);
1886                   }
1887
1888                   if ((n -= direction) != 0)
1889                     pos += dirlen; /* to resume search */
1890                   else
1891                     return ((direction > 0)
1892                             ? search_regs.end[0] : search_regs.start[0]);
1893                 }
1894               else
1895                 pos += stride_for_teases;
1896             }
1897         }
1898       /* We have done one clump.  Can we continue? */
1899       if ((lim - pos) * direction < 0)
1900         return (0 - n) * direction;
1901     }
1902   return bytind_to_bufpos (buf, pos);
1903 }
1904
1905 /* Record beginning BEG and end BEG + LEN
1906    for a match just found in the current buffer.  */
1907
1908 static void
1909 set_search_regs (struct buffer *buf, Bufpos beg, Charcount len)
1910 {
1911   /* This function has been Mule-ized. */
1912   /* Make sure we have registers in which to store
1913      the match position.  */
1914   if (search_regs.num_regs == 0)
1915     {
1916       search_regs.start = xnew (regoff_t);
1917       search_regs.end   = xnew (regoff_t);
1918       search_regs.num_regs = 1;
1919     }
1920
1921   search_regs.start[0] = beg;
1922   search_regs.end[0] = beg + len;
1923   XSETBUFFER (last_thing_searched, buf);
1924 }
1925
1926 \f
1927 /* Given a string of words separated by word delimiters,
1928    compute a regexp that matches those exact words
1929    separated by arbitrary punctuation.  */
1930
1931 static Lisp_Object
1932 wordify (Lisp_Object buffer, Lisp_Object string)
1933 {
1934   Charcount i, len;
1935   EMACS_INT punct_count = 0, word_count = 0;
1936   struct buffer *buf = decode_buffer (buffer, 0);
1937   Lisp_Char_Table *syntax_table = XCHAR_TABLE (buf->mirror_syntax_table);
1938
1939   CHECK_STRING (string);
1940   len = XSTRING_CHAR_LENGTH (string);
1941
1942   for (i = 0; i < len; i++)
1943     if (!WORD_SYNTAX_P (syntax_table, string_char (XSTRING (string), i)))
1944       {
1945         punct_count++;
1946         if (i > 0 && WORD_SYNTAX_P (syntax_table,
1947                                     string_char (XSTRING (string), i - 1)))
1948           word_count++;
1949       }
1950   if (WORD_SYNTAX_P (syntax_table, string_char (XSTRING (string), len - 1)))
1951     word_count++;
1952   if (!word_count) return build_string ("");
1953
1954   {
1955     /* The following value is an upper bound on the amount of storage we
1956        need.  In non-Mule, it is exact. */
1957     Bufbyte *storage =
1958       (Bufbyte *) alloca (XSTRING_LENGTH (string) - punct_count +
1959                           5 * (word_count - 1) + 4);
1960     Bufbyte *o = storage;
1961
1962     *o++ = '\\';
1963     *o++ = 'b';
1964
1965     for (i = 0; i < len; i++)
1966       {
1967         Emchar ch = string_char (XSTRING (string), i);
1968
1969         if (WORD_SYNTAX_P (syntax_table, ch))
1970           o += set_charptr_emchar (o, ch);
1971         else if (i > 0
1972                  && WORD_SYNTAX_P (syntax_table,
1973                                    string_char (XSTRING (string), i - 1))
1974                  && --word_count)
1975           {
1976             *o++ = '\\';
1977             *o++ = 'W';
1978             *o++ = '\\';
1979             *o++ = 'W';
1980             *o++ = '*';
1981           }
1982       }
1983
1984     *o++ = '\\';
1985     *o++ = 'b';
1986
1987     return make_string (storage, o - storage);
1988   }
1989 }
1990 \f
1991 DEFUN ("search-backward", Fsearch_backward, 1, 5, "sSearch backward: ", /*
1992 Search backward from point for STRING.
1993 Set point to the beginning of the occurrence found, and return point.
1994
1995 Optional second argument LIMIT bounds the search; it is a buffer
1996 position.  The match found must not extend before that position.
1997 The value nil is equivalent to (point-min).
1998
1999 Optional third argument NOERROR, if t, means just return nil (no
2000 error) if the search fails.  If neither nil nor t, set point to LIMIT
2001 and return nil.
2002
2003 Optional fourth argument COUNT is a repeat count--search for
2004 successive occurrences.
2005
2006 Optional fifth argument BUFFER specifies the buffer to search in and
2007 defaults to the current buffer.
2008
2009 See also the functions `match-beginning', `match-end' and `replace-match'.
2010 */
2011        (string, limit, noerror, count, buffer))
2012 {
2013   return search_command (string, limit, noerror, count, buffer, -1, 0, 0);
2014 }
2015
2016 DEFUN ("search-forward", Fsearch_forward, 1, 5, "sSearch: ", /*
2017 Search forward from point for STRING.
2018 Set point to the end of the occurrence found, and return point.
2019
2020 Optional second argument LIMIT bounds the search; it is a buffer
2021 position.  The match found must not extend after that position.  The
2022 value nil is equivalent to (point-max).
2023
2024 Optional third argument NOERROR, if t, means just return nil (no
2025 error) if the search fails.  If neither nil nor t, set point to LIMIT
2026 and return nil.
2027
2028 Optional fourth argument COUNT is a repeat count--search for
2029 successive occurrences.
2030
2031 Optional fifth argument BUFFER specifies the buffer to search in and
2032 defaults to the current buffer.
2033
2034 See also the functions `match-beginning', `match-end' and `replace-match'.
2035 */
2036        (string, limit, noerror, count, buffer))
2037 {
2038   return search_command (string, limit, noerror, count, buffer, 1, 0, 0);
2039 }
2040
2041 DEFUN ("word-search-backward", Fword_search_backward, 1, 5,
2042        "sWord search backward: ", /*
2043 Search backward from point for STRING, ignoring differences in punctuation.
2044 Set point to the beginning of the occurrence found, and return point.
2045
2046 Optional second argument LIMIT bounds the search; it is a buffer
2047 position.  The match found must not extend before that position.
2048 The value nil is equivalent to (point-min).
2049
2050 Optional third argument NOERROR, if t, means just return nil (no
2051 error) if the search fails.  If neither nil nor t, set point to LIMIT
2052 and return nil.
2053
2054 Optional fourth argument COUNT is a repeat count--search for
2055 successive occurrences.
2056
2057 Optional fifth argument BUFFER specifies the buffer to search in and
2058 defaults to the current buffer.
2059
2060 See also the functions `match-beginning', `match-end' and `replace-match'.
2061 */
2062        (string, limit, noerror, count, buffer))
2063 {
2064   return search_command (wordify (buffer, string), limit, noerror, count,
2065                          buffer, -1, 1, 0);
2066 }
2067
2068 DEFUN ("word-search-forward", Fword_search_forward, 1, 5, "sWord search: ", /*
2069 Search forward from point for STRING, ignoring differences in punctuation.
2070 Set point to the end of the occurrence found, and return point.
2071
2072 Optional second argument LIMIT bounds the search; it is a buffer
2073 position.  The match found must not extend after that position.  The
2074 value nil is equivalent to (point-max).
2075
2076 Optional third argument NOERROR, if t, means just return nil (no
2077 error) if the search fails.  If neither nil nor t, set point to LIMIT
2078 and return nil.
2079
2080 Optional fourth argument COUNT is a repeat count--search for
2081 successive occurrences.
2082
2083 Optional fifth argument BUFFER specifies the buffer to search in and
2084 defaults to the current buffer.
2085
2086 See also the functions `match-beginning', `match-end' and `replace-match'.
2087 */
2088        (string, limit, noerror, count, buffer))
2089 {
2090   return search_command (wordify (buffer, string), limit, noerror, count,
2091                          buffer, 1, 1, 0);
2092 }
2093
2094 DEFUN ("re-search-backward", Fre_search_backward, 1, 5,
2095        "sRE search backward: ", /*
2096 Search backward from point for match for regular expression REGEXP.
2097 Set point to the beginning of the match, and return point.
2098 The match found is the one starting last in the buffer
2099 and yet ending before the origin of the search.
2100
2101 Optional second argument LIMIT bounds the search; it is a buffer
2102 position.  The match found must not extend before that position.
2103 The value nil is equivalent to (point-min).
2104
2105 Optional third argument NOERROR, if t, means just return nil (no
2106 error) if the search fails.  If neither nil nor t, set point to LIMIT
2107 and return nil.
2108
2109 Optional fourth argument COUNT is a repeat count--search for
2110 successive occurrences.
2111
2112 Optional fifth argument BUFFER specifies the buffer to search in and
2113 defaults to the current buffer.
2114
2115 See also the functions `match-beginning', `match-end' and `replace-match'.
2116 */
2117        (regexp, limit, noerror, count, buffer))
2118 {
2119   return search_command (regexp, limit, noerror, count, buffer, -1, 1, 0);
2120 }
2121
2122 DEFUN ("re-search-forward", Fre_search_forward, 1, 5, "sRE search: ", /*
2123 Search forward from point for regular expression REGEXP.
2124 Set point to the end of the occurrence found, and return point.
2125
2126 Optional second argument LIMIT bounds the search; it is a buffer
2127 position.  The match found must not extend after that position.  The
2128 value nil is equivalent to (point-max).
2129
2130 Optional third argument NOERROR, if t, means just return nil (no
2131 error) if the search fails.  If neither nil nor t, set point to LIMIT
2132 and return nil.
2133
2134 Optional fourth argument COUNT is a repeat count--search for
2135 successive occurrences.
2136
2137 Optional fifth argument BUFFER specifies the buffer to search in and
2138 defaults to the current buffer.
2139
2140 See also the functions `match-beginning', `match-end' and `replace-match'.
2141 */
2142        (regexp, limit, noerror, count, buffer))
2143 {
2144   return search_command (regexp, limit, noerror, count, buffer, 1, 1, 0);
2145 }
2146
2147 DEFUN ("posix-search-backward", Fposix_search_backward, 1, 5,
2148        "sPosix search backward: ", /*
2149 Search backward from point for match for regular expression REGEXP.
2150 Find the longest match in accord with Posix regular expression rules.
2151 Set point to the beginning of the match, and return point.
2152 The match found is the one starting last in the buffer
2153 and yet ending before the origin of the search.
2154
2155 Optional second argument LIMIT bounds the search; it is a buffer
2156 position.  The match found must not extend before that position.
2157 The value nil is equivalent to (point-min).
2158
2159 Optional third argument NOERROR, if t, means just return nil (no
2160 error) if the search fails.  If neither nil nor t, set point to LIMIT
2161 and return nil.
2162
2163 Optional fourth argument COUNT is a repeat count--search for
2164 successive occurrences.
2165
2166 Optional fifth argument BUFFER specifies the buffer to search in and
2167 defaults to the current buffer.
2168
2169 See also the functions `match-beginning', `match-end' and `replace-match'.
2170 */
2171        (regexp, limit, noerror, count, buffer))
2172 {
2173   return search_command (regexp, limit, noerror, count, buffer, -1, 1, 1);
2174 }
2175
2176 DEFUN ("posix-search-forward", Fposix_search_forward, 1, 5, "sPosix search: ", /*
2177 Search forward from point for regular expression REGEXP.
2178 Find the longest match in accord with Posix regular expression rules.
2179 Set point to the end of the occurrence found, and return point.
2180
2181 Optional second argument LIMIT bounds the search; it is a buffer
2182 position.  The match found must not extend after that position.  The
2183 value nil is equivalent to (point-max).
2184
2185 Optional third argument NOERROR, if t, means just return nil (no
2186 error) if the search fails.  If neither nil nor t, set point to LIMIT
2187 and return nil.
2188
2189 Optional fourth argument COUNT is a repeat count--search for
2190 successive occurrences.
2191
2192 Optional fifth argument BUFFER specifies the buffer to search in and
2193 defaults to the current buffer.
2194
2195 See also the functions `match-beginning', `match-end' and `replace-match'.
2196 */
2197        (regexp, limit, noerror, count, buffer))
2198 {
2199   return search_command (regexp, limit, noerror, count, buffer, 1, 1, 1);
2200 }
2201
2202 \f
2203 static Lisp_Object
2204 free_created_dynarrs (Lisp_Object cons)
2205 {
2206   Dynarr_free (get_opaque_ptr (XCAR (cons)));
2207   Dynarr_free (get_opaque_ptr (XCDR (cons)));
2208   free_opaque_ptr (XCAR (cons));
2209   free_opaque_ptr (XCDR (cons));
2210   free_cons (XCONS (cons));
2211   return Qnil;
2212 }
2213
2214 DEFUN ("replace-match", Freplace_match, 1, 5, 0, /*
2215 Replace text matched by last search with REPLACEMENT.
2216 If second arg FIXEDCASE is non-nil, do not alter case of replacement text.
2217 Otherwise maybe capitalize the whole text, or maybe just word initials,
2218 based on the replaced text.
2219 If the replaced text has only capital letters
2220 and has at least one multiletter word, convert REPLACEMENT to all caps.
2221 If the replaced text has at least one word starting with a capital letter,
2222 then capitalize each word in REPLACEMENT.
2223
2224 If third arg LITERAL is non-nil, insert REPLACEMENT literally.
2225 Otherwise treat `\\' as special:
2226   `\\&' in REPLACEMENT means substitute original matched text.
2227   `\\N' means substitute what matched the Nth `\\(...\\)'.
2228        If Nth parens didn't match, substitute nothing.
2229   `\\\\' means insert one `\\'.
2230   `\\u' means upcase the next character.
2231   `\\l' means downcase the next character.
2232   `\\U' means begin upcasing all following characters.
2233   `\\L' means begin downcasing all following characters.
2234   `\\E' means terminate the effect of any `\\U' or `\\L'.
2235   Case changes made with `\\u', `\\l', `\\U', and `\\L' override
2236   all other case changes that may be made in the replaced text.
2237 FIXEDCASE and LITERAL are optional arguments.
2238 Leaves point at end of replacement text.
2239
2240 The optional fourth argument STRING can be a string to modify.
2241 In that case, this function creates and returns a new string
2242 which is made by replacing the part of STRING that was matched.
2243 When fourth argument is a string, fifth argument STRBUFFER specifies
2244 the buffer to be used for syntax-table and case-table lookup and
2245 defaults to the current buffer.  When fourth argument is not a string,
2246 the buffer that the match occurred in has automatically been remembered
2247 and you do not need to specify it.
2248 */
2249        (replacement, fixedcase, literal, string, strbuffer))
2250 {
2251   /* This function has been Mule-ized. */
2252   /* This function can GC */
2253   enum { nochange, all_caps, cap_initial } case_action;
2254   Bufpos pos, last;
2255   int some_multiletter_word;
2256   int some_lowercase;
2257   int some_uppercase;
2258   int some_nonuppercase_initial;
2259   Emchar c, prevc;
2260   Charcount inslen;
2261   struct buffer *buf;
2262   Lisp_Char_Table *syntax_table;
2263   int mc_count;
2264   Lisp_Object buffer;
2265   int_dynarr *ul_action_dynarr = 0;
2266   int_dynarr *ul_pos_dynarr = 0;
2267   int speccount;
2268
2269   CHECK_STRING (replacement);
2270
2271   if (! NILP (string))
2272     {
2273       CHECK_STRING (string);
2274       if (!EQ (last_thing_searched, Qt))
2275         error ("last thing matched was not a string");
2276       /* If the match data
2277          were abstracted into a special "match data" type instead
2278          of the typical half-assed "let the implementation be
2279          visible" form it's in, we could extend it to include
2280          the last string matched and the buffer used for that
2281          matching.  But of course we can't change it as it is. */
2282       buf = decode_buffer (strbuffer, 0);
2283       XSETBUFFER (buffer, buf);
2284     }
2285   else
2286     {
2287       if (!BUFFERP (last_thing_searched))
2288         error ("last thing matched was not a buffer");
2289       buffer = last_thing_searched;
2290       buf = XBUFFER (buffer);
2291     }
2292
2293   syntax_table = XCHAR_TABLE (buf->mirror_syntax_table);
2294
2295   case_action = nochange;       /* We tried an initialization */
2296                                 /* but some C compilers blew it */
2297
2298   if (search_regs.num_regs == 0)
2299     error ("replace-match called before any match found");
2300
2301   if (NILP (string))
2302     {
2303       if (search_regs.start[0] < BUF_BEGV (buf)
2304           || search_regs.start[0] > search_regs.end[0]
2305           || search_regs.end[0] > BUF_ZV (buf))
2306         args_out_of_range (make_int (search_regs.start[0]),
2307                            make_int (search_regs.end[0]));
2308     }
2309   else
2310     {
2311       if (search_regs.start[0] < 0
2312           || search_regs.start[0] > search_regs.end[0]
2313           || search_regs.end[0] > XSTRING_CHAR_LENGTH (string))
2314         args_out_of_range (make_int (search_regs.start[0]),
2315                            make_int (search_regs.end[0]));
2316     }
2317
2318   if (NILP (fixedcase))
2319     {
2320       /* Decide how to casify by examining the matched text. */
2321
2322       last = search_regs.end[0];
2323       prevc = '\n';
2324       case_action = all_caps;
2325
2326       /* some_multiletter_word is set nonzero if any original word
2327          is more than one letter long. */
2328       some_multiletter_word = 0;
2329       some_lowercase = 0;
2330       some_nonuppercase_initial = 0;
2331       some_uppercase = 0;
2332
2333       for (pos = search_regs.start[0]; pos < last; pos++)
2334         {
2335           if (NILP (string))
2336             c = BUF_FETCH_CHAR (buf, pos);
2337           else
2338             c = string_char (XSTRING (string), pos);
2339
2340           if (LOWERCASEP (buf, c))
2341             {
2342               /* Cannot be all caps if any original char is lower case */
2343
2344               some_lowercase = 1;
2345               if (!WORD_SYNTAX_P (syntax_table, prevc))
2346                 some_nonuppercase_initial = 1;
2347               else
2348                 some_multiletter_word = 1;
2349             }
2350           else if (!NOCASEP (buf, c))
2351             {
2352               some_uppercase = 1;
2353               if (!WORD_SYNTAX_P (syntax_table, prevc))
2354                 ;
2355               else
2356                 some_multiletter_word = 1;
2357             }
2358           else
2359             {
2360               /* If the initial is a caseless word constituent,
2361                  treat that like a lowercase initial.  */
2362               if (!WORD_SYNTAX_P (syntax_table, prevc))
2363                 some_nonuppercase_initial = 1;
2364             }
2365
2366           prevc = c;
2367         }
2368
2369       /* Convert to all caps if the old text is all caps
2370          and has at least one multiletter word.  */
2371       if (! some_lowercase && some_multiletter_word)
2372         case_action = all_caps;
2373       /* Capitalize each word, if the old text has all capitalized words.  */
2374       else if (!some_nonuppercase_initial && some_multiletter_word)
2375         case_action = cap_initial;
2376       else if (!some_nonuppercase_initial && some_uppercase)
2377         /* Should x -> yz, operating on X, give Yz or YZ?
2378            We'll assume the latter.  */
2379         case_action = all_caps;
2380       else
2381         case_action = nochange;
2382     }
2383
2384   /* Do replacement in a string.  */
2385   if (!NILP (string))
2386     {
2387       Lisp_Object before, after;
2388
2389       speccount = specpdl_depth ();
2390       before = Fsubstring (string, Qzero, make_int (search_regs.start[0]));
2391       after = Fsubstring (string, make_int (search_regs.end[0]), Qnil);
2392
2393       /* Do case substitution into REPLACEMENT if desired.  */
2394       if (NILP (literal))
2395         {
2396           Charcount stlen = XSTRING_CHAR_LENGTH (replacement);
2397           Charcount strpos;
2398           /* XEmacs change: rewrote this loop somewhat to make it
2399              cleaner.  Also added \U, \E, etc. */
2400           Charcount literal_start = 0;
2401           /* We build up the substituted string in ACCUM.  */
2402           Lisp_Object accum;
2403
2404           accum = Qnil;
2405
2406           /* OK, the basic idea here is that we scan through the
2407              replacement string until we find a backslash, which
2408              represents a substring of the original string to be
2409              substituted.  We then append onto ACCUM the literal
2410              text before the backslash (LASTPOS marks the
2411              beginning of this) followed by the substring of the
2412              original string that needs to be inserted. */
2413           for (strpos = 0; strpos < stlen; strpos++)
2414             {
2415               /* If LITERAL_END is set, we've encountered a backslash
2416                  (the end of literal text to be inserted). */
2417               Charcount literal_end = -1;
2418               /* If SUBSTART is set, we need to also insert the
2419                  text from SUBSTART to SUBEND in the original string. */
2420               Charcount substart = -1;
2421               Charcount subend   = -1;
2422
2423               c = string_char (XSTRING (replacement), strpos);
2424               if (c == '\\' && strpos < stlen - 1)
2425                 {
2426                   c = string_char (XSTRING (replacement), ++strpos);
2427                   if (c == '&')
2428                     {
2429                       literal_end = strpos - 1;
2430                       substart = search_regs.start[0];
2431                       subend = search_regs.end[0];
2432                     }
2433                   else if (c >= '1' && c <= '9' &&
2434                            c <= search_regs.num_regs + '0')
2435                     {
2436                       if (search_regs.start[c - '0'] >= 0)
2437                         {
2438                           literal_end = strpos - 1;
2439                           substart = search_regs.start[c - '0'];
2440                           subend = search_regs.end[c - '0'];
2441                         }
2442                     }
2443                   else if (c == 'U' || c == 'u' || c == 'L' || c == 'l' ||
2444                            c == 'E')
2445                     {
2446                       /* Keep track of all case changes requested, but don't
2447                          make them now.  Do them later so we override
2448                          everything else. */
2449                       if (!ul_pos_dynarr)
2450                         {
2451                           ul_pos_dynarr = Dynarr_new (int);
2452                           ul_action_dynarr = Dynarr_new (int);
2453                           record_unwind_protect
2454                             (free_created_dynarrs,
2455                              noseeum_cons
2456                              (make_opaque_ptr (ul_pos_dynarr),
2457                               make_opaque_ptr (ul_action_dynarr)));
2458                         }
2459                       literal_end = strpos - 1;
2460                       Dynarr_add (ul_pos_dynarr,
2461                                   (!NILP (accum)
2462                                   ? XSTRING_CHAR_LENGTH (accum)
2463                                   : 0) + (literal_end - literal_start));
2464                       Dynarr_add (ul_action_dynarr, c);
2465                     }
2466                   else if (c == '\\')
2467                     /* So we get just one backslash. */
2468                     literal_end = strpos;
2469                 }
2470               if (literal_end >= 0)
2471                 {
2472                   Lisp_Object literal_text = Qnil;
2473                   Lisp_Object substring = Qnil;
2474                   if (literal_end != literal_start)
2475                     literal_text = Fsubstring (replacement,
2476                                                make_int (literal_start),
2477                                                make_int (literal_end));
2478                   if (substart >= 0 && subend != substart)
2479                     substring = Fsubstring (string,
2480                                             make_int (substart),
2481                                             make_int (subend));
2482                   if (!NILP (literal_text) || !NILP (substring))
2483                     accum = concat3 (accum, literal_text, substring);
2484                   literal_start = strpos + 1;
2485                 }
2486             }
2487
2488           if (strpos != literal_start)
2489             /* some literal text at end to be inserted */
2490             replacement = concat2 (accum, Fsubstring (replacement,
2491                                                       make_int (literal_start),
2492                                                       make_int (strpos)));
2493           else
2494             replacement = accum;
2495         }
2496
2497       /* replacement can be nil. */
2498       if (NILP (replacement))
2499         replacement = build_string ("");
2500
2501       if (case_action == all_caps)
2502         replacement = Fupcase (replacement, buffer);
2503       else if (case_action == cap_initial)
2504         replacement = Fupcase_initials (replacement, buffer);
2505
2506       /* Now finally, we need to process the \U's, \E's, etc. */
2507       if (ul_pos_dynarr)
2508         {
2509           int i = 0;
2510           int cur_action = 'E';
2511           Charcount stlen = XSTRING_CHAR_LENGTH (replacement);
2512           Charcount strpos;
2513
2514           for (strpos = 0; strpos < stlen; strpos++)
2515             {
2516               Emchar curchar = string_char (XSTRING (replacement), strpos);
2517               Emchar newchar = -1;
2518               if (i < Dynarr_length (ul_pos_dynarr) &&
2519                   strpos == Dynarr_at (ul_pos_dynarr, i))
2520                 {
2521                   int new_action = Dynarr_at (ul_action_dynarr, i);
2522                   i++;
2523                   if (new_action == 'u')
2524                     newchar = UPCASE (buf, curchar);
2525                   else if (new_action == 'l')
2526                     newchar = DOWNCASE (buf, curchar);
2527                   else
2528                     cur_action = new_action;
2529                 }
2530               if (newchar == -1)
2531                 {
2532                   if (cur_action == 'U')
2533                     newchar = UPCASE (buf, curchar);
2534                   else if (cur_action == 'L')
2535                     newchar = DOWNCASE (buf, curchar);
2536                   else
2537                     newchar = curchar;
2538                 }
2539               if (newchar != curchar)
2540                 set_string_char (XSTRING (replacement), strpos, newchar);
2541             }
2542         }
2543
2544       /* frees the Dynarrs if necessary. */
2545       unbind_to (speccount, Qnil);
2546       return concat3 (before, replacement, after);
2547     }
2548
2549   mc_count = begin_multiple_change (buf, search_regs.start[0],
2550                                     search_regs.end[0]);
2551
2552   /* begin_multiple_change() records an unwind-protect, so we need to
2553      record this value now. */
2554   speccount = specpdl_depth ();
2555
2556   /* We insert the replacement text before the old text, and then
2557      delete the original text.  This means that markers at the
2558      beginning or end of the original will float to the corresponding
2559      position in the replacement.  */
2560   BUF_SET_PT (buf, search_regs.start[0]);
2561   if (!NILP (literal))
2562     Finsert (1, &replacement);
2563   else
2564     {
2565       Charcount stlen = XSTRING_CHAR_LENGTH (replacement);
2566       Charcount strpos;
2567       struct gcpro gcpro1;
2568       GCPRO1 (replacement);
2569       for (strpos = 0; strpos < stlen; strpos++)
2570         {
2571           Charcount offset = BUF_PT (buf) - search_regs.start[0];
2572
2573           c = string_char (XSTRING (replacement), strpos);
2574           if (c == '\\' && strpos < stlen - 1)
2575             {
2576               c = string_char (XSTRING (replacement), ++strpos);
2577               if (c == '&')
2578                 Finsert_buffer_substring
2579                   (buffer,
2580                    make_int (search_regs.start[0] + offset),
2581                    make_int (search_regs.end[0] + offset));
2582               else if (c >= '1' && c <= '9' &&
2583                        c <= search_regs.num_regs + '0')
2584                 {
2585                   if (search_regs.start[c - '0'] >= 1)
2586                     Finsert_buffer_substring
2587                       (buffer,
2588                        make_int (search_regs.start[c - '0'] + offset),
2589                        make_int (search_regs.end[c - '0'] + offset));
2590                 }
2591               else if (c == 'U' || c == 'u' || c == 'L' || c == 'l' ||
2592                        c == 'E')
2593                 {
2594                   /* Keep track of all case changes requested, but don't
2595                      make them now.  Do them later so we override
2596                      everything else. */
2597                   if (!ul_pos_dynarr)
2598                     {
2599                       ul_pos_dynarr = Dynarr_new (int);
2600                       ul_action_dynarr = Dynarr_new (int);
2601                       record_unwind_protect
2602                         (free_created_dynarrs,
2603                          Fcons (make_opaque_ptr (ul_pos_dynarr),
2604                                 make_opaque_ptr (ul_action_dynarr)));
2605                     }
2606                   Dynarr_add (ul_pos_dynarr, BUF_PT (buf));
2607                   Dynarr_add (ul_action_dynarr, c);
2608                 }
2609               else
2610                 buffer_insert_emacs_char (buf, c);
2611             }
2612           else
2613             buffer_insert_emacs_char (buf, c);
2614         }
2615       UNGCPRO;
2616     }
2617
2618   inslen = BUF_PT (buf) - (search_regs.start[0]);
2619   buffer_delete_range (buf, search_regs.start[0] + inslen, search_regs.end[0] +
2620                        inslen, 0);
2621
2622   if (case_action == all_caps)
2623     Fupcase_region (make_int (BUF_PT (buf) - inslen),
2624                     make_int (BUF_PT (buf)),  buffer);
2625   else if (case_action == cap_initial)
2626     Fupcase_initials_region (make_int (BUF_PT (buf) - inslen),
2627                              make_int (BUF_PT (buf)), buffer);
2628
2629   /* Now go through and make all the case changes that were requested
2630      in the replacement string. */
2631   if (ul_pos_dynarr)
2632     {
2633       Bufpos eend = BUF_PT (buf);
2634       int i = 0;
2635       int cur_action = 'E';
2636
2637       for (pos = BUF_PT (buf) - inslen; pos < eend; pos++)
2638         {
2639           Emchar curchar = BUF_FETCH_CHAR (buf, pos);
2640           Emchar newchar = -1;
2641           if (i < Dynarr_length (ul_pos_dynarr) &&
2642               pos == Dynarr_at (ul_pos_dynarr, i))
2643             {
2644               int new_action = Dynarr_at (ul_action_dynarr, i);
2645               i++;
2646               if (new_action == 'u')
2647                 newchar = UPCASE (buf, curchar);
2648               else if (new_action == 'l')
2649                 newchar = DOWNCASE (buf, curchar);
2650               else
2651                 cur_action = new_action;
2652             }
2653           if (newchar == -1)
2654             {
2655               if (cur_action == 'U')
2656                 newchar = UPCASE (buf, curchar);
2657               else if (cur_action == 'L')
2658                 newchar = DOWNCASE (buf, curchar);
2659               else
2660                 newchar = curchar;
2661             }
2662           if (newchar != curchar)
2663             buffer_replace_char (buf, pos, newchar, 0, 0);
2664         }
2665     }
2666
2667   /* frees the Dynarrs if necessary. */
2668   unbind_to (speccount, Qnil);
2669   end_multiple_change (buf, mc_count);
2670
2671   return Qnil;
2672 }
2673 \f
2674 static Lisp_Object
2675 match_limit (Lisp_Object num, int beginningp)
2676 {
2677   /* This function has been Mule-ized. */
2678   int n;
2679
2680   CHECK_INT (num);
2681   n = XINT (num);
2682   if (n < 0 || n >= search_regs.num_regs)
2683     args_out_of_range (num, make_int (search_regs.num_regs));
2684   if (search_regs.num_regs == 0 ||
2685       search_regs.start[n] < 0)
2686     return Qnil;
2687   return make_int (beginningp ? search_regs.start[n] : search_regs.end[n]);
2688 }
2689
2690 DEFUN ("match-beginning", Fmatch_beginning, 1, 1, 0, /*
2691 Return position of start of text matched by last regexp search.
2692 NUM, specifies which parenthesized expression in the last regexp.
2693  Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
2694 Zero means the entire text matched by the whole regexp or whole string.
2695 */
2696        (num))
2697 {
2698   return match_limit (num, 1);
2699 }
2700
2701 DEFUN ("match-end", Fmatch_end, 1, 1, 0, /*
2702 Return position of end of text matched by last regexp search.
2703 NUM specifies which parenthesized expression in the last regexp.
2704  Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
2705 Zero means the entire text matched by the whole regexp or whole string.
2706 */
2707        (num))
2708 {
2709   return match_limit (num, 0);
2710 }
2711
2712 DEFUN ("match-data", Fmatch_data, 0, 2, 0, /*
2713 Return a list containing all info on what the last regexp search matched.
2714 Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.
2715 All the elements are markers or nil (nil if the Nth pair didn't match)
2716 if the last match was on a buffer; integers or nil if a string was matched.
2717 Use `store-match-data' to reinstate the data in this list.
2718
2719 If INTEGERS (the optional first argument) is non-nil, always use integers
2720 \(rather than markers) to represent buffer positions.
2721 If REUSE is a list, reuse it as part of the value.  If REUSE is long enough
2722 to hold all the values, and if INTEGERS is non-nil, no consing is done.
2723 */
2724        (integers, reuse))
2725 {
2726   /* This function has been Mule-ized. */
2727   Lisp_Object tail, prev;
2728   Lisp_Object *data;
2729   int i;
2730   Charcount len;
2731
2732   if (NILP (last_thing_searched))
2733     /*error ("match-data called before any match found");*/
2734     return Qnil;
2735
2736   data = alloca_array (Lisp_Object, 2 * search_regs.num_regs);
2737
2738   len = -1;
2739   for (i = 0; i < search_regs.num_regs; i++)
2740     {
2741       Bufpos start = search_regs.start[i];
2742       if (start >= 0)
2743         {
2744           if (EQ (last_thing_searched, Qt)
2745               || !NILP (integers))
2746             {
2747               data[2 * i] = make_int (start);
2748               data[2 * i + 1] = make_int (search_regs.end[i]);
2749             }
2750           else if (BUFFERP (last_thing_searched))
2751             {
2752               data[2 * i] = Fmake_marker ();
2753               Fset_marker (data[2 * i],
2754                            make_int (start),
2755                            last_thing_searched);
2756               data[2 * i + 1] = Fmake_marker ();
2757               Fset_marker (data[2 * i + 1],
2758                            make_int (search_regs.end[i]),
2759                            last_thing_searched);
2760             }
2761           else
2762             /* last_thing_searched must always be Qt, a buffer, or Qnil.  */
2763             abort ();
2764
2765           len = i;
2766         }
2767       else
2768         data[2 * i] = data [2 * i + 1] = Qnil;
2769     }
2770   if (!CONSP (reuse))
2771     return Flist (2 * len + 2, data);
2772
2773   /* If REUSE is a list, store as many value elements as will fit
2774      into the elements of REUSE.  */
2775   for (prev = Qnil, i = 0, tail = reuse; CONSP (tail); i++, tail = XCDR (tail))
2776     {
2777       if (i < 2 * len + 2)
2778         XCAR (tail) = data[i];
2779       else
2780         XCAR (tail) = Qnil;
2781       prev = tail;
2782     }
2783
2784   /* If we couldn't fit all value elements into REUSE,
2785      cons up the rest of them and add them to the end of REUSE.  */
2786   if (i < 2 * len + 2)
2787     XCDR (prev) = Flist (2 * len + 2 - i, data + i);
2788
2789   return reuse;
2790 }
2791
2792
2793 DEFUN ("store-match-data", Fstore_match_data, 1, 1, 0, /*
2794 Set internal data on last search match from elements of LIST.
2795 LIST should have been created by calling `match-data' previously.
2796 */
2797        (list))
2798 {
2799   /* This function has been Mule-ized. */
2800   REGISTER int i;
2801   REGISTER Lisp_Object marker;
2802   int num_regs;
2803   int length;
2804
2805   if (running_asynch_code)
2806     save_search_regs ();
2807
2808   CONCHECK_LIST (list);
2809
2810   /* Unless we find a marker with a buffer in LIST, assume that this
2811      match data came from a string.  */
2812   last_thing_searched = Qt;
2813
2814   /* Allocate registers if they don't already exist.  */
2815   length = XINT (Flength (list)) / 2;
2816   num_regs = search_regs.num_regs;
2817
2818   if (length > num_regs)
2819     {
2820       if (search_regs.num_regs == 0)
2821         {
2822           search_regs.start = xnew_array (regoff_t, length);
2823           search_regs.end   = xnew_array (regoff_t, length);
2824         }
2825       else
2826         {
2827           XREALLOC_ARRAY (search_regs.start, regoff_t, length);
2828           XREALLOC_ARRAY (search_regs.end,   regoff_t, length);
2829         }
2830
2831       search_regs.num_regs = length;
2832     }
2833
2834   for (i = 0; i < num_regs; i++)
2835     {
2836       marker = Fcar (list);
2837       if (NILP (marker))
2838         {
2839           search_regs.start[i] = -1;
2840           list = Fcdr (list);
2841         }
2842       else
2843         {
2844           if (MARKERP (marker))
2845             {
2846               if (XMARKER (marker)->buffer == 0)
2847                 marker = Qzero;
2848               else
2849                 XSETBUFFER (last_thing_searched, XMARKER (marker)->buffer);
2850             }
2851
2852           CHECK_INT_COERCE_MARKER (marker);
2853           search_regs.start[i] = XINT (marker);
2854           list = Fcdr (list);
2855
2856           marker = Fcar (list);
2857           if (MARKERP (marker) && XMARKER (marker)->buffer == 0)
2858             marker = Qzero;
2859
2860           CHECK_INT_COERCE_MARKER (marker);
2861           search_regs.end[i] = XINT (marker);
2862         }
2863       list = Fcdr (list);
2864     }
2865
2866   return Qnil;
2867 }
2868
2869 /* If non-zero the match data have been saved in saved_search_regs
2870    during the execution of a sentinel or filter. */
2871 static int search_regs_saved;
2872 static struct re_registers saved_search_regs;
2873
2874 /* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data
2875    if asynchronous code (filter or sentinel) is running. */
2876 static void
2877 save_search_regs (void)
2878 {
2879   if (!search_regs_saved)
2880     {
2881       saved_search_regs.num_regs = search_regs.num_regs;
2882       saved_search_regs.start = search_regs.start;
2883       saved_search_regs.end = search_regs.end;
2884       search_regs.num_regs = 0;
2885       search_regs.start = 0;
2886       search_regs.end = 0;
2887
2888       search_regs_saved = 1;
2889     }
2890 }
2891
2892 /* Called upon exit from filters and sentinels. */
2893 void
2894 restore_match_data (void)
2895 {
2896   if (search_regs_saved)
2897     {
2898       if (search_regs.num_regs > 0)
2899         {
2900           xfree (search_regs.start);
2901           xfree (search_regs.end);
2902         }
2903       search_regs.num_regs = saved_search_regs.num_regs;
2904       search_regs.start = saved_search_regs.start;
2905       search_regs.end = saved_search_regs.end;
2906
2907       search_regs_saved = 0;
2908     }
2909 }
2910
2911 /* Quote a string to inactivate reg-expr chars */
2912
2913 DEFUN ("regexp-quote", Fregexp_quote, 1, 1, 0, /*
2914 Return a regexp string which matches exactly STRING and nothing else.
2915 */
2916        (string))
2917 {
2918   REGISTER Bufbyte *in, *out, *end;
2919   REGISTER Bufbyte *temp;
2920
2921   CHECK_STRING (string);
2922
2923   temp = (Bufbyte *) alloca (XSTRING_LENGTH (string) * 2);
2924
2925   /* Now copy the data into the new string, inserting escapes. */
2926
2927   in = XSTRING_DATA (string);
2928   end = in + XSTRING_LENGTH (string);
2929   out = temp;
2930
2931   while (in < end)
2932     {
2933       Emchar c = charptr_emchar (in);
2934
2935       if (c == '[' || c == ']'
2936           || c == '*' || c == '.' || c == '\\'
2937           || c == '?' || c == '+'
2938           || c == '^' || c == '$')
2939         *out++ = '\\';
2940       out += set_charptr_emchar (out, c);
2941       INC_CHARPTR (in);
2942     }
2943
2944   return make_string (temp, out - temp);
2945 }
2946
2947 DEFUN ("set-word-regexp", Fset_word_regexp, 1, 1, 0, /*
2948 Set the regexp to be used to match a word in regular-expression searching.
2949 #### Not yet implemented.  Currently does nothing.
2950 #### Do not use this yet.  Its calling interface is likely to change.
2951 */
2952        (regexp))
2953 {
2954   return Qnil;
2955 }
2956
2957 \f
2958 /************************************************************************/
2959 /*                            initialization                            */
2960 /************************************************************************/
2961
2962 void
2963 syms_of_search (void)
2964 {
2965
2966   DEFERROR_STANDARD (Qsearch_failed, Qinvalid_operation);
2967   DEFERROR_STANDARD (Qinvalid_regexp, Qsyntax_error);
2968
2969   DEFSUBR (Flooking_at);
2970   DEFSUBR (Fposix_looking_at);
2971   DEFSUBR (Fstring_match);
2972   DEFSUBR (Fposix_string_match);
2973   DEFSUBR (Fskip_chars_forward);
2974   DEFSUBR (Fskip_chars_backward);
2975   DEFSUBR (Fskip_syntax_forward);
2976   DEFSUBR (Fskip_syntax_backward);
2977   DEFSUBR (Fsearch_forward);
2978   DEFSUBR (Fsearch_backward);
2979   DEFSUBR (Fword_search_forward);
2980   DEFSUBR (Fword_search_backward);
2981   DEFSUBR (Fre_search_forward);
2982   DEFSUBR (Fre_search_backward);
2983   DEFSUBR (Fposix_search_forward);
2984   DEFSUBR (Fposix_search_backward);
2985   DEFSUBR (Freplace_match);
2986   DEFSUBR (Fmatch_beginning);
2987   DEFSUBR (Fmatch_end);
2988   DEFSUBR (Fmatch_data);
2989   DEFSUBR (Fstore_match_data);
2990   DEFSUBR (Fregexp_quote);
2991   DEFSUBR (Fset_word_regexp);
2992 }
2993
2994 void
2995 reinit_vars_of_search (void)
2996 {
2997   int i;
2998
2999   last_thing_searched = Qnil;
3000   staticpro_nodump (&last_thing_searched);
3001
3002   for (i = 0; i < REGEXP_CACHE_SIZE; ++i)
3003     {
3004       searchbufs[i].buf.allocated = 100;
3005       searchbufs[i].buf.buffer = (unsigned char *) xmalloc (100);
3006       searchbufs[i].buf.fastmap = searchbufs[i].fastmap;
3007       searchbufs[i].regexp = Qnil;
3008       staticpro_nodump (&searchbufs[i].regexp);
3009       searchbufs[i].next = (i == REGEXP_CACHE_SIZE-1 ? 0 : &searchbufs[i+1]);
3010     }
3011   searchbuf_head = &searchbufs[0];
3012 }
3013
3014 void
3015 vars_of_search (void)
3016 {
3017   reinit_vars_of_search ();
3018
3019   DEFVAR_LISP ("forward-word-regexp", &Vforward_word_regexp /*
3020 *Regular expression to be used in `forward-word'.
3021 #### Not yet implemented.
3022 */ );
3023   Vforward_word_regexp = Qnil;
3024
3025   DEFVAR_LISP ("backward-word-regexp", &Vbackward_word_regexp /*
3026 *Regular expression to be used in `backward-word'.
3027 #### Not yet implemented.
3028 */ );
3029   Vbackward_word_regexp = Qnil;
3030 }
3031
3032 void
3033 complex_vars_of_search (void)
3034 {
3035   Vskip_chars_range_table = Fmake_range_table ();
3036   staticpro (&Vskip_chars_range_table);
3037 }