From 893cc2ae50de14d19c0a7d1e9ddb2bd3f1d63f8e Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 21 Dec 2001 08:09:51 +0000 Subject: [PATCH] (DECODE_COMPOSITION_END): Fix last change. --- src/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coding.c b/src/coding.c index 9a8b2a812e5..89cca87e129 100644 --- a/src/coding.c +++ b/src/coding.c @@ -1665,7 +1665,7 @@ coding_allocate_composition_data (coding, char_offset) #define DECODE_COMPOSITION_END(c1) \ do { \ - if (! COMPOSING (coding)) \ + if (! COMPOSING_P (coding)) \ { \ *dst++ = ISO_CODE_ESC; \ *dst++ = c1; \ -- 2.39.2