diff options
| author | Kenichi Handa | 1998-12-15 04:35:38 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-12-15 04:35:38 +0000 |
| commit | c91beee236d43231da8dbe1edb519d61a9c828ee (patch) | |
| tree | 0014be310a524306c10b45dacc38647953ce3dff /src | |
| parent | 67bfe42d769453352e17c53b7db2e095bf7d5523 (diff) | |
| download | emacs-c91beee236d43231da8dbe1edb519d61a9c828ee.tar.gz emacs-c91beee236d43231da8dbe1edb519d61a9c828ee.zip | |
(Finsert_file_contents): Even if INSERTED is zero, if
CODING is handled by CCL program, call code_convert_region.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
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.") | |||
| 4075 | setup_raw_text_coding_system (&coding); | 4075 | setup_raw_text_coding_system (&coding); |
| 4076 | } | 4076 | } |
| 4077 | 4077 | ||
| 4078 | if (inserted > 0) | 4078 | if (inserted > 0 || coding.type == coding_type_ccl) |
| 4079 | { | 4079 | { |
| 4080 | if (CODING_MAY_REQUIRE_DECODING (&coding)) | 4080 | if (CODING_MAY_REQUIRE_DECODING (&coding)) |
| 4081 | { | 4081 | { |