From: Kenichi Handa Date: Thu, 25 May 2000 06:21:51 +0000 (+0000) Subject: (ccl_driver): Fix previous change. X-Git-Tag: emacs-pretest-21.0.90~3728 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=68b283cca6467f8e2a343b13f80658174e1fcc3c;p=emacs.git (ccl_driver): Fix previous change. --- diff --git a/src/ccl.c b/src/ccl.c index b9840c90ac0..0ab2bcb3310 100644 --- a/src/ccl.c +++ b/src/ccl.c @@ -1193,7 +1193,7 @@ ccl_driver (ccl, source, destination, src_bytes, dst_bytes, consumed) } else if (i == LEADING_CODE_8_BIT_CONTROL) { - if ((src + 1) >= src_end) + if (src >= src_end) goto ccl_read_multibyte_character_suspend; reg[RRR] = CHARSET_8_BIT_CONTROL; reg[rrr] = (*src++ - 0x20);