diff options
| author | Kenichi Handa | 2002-07-26 04:05:16 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-07-26 04:05:16 +0000 |
| commit | 093ff45304d112743a5199cc9085379d0c0f9647 (patch) | |
| tree | f1b3a648df42fbf270cd42c6e226a8e4b61cf716 | |
| parent | 830ff83b5059107707e3031b73282c2da3319320 (diff) | |
| download | emacs-093ff45304d112743a5199cc9085379d0c0f9647.tar.gz emacs-093ff45304d112743a5199cc9085379d0c0f9647.zip | |
(Fccl_execute_on_string): Add `const' to local variables.
| -rw-r--r-- | src/ccl.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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 | ||