diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
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 | { |