diff options
| author | Kenichi Handa | 2000-05-25 06:21:51 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-05-25 06:21:51 +0000 |
| commit | 68b283cca6467f8e2a343b13f80658174e1fcc3c (patch) | |
| tree | fd7794ed2726d38aacba84601d63aad6935378e4 /src | |
| parent | a4e1759ef0fb6fcd9e41e45fc39430044710a561 (diff) | |
| download | emacs-68b283cca6467f8e2a343b13f80658174e1fcc3c.tar.gz emacs-68b283cca6467f8e2a343b13f80658174e1fcc3c.zip | |
(ccl_driver): Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ccl.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -1193,7 +1193,7 @@ ccl_driver (ccl, source, destination, src_bytes, dst_bytes, consumed) | |||
| 1193 | } | 1193 | } |
| 1194 | else if (i == LEADING_CODE_8_BIT_CONTROL) | 1194 | else if (i == LEADING_CODE_8_BIT_CONTROL) |
| 1195 | { | 1195 | { |
| 1196 | if ((src + 1) >= src_end) | 1196 | if (src >= src_end) |
| 1197 | goto ccl_read_multibyte_character_suspend; | 1197 | goto ccl_read_multibyte_character_suspend; |
| 1198 | reg[RRR] = CHARSET_8_BIT_CONTROL; | 1198 | reg[RRR] = CHARSET_8_BIT_CONTROL; |
| 1199 | reg[rrr] = (*src++ - 0x20); | 1199 | reg[rrr] = (*src++ - 0x20); |