aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
authorKarl Heuer1997-02-20 06:54:35 +0000
committerKarl Heuer1997-02-20 06:54:35 +0000
commit3b92c4f5bf8d39e3fb752c46fcf6e2143207fade (patch)
tree405d29868353d55f840775c3248eaed2a337a5e2 /src/process.h
parent0fa1789e78f1bf34680def9cd2ff36390bd19ad2 (diff)
downloademacs-3b92c4f5bf8d39e3fb752c46fcf6e2143207fade.tar.gz
emacs-3b92c4f5bf8d39e3fb752c46fcf6e2143207fade.zip
(struct Lisp_Process): New members
decode_coding_system, decoding_buf, encode_coding_system, and encoding_buf.
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h
index ab7e410523b..dbfc69f5f10 100644
--- a/src/process.h
+++ b/src/process.h
@@ -75,6 +75,14 @@ struct Lisp_Process
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))