# HG changeset patch # User Kenichi Handa # Date 913696538 0 # Node ID 0d713a8426b64c8b832369a6366875ffd6fb231e # Parent 2d62a16117512da41e0756ed7e0cd209ef06c841 (Finsert_file_contents): Even if INSERTED is zero, if CODING is handled by CCL program, call code_convert_region. diff -r 2d62a1611751 -r 0d713a8426b6 src/fileio.c --- a/src/fileio.c Tue Dec 15 04:35:38 1998 +0000 +++ b/src/fileio.c Tue Dec 15 04:35:38 1998 +0000 @@ -4075,7 +4075,7 @@ setup_raw_text_coding_system (&coding); } - if (inserted > 0) + if (inserted > 0 || coding.type == coding_type_ccl) { if (CODING_MAY_REQUIRE_DECODING (&coding)) {