diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index f7da394def1..7111862b656 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -6056,7 +6056,6 @@ run_pre_post_conversion_on_str (str, coding, encodep) | |||
| 6056 | int count = SPECPDL_INDEX (); | 6056 | int count = SPECPDL_INDEX (); |
| 6057 | struct gcpro gcpro1, gcpro2; | 6057 | struct gcpro gcpro1, gcpro2; |
| 6058 | int multibyte = STRING_MULTIBYTE (str); | 6058 | int multibyte = STRING_MULTIBYTE (str); |
| 6059 | struct buffer *buf; | ||
| 6060 | Lisp_Object old_deactivate_mark; | 6059 | Lisp_Object old_deactivate_mark; |
| 6061 | 6060 | ||
| 6062 | record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | 6061 | record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); |
| @@ -6256,6 +6255,7 @@ decode_coding_string (str, coding, nocopy) | |||
| 6256 | produced += coding->produced; | 6255 | produced += coding->produced; |
| 6257 | produced_char += coding->produced_char; | 6256 | produced_char += coding->produced_char; |
| 6258 | if (result == CODING_FINISH_NORMAL | 6257 | if (result == CODING_FINISH_NORMAL |
| 6258 | || result == CODING_FINISH_INTERRUPT | ||
| 6259 | || (result == CODING_FINISH_INSUFFICIENT_SRC | 6259 | || (result == CODING_FINISH_INSUFFICIENT_SRC |
| 6260 | && coding->consumed == 0)) | 6260 | && coding->consumed == 0)) |
| 6261 | break; | 6261 | break; |