diff src/search.c @ 18193:4e4c8edb56da

(fast_c_string_match_ignore_case): Renamed from fast_string_match_ignore_case. Set re_match_object.
author Richard M. Stallman <rms@gnu.org>
date Mon, 09 Jun 1997 18:01:02 +0000
parents 6f2c80d2425a
children 12c0de0113af
line wrap: on
line diff
--- a/src/search.c	Mon Jun 09 18:00:36 1997 +0000
+++ b/src/search.c	Mon Jun 09 18:01:02 1997 +0000
@@ -394,7 +394,7 @@
 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 @@
   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;