Mercurial > emacs
diff src/process.h @ 20714:ead6c5a556e1
(struct Lisp_Process): New members decoding_carryover
and encoding_carryover.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Thu, 22 Jan 1998 01:26:45 +0000 |
| parents | 00b923d54108 |
| children | 373f809e0b95 |
line wrap: on
line diff
--- 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))
