1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 07:41:28 -08:00

(Finsert_file_contents): Even if INSERTED is zero, if

CODING is handled by CCL program, call code_convert_region.
This commit is contained in:
Kenichi Handa 1998-12-15 04:35:38 +00:00
parent 67bfe42d76
commit c91beee236

View file

@ -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))
{