# HG changeset patch # User Kenichi Handa # Date 885432405 0 # Node ID ead6c5a556e14665a017329fc70a9af75e0cf37e # Parent bab57112b50eac1bf07933e2f6c39618fb31b441 (struct Lisp_Process): New members decoding_carryover and encoding_carryover. diff -r bab57112b50e -r ead6c5a556e1 src/process.h --- a/src/process.h Thu Jan 22 01:26:45 1998 +0000 +++ b/src/process.h Thu Jan 22 01:26:45 1998 +0000 @@ -79,10 +79,14 @@ 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))