(DECODE_COMPOSITION_END): Check for ! COMPOSING (coding)
authorRichard M. Stallman <rms@gnu.org>
Mon, 17 Dec 2001 14:05:07 +0000 (14:05 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 17 Dec 2001 14:05:07 +0000 (14:05 +0000)
instead of only for COMPOSITION_DISABLED.

src/coding.c

index f2dde66..9c45a65 100644 (file)
@@ -1665,7 +1665,7 @@ coding_allocate_composition_data (coding, char_offset)
 
 #define DECODE_COMPOSITION_END(c1)                                     \
   do {                                                                 \
-    if (coding->composing == COMPOSITION_DISABLED)                     \
+    if (! COMPOSING (coding))                                          \
       {                                                                        \
        *dst++ = ISO_CODE_ESC;                                          \
        *dst++ = c1;                                                    \