From a63063ae57cb29361ada128192d644ed450d679a Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 15 Feb 1999 10:47:36 +0000 Subject: [PATCH] (decode_coding_iso2022): Don't set coding->composed_chars to 0 here. (setup_coding_system): Set coding->composed_chars to 0 here. --- src/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coding.c b/src/coding.c index 2a2ad2136aa..45cfb053930 100644 --- a/src/coding.c +++ b/src/coding.c @@ -1043,7 +1043,6 @@ decode_coding_iso2022 (coding, source, destination, src_bytes, dst_bytes) translation_table = Vstandard_translation_table_for_decode; coding->produced_char = 0; - coding->composed_chars = 0; coding->fake_multibyte = 0; while (src < src_end && (dst_bytes ? (dst < adjusted_dst_end) @@ -2885,6 +2884,7 @@ setup_coding_system (coding_system, coding) /* Initialize remaining fields. */ coding->composing = 0; + coding->composed_chars = 0; /* Get values of coding system properties: `post-read-conversion', `pre-write-conversion', -- 2.39.2