comparison src/process.h @ 17042:00b923d54108

(struct Lisp_Process): New members decode_coding_system, decoding_buf, encode_coding_system, and encoding_buf.
author Karl Heuer <kwzh@gnu.org>
date Thu, 20 Feb 1997 06:54:35 +0000
parents ad4cd2505623
children ead6c5a556e1
comparison
equal deleted inserted replaced
17041:b61cbe595be5 17042:00b923d54108
73 Lisp_Object pty_flag; 73 Lisp_Object pty_flag;
74 /* Event-count of last event in which this process changed status. */ 74 /* Event-count of last event in which this process changed status. */
75 Lisp_Object tick; 75 Lisp_Object tick;
76 /* Event-count of last such event reported. */ 76 /* Event-count of last such event reported. */
77 Lisp_Object update_tick; 77 Lisp_Object update_tick;
78 /* Coding-system for decoding the input from this process. */
79 Lisp_Object decode_coding_system;
80 /* Working buffer for decoding. */
81 Lisp_Object decoding_buf;
82 /* Coding-system for encoding the output to this process. */
83 Lisp_Object encode_coding_system;
84 /* Working buffer for encoding. */
85 Lisp_Object encoding_buf;
78 }; 86 };
79 87
80 #define ChannelMask(n) (1<<(n)) 88 #define ChannelMask(n) (1<<(n))
81 89
82 /* Indexed by descriptor, gives the process (if any) for that descriptor. */ 90 /* Indexed by descriptor, gives the process (if any) for that descriptor. */