diff 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
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;						\
 	  }							\
       }								\