From c91beee236d43231da8dbe1edb519d61a9c828ee Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 15 Dec 1998 04:35:38 +0000 Subject: [PATCH] (Finsert_file_contents): Even if INSERTED is zero, if CODING is handled by CCL program, call code_convert_region. --- src/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index 4e6b620e324..7fe5b002bbe 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4075,7 +4075,7 @@ actually used.") setup_raw_text_coding_system (&coding); } - if (inserted > 0) + if (inserted > 0 || coding.type == coding_type_ccl) { if (CODING_MAY_REQUIRE_DECODING (&coding)) { -- 2.39.5