# HG changeset patch # User Karl Heuer # Date 856421675 0 # Node ID 00b923d541080b735d54751e69d737539f333827 # Parent b61cbe595be589c2d3bd13a93717fe990c0cf42f (struct Lisp_Process): New members decode_coding_system, decoding_buf, encode_coding_system, and encoding_buf. diff -r b61cbe595be5 -r 00b923d54108 src/process.h --- a/src/process.h Thu Feb 20 06:53:55 1997 +0000 +++ b/src/process.h Thu Feb 20 06:54:35 1997 +0000 @@ -75,6 +75,14 @@ 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))