Mercurial > emacs
changeset 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 | bab57112b50e |
children | 5e983ddb85c9 |
files | src/process.h |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
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))