# HG changeset patch # User Richard M. Stallman # Date 1008597907 0 # Node ID e5356ff675e3ae59a9c6cde30ac7aca7748fa3a7 # Parent 9efbf5ef4ae7f40d370863c853544f0c3f6dc540 (DECODE_COMPOSITION_END): Check for ! COMPOSING (coding) instead of only for COMPOSITION_DISABLED. diff -r 9efbf5ef4ae7 -r e5356ff675e3 src/coding.c --- 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; \