diff options
author | Kenichi Handa <handa@m17n.org> | 2000-05-25 06:21:51 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-05-25 06:21:51 +0000 |
commit | 68b283cca6467f8e2a343b13f80658174e1fcc3c (patch) | |
tree | fd7794ed2726d38aacba84601d63aad6935378e4 /src/ccl.c | |
parent | a4e1759ef0fb6fcd9e41e45fc39430044710a561 (diff) | |
download | emacs-68b283cca6467f8e2a343b13f80658174e1fcc3c.tar.gz |
(ccl_driver): Fix previous change.
Diffstat (limited to 'src/ccl.c')
-rw-r--r-- | src/ccl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |