1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 11:00:45 -08:00

coding.c (detect_coding_emacs_mule): Fix checking of multibyte sequence when the source is multibyte.

This commit is contained in:
Kenichi Handa 2010-09-07 20:08:46 +09:00
parent d419e1d94e
commit 396475b7c1
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-09-07 Kenichi Handa <handa@m17n.org>
* coding.c (detect_coding_emacs_mule): Fix checking of multibyte
sequence when the source is multibyte.
2010-08-31 Kenichi Handa <handa@m17n.org>
* dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit

View file

@ -2031,7 +2031,7 @@ detect_coding_emacs_mule (coding, detect_info)
}
else
{
int more_bytes = emacs_mule_bytes[*src_base] - 1;
int more_bytes = emacs_mule_bytes[c] - 1;
while (more_bytes > 0)
{