]> git.eshelyaron.com Git - emacs.git/commitdiff
(fast_c_string_match_ignore_case): String pointer args
authorKen Raeburn <raeburn@raeburn.org>
Tue, 16 Jul 2002 19:48:55 +0000 (19:48 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Tue, 16 Jul 2002 19:48:55 +0000 (19:48 +0000)
now point to const.

src/search.c

index 94f2b57d6a447aad6d262d99e4a0a0886ec9d950..f795eb40abe58b194766652eb5fc8960813df465 100644 (file)
@@ -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;