1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-23 13:02:00 -08:00

(DECODE_COMPOSITION_END): Check for ! COMPOSING (coding)

instead of only for COMPOSITION_DISABLED.
This commit is contained in:
Richard M. Stallman 2001-12-17 14:06:08 +00:00
parent 11ea436737
commit 5b0a0d64f8

View 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; \