changeset 36649:5dc88f9ab0ef

(detect_coding_mask): Fix the incorrect handling of arg MULTIBYTEP.
author Kenichi Handa <handa@m17n.org>
date Thu, 08 Mar 2001 02:19:18 +0000
parents b3dfa003ef9b
children a1859dfb6a1b
files src/coding.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/coding.c	Thu Mar 08 02:17:30 2001 +0000
+++ b/src/coding.c	Thu Mar 08 02:19:18 2001 +0000
@@ -3980,7 +3980,7 @@
       int try;
 
       if (multibytep && c == LEADING_CODE_8_BIT_CONTROL)
-	c = *src++ - 0x20;
+	c = src[1] - 0x20;
 
       if (c < 0xA0)
 	{