# HG changeset patch # User Kenichi Handa # Date 919075656 0 # Node ID 4efecaf73aacd5e6e29d196f2b4863b9dc0d5e6d # Parent 382a7de604b6d0c719f4b8f2a35289ab3de1fc34 (decode_coding_iso2022): Don't set coding->composed_chars to 0 here. (setup_coding_system): Set coding->composed_chars to 0 here. diff -r 382a7de604b6 -r 4efecaf73aac src/coding.c --- a/src/coding.c Sun Feb 14 06:00:44 1999 +0000 +++ b/src/coding.c Mon Feb 15 10:47:36 1999 +0000 @@ -1043,7 +1043,6 @@ 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 @@ /* Initialize remaining fields. */ coding->composing = 0; + coding->composed_chars = 0; /* Get values of coding system properties: `post-read-conversion', `pre-write-conversion',