aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2002-07-26 04:05:16 +0000
committerKenichi Handa2002-07-26 04:05:16 +0000
commit093ff45304d112743a5199cc9085379d0c0f9647 (patch)
treef1b3a648df42fbf270cd42c6e226a8e4b61cf716
parent830ff83b5059107707e3031b73282c2da3319320 (diff)
downloademacs-093ff45304d112743a5199cc9085379d0c0f9647.tar.gz
emacs-093ff45304d112743a5199cc9085379d0c0f9647.zip
(Fccl_execute_on_string): Add `const' to local variables.
-rw-r--r--src/ccl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ccl.c b/src/ccl.c
index 40c4f5e0bd0..fd535acfe82 100644
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -1935,8 +1935,8 @@ See the documentation of `define-ccl-program' for the detail of CCL program. */
1935 produced_chars = 0; 1935 produced_chars = 0;
1936 while (consumed_bytes < str_bytes) 1936 while (consumed_bytes < str_bytes)
1937 { 1937 {
1938 unsigned char *p = XSTRING (str)->data + consumed_bytes; 1938 const unsigned char *p = XSTRING (str)->data + consumed_bytes;
1939 unsigned char *endp = XSTRING (str)->data + str_bytes; 1939 const unsigned char *endp = XSTRING (str)->data + str_bytes;
1940 int i = 0; 1940 int i = 0;
1941 int *src, src_size; 1941 int *src, src_size;
1942 1942