Mercurial > emacs
changeset 46548:cb1914307488
(encode_eol, detect_coding, detect_eol):
(decode_coding, encode_coding, detect_coding_system): Source
strings now treated as const.
(decode_coding_string, encode_coding_string): Use STRING_COPYIN to
modify Lisp string contents.
author | Ken Raeburn <raeburn@raeburn.org> |
---|---|
date | Fri, 19 Jul 2002 14:26:57 +0000 |
parents | ac377294d1f1 |
children | f0ddb5c7cf46 |
files | src/coding.c |
diffstat | 1 files changed, 30 insertions(+), 26 deletions(-) [+] |
line wrap: on
line diff
--- a/src/coding.c Fri Jul 19 14:26:53 2002 +0000 +++ b/src/coding.c Fri Jul 19 14:26:57 2002 +0000 @@ -1061,7 +1061,7 @@ } while (0) -static void encode_eol P_ ((struct coding_system *, unsigned char *, +static void encode_eol P_ ((struct coding_system *, const unsigned char *, unsigned char *, int, int)); static void @@ -3236,12 +3236,13 @@ static void encode_eol (coding, source, destination, src_bytes, dst_bytes) struct coding_system *coding; - unsigned char *source, *destination; + const unsigned char *source; + unsigned char *destination; int src_bytes, dst_bytes; { - unsigned char *src = source; + const unsigned char *src = source; unsigned char *dst = destination; - unsigned char *src_end = src + src_bytes; + const unsigned char *src_end = src + src_bytes; unsigned char *dst_end = dst + dst_bytes; Lisp_Object translation_table; /* SRC_BASE remembers the start position in source in each loop. @@ -3249,7 +3250,8 @@ analyze multi-byte codes (within macro ONE_MORE_CHAR), or when there's not enough destination area to produce encoded codes (within macro EMIT_BYTES). */ - unsigned char *src_base; + const unsigned char *src_base; + unsigned char *tmp; int c; int selective_display = coding->mode & CODING_MODE_SELECTIVE_DISPLAY; @@ -3299,13 +3301,13 @@ } if (coding->eol_type == CODING_EOL_CR) { - for (src = destination; src < dst; src++) - if (*src == '\n') *src = '\r'; + for (tmp = destination; tmp < dst; tmp++) + if (*tmp == '\n') *tmp = '\r'; } else if (selective_display) { - for (src = destination; src < dst; src++) - if (*src == '\r') *src = '\n'; + for (tmp = destination; tmp < dst; tmp++) + if (*tmp == '\r') *tmp = '\n'; } } if (coding->src_multibyte) @@ -4094,7 +4096,7 @@ void detect_coding (coding, src, src_bytes) struct coding_system *coding; - unsigned char *src; + const unsigned char *src; int src_bytes; { unsigned int idx; @@ -4267,7 +4269,7 @@ void detect_eol (coding, src, src_bytes) struct coding_system *coding; - unsigned char *src; + const unsigned char *src; int src_bytes; { Lisp_Object val; @@ -4685,7 +4687,8 @@ int decode_coding (coding, source, destination, src_bytes, dst_bytes) struct coding_system *coding; - unsigned char *source, *destination; + const unsigned char *source; + unsigned char *destination; int src_bytes, dst_bytes; { int extra = 0; @@ -4764,7 +4767,7 @@ if (coding->mode & CODING_MODE_LAST_BLOCK && coding->result == CODING_FINISH_INSUFFICIENT_SRC) { - unsigned char *src = source + coding->consumed; + const unsigned char *src = source + coding->consumed; unsigned char *dst = destination + coding->produced; src_bytes -= coding->consumed; @@ -4798,7 +4801,8 @@ int encode_coding (coding, source, destination, src_bytes, dst_bytes) struct coding_system *coding; - unsigned char *source, *destination; + const unsigned char *source; + unsigned char *destination; int src_bytes, dst_bytes; { coding->produced = coding->produced_char = 0; @@ -4840,7 +4844,7 @@ if (coding->mode & CODING_MODE_LAST_BLOCK && coding->result == CODING_FINISH_INSUFFICIENT_SRC) { - unsigned char *src = source + coding->consumed; + const unsigned char *src = source + coding->consumed; unsigned char *dst = destination + coding->produced; if (coding->type == coding_type_iso2022) @@ -6014,12 +6018,12 @@ else newstr = make_uninit_string (produced + shrinked_bytes); if (from > 0) - bcopy (SDATA (str), SDATA (newstr), from); - bcopy (buf.data, SDATA (newstr) + from, produced); + STRING_COPYIN (newstr, 0, SDATA (str), from); + STRING_COPYIN (newstr, from, buf.data, produced); if (shrinked_bytes > from) - bcopy (SDATA (str) + to_byte, - SDATA (newstr) + from + produced, - shrinked_bytes - from); + STRING_COPYIN (newstr, from + produced, + SDATA (str) + to_byte, + shrinked_bytes - from); free_conversion_buffer (&buf); if (coding->cmp_data && coding->cmp_data->used) @@ -6114,12 +6118,12 @@ newstr = make_uninit_string (produced + shrinked_bytes); if (from > 0) - bcopy (SDATA (str), SDATA (newstr), from); - bcopy (buf.data, SDATA (newstr) + from, produced); + STRING_COPYIN (newstr, 0, SDATA (str), from); + STRING_COPYIN (newstr, from, buf.data, produced); if (shrinked_bytes > from) - bcopy (SDATA (str) + to_byte, - SDATA (newstr) + from + produced, - shrinked_bytes - from); + STRING_COPYIN (newstr, from + produced, + SDATA (str) + to_byte, + shrinked_bytes - from); free_conversion_buffer (&buf); coding_free_composition_data (coding); @@ -6197,7 +6201,7 @@ Lisp_Object detect_coding_system (src, src_bytes, highest, multibytep) - unsigned char *src; + const unsigned char *src; int src_bytes, highest; int multibytep; {