changeset 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 10ae0483645d
children 1353060b05ae
files src/coding.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/coding.c	Thu Mar 09 07:11:51 2006 +0000
+++ b/src/coding.c	Thu Mar 09 12:20:57 2006 +0000
@@ -735,7 +735,7 @@
 	  c = -1;						\
 	else							\
 	  {							\
-	    c -= 0xA0;						\
+	    c -= 0x80;						\
 	    *p++ = c;						\
 	  }							\
       }								\