From: Kenichi Handa Date: Thu, 8 Mar 2001 02:19:18 +0000 (+0000) Subject: (detect_coding_mask): Fix the incorrect handling of arg MULTIBYTEP. X-Git-Tag: emacs-pretest-21.0.100~132 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=67091e5974ef1fedb18ee459c274d82878954d24;p=emacs.git (detect_coding_mask): Fix the incorrect handling of arg MULTIBYTEP. --- 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) {