summaryrefslogtreecommitdiff
path: root/src/coding.c
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2006-03-09 12:20:57 +0000
committerKenichi Handa <handa@m17n.org>2006-03-09 12:20:57 +0000
commite4fbf9605214fb1df885ff075e520c2cc891be59 (patch)
treebacfac71b053923a151cfd9eae8eeb49cdf61b75 /src/coding.c
parentc64803b1852bc557db37635681e1c8484cd16060 (diff)
downloademacs-e4fbf9605214fb1df885ff075e520c2cc891be59.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.c2
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; \
} \
} \