From 67091e5974ef1fedb18ee459c274d82878954d24 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 8 Mar 2001 02:19:18 +0000 Subject: [PATCH] (detect_coding_mask): Fix the incorrect handling of arg MULTIBYTEP. --- src/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coding.c b/src/coding.c index 7abf28647ad..72f773fb2e1 100644 --- a/src/coding.c +++ b/src/coding.c @@ -3980,7 +3980,7 @@ detect_coding_mask (source, src_bytes, priorities, skip, multibytep) int try; if (multibytep && c == LEADING_CODE_8_BIT_CONTROL) - c = *src++ - 0x20; + c = src[1] - 0x20; if (c < 0xA0) { -- 2.39.5