From: Kenichi Handa Date: Thu, 9 Mar 2006 12:20:57 +0000 (+0000) Subject: (DECODE_EMACS_MULE_COMPOSITION_CHAR): Fix decoding X-Git-Tag: emacs-pretest-22.0.90~3731 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=71630f33d0acae88f1e551a8e78edc1c35ce04e1;p=emacs.git (DECODE_EMACS_MULE_COMPOSITION_CHAR): Fix decoding ASCII component of a composition. --- 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; \ } \ } \