From: Kenichi Handa Date: Thu, 22 Jan 1998 01:26:45 +0000 (+0000) Subject: (struct Lisp_Process): New members decoding_carryover X-Git-Tag: emacs-20.3~2360 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=095d64ee6e6f98c6468ff6820ecd17dd1c939d39;p=emacs.git (struct Lisp_Process): New members decoding_carryover and encoding_carryover. --- diff --git a/src/process.h b/src/process.h index dbfc69f5f10..c163bcdb622 100644 --- a/src/process.h +++ b/src/process.h @@ -79,10 +79,14 @@ struct Lisp_Process Lisp_Object decode_coding_system; /* Working buffer for decoding. */ Lisp_Object decoding_buf; + /* Size of carryover in decoding. */ + Lisp_Object decoding_carryover; /* Coding-system for encoding the output to this process. */ Lisp_Object encode_coding_system; /* Working buffer for encoding. */ Lisp_Object encoding_buf; + /* Size of carryover in encoding. */ + Lisp_Object encoding_carryover; }; #define ChannelMask(n) (1<<(n))