]> git.eshelyaron.com Git - emacs.git/commitdiff
(fast_c_string_match_ignore_case):
authorRichard M. Stallman <rms@gnu.org>
Mon, 9 Jun 1997 18:01:02 +0000 (18:01 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 9 Jun 1997 18:01:02 +0000 (18:01 +0000)
Renamed from fast_string_match_ignore_case.  Set re_match_object.

src/search.c

index 2678dc313ce8354ee63b907021339dfbbd94cef0..790f35fd62603d85b498ea21d2fea788b716e221 100644 (file)
@@ -394,7 +394,7 @@ fast_string_match (regexp, string)
 extern Lisp_Object Vascii_downcase_table;
 
 int
-fast_string_match_ignore_case (regexp, string)
+fast_c_string_match_ignore_case (regexp, string)
      Lisp_Object regexp;
      char *string;
 {
@@ -402,6 +402,7 @@ fast_string_match_ignore_case (regexp, string)
   struct re_pattern_buffer *bufp;
   int len = strlen (string);
 
+  re_match_object = Qt;
   bufp = compile_pattern (regexp, 0,
                          XCHAR_TABLE (Vascii_downcase_table)->contents, 0);
   immediate_quit = 1;