]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fccl_execute_on_string): Add `const' to local variables.
authorKenichi Handa <handa@m17n.org>
Fri, 26 Jul 2002 04:05:16 +0000 (04:05 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 26 Jul 2002 04:05:16 +0000 (04:05 +0000)
src/ccl.c

index 40c4f5e0bd04ab8150b5958d79a15215593431bf..fd535acfe82196a39c34f464f3d2a5292d4e2497 100644 (file)
--- 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.  */
   produced_chars = 0;
   while (consumed_bytes < str_bytes)
     {
-      unsigned char *p = XSTRING (str)->data + consumed_bytes;
-      unsigned char *endp = XSTRING (str)->data + str_bytes;
+      const unsigned char *p = XSTRING (str)->data + consumed_bytes;
+      const unsigned char *endp = XSTRING (str)->data + str_bytes;
       int i = 0;
       int *src, src_size;