From fabf4a91cf08d2927b8eb3104d3c05da9ba0d771 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pavel=20Jan=C3=ADk?= Date: Fri, 9 Nov 2001 08:02:08 +0000 Subject: [PATCH] (encode_coding): Use precomputed value of `src'. (encode_coding): Remove unused variable `src_end'. (code_convert_region): Remove unused variables `count'. --- src/ChangeLog | 4 ++++ src/coding.c | 5 +---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 5cee3a4b94..4ac5ee5296 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -8,6 +8,10 @@ * indent.c (current_column_1): Remove unused variable `prev_col'. + * coding.c (encode_coding): Use precomputed value of `src'. + (encode_coding): Remove unused variable `src_end'. + (code_convert_region): Remove unused variables `count'. + 2001-11-07 Jason Rumney * w32term.c (x_display_and_set_cursor): Do not move system caret diff --git a/src/coding.c b/src/coding.c index f512242955..6824df089a 100644 --- a/src/coding.c +++ b/src/coding.c @@ -4827,7 +4827,6 @@ encode_coding (coding, source, destination, src_bytes, dst_bytes) && coding->result == CODING_FINISH_INSUFFICIENT_SRC) { unsigned char *src = source + coding->consumed; - unsigned char *src_end = src + src_bytes; unsigned char *dst = destination + coding->produced; if (coding->type == coding_type_iso2022) @@ -4838,7 +4837,7 @@ encode_coding (coding, source, destination, src_bytes, dst_bytes) { int len = src_bytes - coding->consumed; - BCOPY_SHORT (source + coding->consumed, dst, len); + BCOPY_SHORT (src, dst, len); if (coding->src_multibyte) len = str_as_unibyte (dst, len); dst += len; @@ -5394,7 +5393,6 @@ code_convert_region (from, from_byte, to, to_byte, coding, encodep, replace) new buffer. */ struct buffer *prev = current_buffer; Lisp_Object new; - int count = specpdl_ptr - specpdl; record_unwind_protect (code_convert_region_unwind, Qnil); /* We should not call any more pre-write/post-read-conversion @@ -5728,7 +5726,6 @@ code_convert_region (from, from_byte, to, to_byte, coding, encodep, replace) && ! encodep && ! NILP (coding->post_read_conversion)) { Lisp_Object val; - int count = specpdl_ptr - specpdl; if (from != PT) TEMP_SET_PT_BOTH (from, from_byte); -- 2.20.1