summaryrefslogtreecommitdiff
path: root/src/process.h
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1998-01-22 01:26:45 +0000
committerKenichi Handa <handa@m17n.org>1998-01-22 01:26:45 +0000
commit095d64ee6e6f98c6468ff6820ecd17dd1c939d39 (patch)
tree882daa0cc80d1b877bf3d3dacb96e8fc2300ec12 /src/process.h
parentc8a6d68aed98189810b4f2d0b21d69f9f21f539b (diff)
downloademacs-095d64ee6e6f98c6468ff6820ecd17dd1c939d39.tar.gz
(struct Lisp_Process): New members decoding_carryover
and encoding_carryover.
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h4
1 files changed, 4 insertions, 0 deletions
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))