Mercurial > emacs
diff 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 |
line wrap: on
line diff
--- 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))
