From c3912f23e3becd31ba3d7d86cbeac00f88046fee Mon Sep 17 00:00:00 2001 From: Kim F. Storm Date: Fri, 3 Jun 2005 23:02:50 +0000 Subject: (decode_coding_string): Handle CODING_FINISH_INTERRUPT. --- src/coding.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/coding.c') diff --git a/src/coding.c b/src/coding.c index a0e22184d3c..a7a78bbe2c0 100644 --- a/src/coding.c +++ b/src/coding.c @@ -6260,6 +6260,7 @@ decode_coding_string (str, coding, nocopy) produced += coding->produced; produced_char += coding->produced_char; if (result == CODING_FINISH_NORMAL + || result == CODING_FINISH_INTERRUPT || (result == CODING_FINISH_INSUFFICIENT_SRC && coding->consumed == 0)) break; -- cgit v1.2.1 From 737ccba9d952f6a45cce4fda8ba7a9a31f033b4c Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 13 Jun 2005 20:47:42 +0000 Subject: (run_pre_post_conversion_on_str): Remove unused var `buf'. --- src/coding.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/coding.c') diff --git a/src/coding.c b/src/coding.c index a7a78bbe2c0..0c4ec1eebc5 100644 --- a/src/coding.c +++ b/src/coding.c @@ -6060,7 +6060,6 @@ run_pre_post_conversion_on_str (str, coding, encodep) int count = SPECPDL_INDEX (); struct gcpro gcpro1, gcpro2; int multibyte = STRING_MULTIBYTE (str); - struct buffer *buf; Lisp_Object old_deactivate_mark; record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); -- cgit v1.2.1