From 62b3ef1d94dab13f264dd1c5dbb6f67a5a235f36 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Fri, 13 Oct 2000 08:01:24 +0000 Subject: [PATCH] (code_convert_region): Be sure to initialize coding->category_idx. --- src/coding.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/coding.c b/src/coding.c index fa079a749c..6d2e6d9c45 100644 --- a/src/coding.c +++ b/src/coding.c @@ -4800,11 +4800,14 @@ code_convert_region (from, from_byte, to, to_byte, coding, encodep, replace) { detect_coding (coding, BYTE_POS_ADDR (from_byte), len_byte); if (coding->type == coding_type_undecided) - /* It seems that the text contains only ASCII, but we - should not left it undecided because the deeper - decoding routine (decode_coding) tries to detect the - encodings again in vain. */ - coding->type = coding_type_emacs_mule; + { + /* It seems that the text contains only ASCII, but we + should not left it undecided because the deeper + decoding routine (decode_coding) tries to detect the + encodings again in vain. */ + coding->type = coding_type_emacs_mule; + coding->category_idx = CODING_CATEGORY_IDX_EMACS_MULE; + } } if (coding->eol_type == CODING_EOL_UNDECIDED && coding->type != coding_type_ccl) -- 2.20.1