aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
authorKenichi Handa1998-01-22 01:26:45 +0000
committerKenichi Handa1998-01-22 01:26:45 +0000
commit095d64ee6e6f98c6468ff6820ecd17dd1c939d39 (patch)
tree882daa0cc80d1b877bf3d3dacb96e8fc2300ec12 /src/process.h
parentc8a6d68aed98189810b4f2d0b21d69f9f21f539b (diff)
downloademacs-095d64ee6e6f98c6468ff6820ecd17dd1c939d39.tar.gz
emacs-095d64ee6e6f98c6468ff6820ecd17dd1c939d39.zip
(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
79 Lisp_Object decode_coding_system; 79 Lisp_Object decode_coding_system;
80 /* Working buffer for decoding. */ 80 /* Working buffer for decoding. */
81 Lisp_Object decoding_buf; 81 Lisp_Object decoding_buf;
82 /* Size of carryover in decoding. */
83 Lisp_Object decoding_carryover;
82 /* Coding-system for encoding the output to this process. */ 84 /* Coding-system for encoding the output to this process. */
83 Lisp_Object encode_coding_system; 85 Lisp_Object encode_coding_system;
84 /* Working buffer for encoding. */ 86 /* Working buffer for encoding. */
85 Lisp_Object encoding_buf; 87 Lisp_Object encoding_buf;
88 /* Size of carryover in encoding. */
89 Lisp_Object encoding_carryover;
86}; 90};
87 91
88#define ChannelMask(n) (1<<(n)) 92#define ChannelMask(n) (1<<(n))