diff options
| author | Kenichi Handa <handa@m17n.org> | 2006-02-05 02:45:48 +0000 |
|---|---|---|
| committer | Kenichi Handa <handa@m17n.org> | 2006-02-05 02:45:48 +0000 |
| commit | 730fff51c69fc227ee75d73fcc2ffb0507638804 (patch) | |
| tree | c9ab29b4915e5021f633149dd849d907bb4edec7 | |
| parent | 307f5c57467e8e967f795d47ec885bf19fd5317f (diff) | |
| download | emacs-730fff51c69fc227ee75d73fcc2ffb0507638804.tar.gz | |
Cancel incorrect synching with HEAD.
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/coding.c b/src/coding.c index f10a10e1e72..6ec0804353f 100644 --- a/src/coding.c +++ b/src/coding.c @@ -1039,7 +1039,7 @@ coding_alloc_by_making_gap (coding, bytes) make_gap (bytes); GAP_SIZE += add; ZV -= add; Z -= add; ZV_BYTE -= add; Z_BYTE -= add; } - else if (c >= 0x80) + else { Lisp_Object this_buffer; @@ -1308,8 +1308,6 @@ decode_coding_utf_8 (coding) *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); coding->errors++; } - else - return 0; no_more_source: coding->consumed_char += consumed_chars_base; |
