]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct Lisp_Process): New members decoding_carryover
authorKenichi Handa <handa@m17n.org>
Thu, 22 Jan 1998 01:26:45 +0000 (01:26 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 22 Jan 1998 01:26:45 +0000 (01:26 +0000)
and encoding_carryover.

src/process.h

index dbfc69f5f1098a92abe0470a2ed7c05a42e3c753..c163bcdb622076c6cc5da27010842560f6117ffe 100644 (file)
@@ -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))