]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct Lisp_Process): New members
authorKarl Heuer <kwzh@gnu.org>
Thu, 20 Feb 1997 06:54:35 +0000 (06:54 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 20 Feb 1997 06:54:35 +0000 (06:54 +0000)
decode_coding_system, decoding_buf, encode_coding_system, and
encoding_buf.

src/process.h

index ab7e410523b88e728ecc032b843f4a7510678792..dbfc69f5f1098a92abe0470a2ed7c05a42e3c753 100644 (file)
@@ -75,6 +75,14 @@ struct Lisp_Process
     Lisp_Object tick;
     /* Event-count of last such event reported.  */
     Lisp_Object update_tick;
+    /* Coding-system for decoding the input from this process.  */
+    Lisp_Object decode_coding_system;
+    /* Working buffer for decoding.  */
+    Lisp_Object decoding_buf;
+    /* Coding-system for encoding the output to this process.  */
+    Lisp_Object encode_coding_system;
+    /* Working buffer for encoding.  */
+    Lisp_Object encoding_buf;
 };
 
 #define ChannelMask(n) (1<<(n))