From 71630f33d0acae88f1e551a8e78edc1c35ce04e1 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 9 Mar 2006 12:20:57 +0000 Subject: [PATCH] (DECODE_EMACS_MULE_COMPOSITION_CHAR): Fix decoding ASCII component of a composition. --- src/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coding.c b/src/coding.c index b96ec82fc16..105d4038b1f 100644 --- a/src/coding.c +++ b/src/coding.c @@ -735,7 +735,7 @@ detect_coding_emacs_mule (src, src_end, multibytep) c = -1; \ else \ { \ - c -= 0xA0; \ + c -= 0x80; \ *p++ = c; \ } \ } \ -- 2.39.2