diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h index dbfc69f5f10..c163bcdb622 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -79,10 +79,14 @@ struct Lisp_Process | |||
| 79 | Lisp_Object decode_coding_system; | 79 | Lisp_Object decode_coding_system; |
| 80 | /* Working buffer for decoding. */ | 80 | /* Working buffer for decoding. */ |
| 81 | Lisp_Object decoding_buf; | 81 | Lisp_Object decoding_buf; |
| 82 | /* Size of carryover in decoding. */ | ||
| 83 | Lisp_Object decoding_carryover; | ||
| 82 | /* Coding-system for encoding the output to this process. */ | 84 | /* Coding-system for encoding the output to this process. */ |
| 83 | Lisp_Object encode_coding_system; | 85 | Lisp_Object encode_coding_system; |
| 84 | /* Working buffer for encoding. */ | 86 | /* Working buffer for encoding. */ |
| 85 | Lisp_Object encoding_buf; | 87 | Lisp_Object encoding_buf; |
| 88 | /* Size of carryover in encoding. */ | ||
| 89 | Lisp_Object encoding_carryover; | ||
| 86 | }; | 90 | }; |
| 87 | 91 | ||
| 88 | #define ChannelMask(n) (1<<(n)) | 92 | #define ChannelMask(n) (1<<(n)) |