aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/coding.c b/src/coding.c
index a4adf767f36..11a7061c837 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -2204,6 +2204,8 @@ decode_coding_iso2022 (coding, source, destination, src_bytes, dst_bytes)
2204 DECODE_COMPOSITION_END ('1'); 2204 DECODE_COMPOSITION_END ('1');
2205 src = src_base; 2205 src = src_base;
2206 c = *src++; 2206 c = *src++;
2207 if (! NILP (translation_table))
2208 c = translate_char (translation_table, c, 0, 0, 0);
2207 EMIT_CHAR (c); 2209 EMIT_CHAR (c);
2208 } 2210 }
2209 2211