From 96b8056145bbc48a0641a6ddb8e2b56620a08e65 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Tue, 16 Jul 2002 19:48:55 +0000 Subject: [PATCH] (fast_c_string_match_ignore_case): String pointer args now point to const. --- src/search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.c b/src/search.c index 94f2b57d6a4..f795eb40abe 100644 --- a/src/search.c +++ b/src/search.c @@ -473,7 +473,7 @@ extern Lisp_Object Vascii_downcase_table; int fast_c_string_match_ignore_case (regexp, string) Lisp_Object regexp; - char *string; + const char *string; { int val; struct re_pattern_buffer *bufp; -- 2.39.5