Mercurial > emacs
changeset 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 | b61cbe595be5 |
children | 045eb8f891dc |
files | src/process.h |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
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))