aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn2002-07-16 19:48:55 +0000
committerKen Raeburn2002-07-16 19:48:55 +0000
commit96b8056145bbc48a0641a6ddb8e2b56620a08e65 (patch)
tree43d2430344d1543dfc5b839b17e455c6b586bfe3 /src
parent27883fdd3a23ab1fbd0f39c794cd73ea43252589 (diff)
downloademacs-96b8056145bbc48a0641a6ddb8e2b56620a08e65.tar.gz
emacs-96b8056145bbc48a0641a6ddb8e2b56620a08e65.zip
(fast_c_string_match_ignore_case): String pointer args
now point to const.
Diffstat (limited to 'src')
-rw-r--r--src/search.c2
1 files changed, 1 insertions, 1 deletions
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;
473int 473int
474fast_c_string_match_ignore_case (regexp, string) 474fast_c_string_match_ignore_case (regexp, string)
475 Lisp_Object regexp; 475 Lisp_Object regexp;
476 char *string; 476 const char *string;
477{ 477{
478 int val; 478 int val;
479 struct re_pattern_buffer *bufp; 479 struct re_pattern_buffer *bufp;