changeset 42103:e5356ff675e3

(DECODE_COMPOSITION_END): Check for ! COMPOSING (coding) instead of only for COMPOSITION_DISABLED.
author Richard M. Stallman <rms@gnu.org>
date Mon, 17 Dec 2001 14:05:07 +0000
parents 9efbf5ef4ae7
children d69c2368e549
files src/coding.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/coding.c	Mon Dec 17 14:04:46 2001 +0000
+++ b/src/coding.c	Mon Dec 17 14:05:07 2001 +0000
@@ -1665,7 +1665,7 @@
 
 #define DECODE_COMPOSITION_END(c1)					\
   do {									\
-    if (coding->composing == COMPOSITION_DISABLED)			\
+    if (! COMPOSING (coding))						\
       {									\
 	*dst++ = ISO_CODE_ESC;						\
 	*dst++ = c1;							\