]> git.eshelyaron.com Git - emacs.git/commitdiff
(DECODE_EMACS_MULE_COMPOSITION_CHAR): Fix decoding
authorKenichi Handa <handa@m17n.org>
Thu, 9 Mar 2006 12:20:57 +0000 (12:20 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 9 Mar 2006 12:20:57 +0000 (12:20 +0000)
ASCII component of a composition.

src/coding.c

index b96ec82fc16aceeb9b9db8a56b94f7a1276ade31..105d4038b1f59aa08aafc1f76c2d2a1024312afe 100644 (file)
@@ -735,7 +735,7 @@ detect_coding_emacs_mule (src, src_end, multibytep)
          c = -1;                                               \
        else                                                    \
          {                                                     \
-           c -= 0xA0;                                          \
+           c -= 0x80;                                          \
            *p++ = c;                                           \
          }                                                     \
       }                                                                \