aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorRichard M. Stallman2001-12-17 14:05:07 +0000
committerRichard M. Stallman2001-12-17 14:05:07 +0000
commitc8446041d5248f2cba5b0252421213230ec37903 (patch)
tree2a061b4f7d17d3bc4457d7935d83cb2723f7e441 /src/coding.c
parent905cc05a02c439d572adb92ced384c585101ed0a (diff)
downloademacs-c8446041d5248f2cba5b0252421213230ec37903.tar.gz
emacs-c8446041d5248f2cba5b0252421213230ec37903.zip
(DECODE_COMPOSITION_END): Check for ! COMPOSING (coding)
instead of only for COMPOSITION_DISABLED.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index f2dde6695da..9c45a65ff88 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -1665,7 +1665,7 @@ coding_allocate_composition_data (coding, char_offset)
1665 1665
1666#define DECODE_COMPOSITION_END(c1) \ 1666#define DECODE_COMPOSITION_END(c1) \
1667 do { \ 1667 do { \
1668 if (coding->composing == COMPOSITION_DISABLED) \ 1668 if (! COMPOSING (coding)) \
1669 { \ 1669 { \
1670 *dst++ = ISO_CODE_ESC; \ 1670 *dst++ = ISO_CODE_ESC; \
1671 *dst++ = c1; \ 1671 *dst++ = c1; \