diff options
author | Kenichi Handa <handa@m17n.org> | 2006-03-09 12:20:57 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2006-03-09 12:20:57 +0000 |
commit | 71630f33d0acae88f1e551a8e78edc1c35ce04e1 (patch) | |
tree | 7bd66c090aa68c135a742e5478d194888b16ca3c /src/coding.c | |
parent | 61e66a158a521e1ebdaa2e547dcc98d383674a75 (diff) | |
download | emacs-71630f33d0acae88f1e551a8e78edc1c35ce04e1.tar.gz |
(DECODE_EMACS_MULE_COMPOSITION_CHAR): Fix decoding
ASCII component of a composition.
Diffstat (limited to 'src/coding.c')
-rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; \ } \ } \ |