comparison src/coding.c @ 69344:be24f5428cef

(DECODE_EMACS_MULE_COMPOSITION_CHAR): Fix decoding ASCII component of a composition.
author Kenichi Handa <handa@m17n.org>
date Thu, 09 Mar 2006 12:20:57 +0000
parents 3bd95f4f2941
children 4f5b486af1b5 0cdee8b991e1
comparison
equal deleted inserted replaced
69343:10ae0483645d 69344:be24f5428cef
733 c = SAFE_ONE_MORE_BYTE (); \ 733 c = SAFE_ONE_MORE_BYTE (); \
734 if (c < 0xA0) \ 734 if (c < 0xA0) \
735 c = -1; \ 735 c = -1; \
736 else \ 736 else \
737 { \ 737 { \
738 c -= 0xA0; \ 738 c -= 0x80; \
739 *p++ = c; \ 739 *p++ = c; \
740 } \ 740 } \
741 } \ 741 } \
742 else if (BASE_LEADING_CODE_P (c - 0x20)) \ 742 else if (BASE_LEADING_CODE_P (c - 0x20)) \
743 { \ 743 { \