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:
parent
67bfe42d76
commit
c91beee236
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue