aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorKenichi Handa2001-03-08 02:19:18 +0000
committerKenichi Handa2001-03-08 02:19:18 +0000
commit67091e5974ef1fedb18ee459c274d82878954d24 (patch)
tree2b1993b808584fa5948c4e0f518c760f796a5fda /src/coding.c
parenta1b12fe90edda957f36a50e6a8274ea9f1b2f4b4 (diff)
downloademacs-67091e5974ef1fedb18ee459c274d82878954d24.tar.gz
emacs-67091e5974ef1fedb18ee459c274d82878954d24.zip
(detect_coding_mask): Fix the incorrect handling of arg MULTIBYTEP.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c2
1 files changed, 1 insertions, 1 deletions
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)
3980 int try; 3980 int try;
3981 3981
3982 if (multibytep && c == LEADING_CODE_8_BIT_CONTROL) 3982 if (multibytep && c == LEADING_CODE_8_BIT_CONTROL)
3983 c = *src++ - 0x20; 3983 c = src[1] - 0x20;
3984 3984
3985 if (c < 0xA0) 3985 if (c < 0xA0)
3986 { 3986 {