aboutsummaryrefslogtreecommitdiffstats
path: root/src/search.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-06-09 18:01:02 +0000
committerRichard M. Stallman <[email protected]>1997-06-09 18:01:02 +0000
commitb4577c63a79ed88d95c2b585d8a6cdaedd0ce2f7 (patch)
tree708e4716b954ddf70ca9b1bee4bfa95c720f1f24 /src/search.c
parentdacc955ce6fc94400b19004a8594b893271be531 (diff)
(fast_c_string_match_ignore_case):
Renamed from fast_string_match_ignore_case. Set re_match_object.
Diffstat (limited to 'src/search.c')
-rw-r--r--src/search.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c
index 2678dc313c..790f35fd62 100644
--- a/src/search.c
+++ b/src/search.c
@@ -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;