diff options
| author | Eli Zaretskii | 1998-04-19 14:18:01 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 1998-04-19 14:18:01 +0000 |
| commit | 8d051ef1d13be4ee5dbb132637ca41fce84a8643 (patch) | |
| tree | 6c6b4ae6b74c5c9e2c731a3d881370fcc47d86d6 /src/process.h | |
| parent | 52a1b8948046116ba7961e90e57cbec2e604e21e (diff) | |
| download | emacs-8d051ef1d13be4ee5dbb132637ca41fce84a8643.tar.gz emacs-8d051ef1d13be4ee5dbb132637ca41fce84a8643.zip | |
(struct Lisp_Process): Add inherit_coding_system_flag member.
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h index c163bcdb622..79ad07eab6a 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -87,6 +87,9 @@ struct Lisp_Process | |||
| 87 | Lisp_Object encoding_buf; | 87 | Lisp_Object encoding_buf; |
| 88 | /* Size of carryover in encoding. */ | 88 | /* Size of carryover in encoding. */ |
| 89 | Lisp_Object encoding_carryover; | 89 | Lisp_Object encoding_carryover; |
| 90 | /* Flag to set coding-system of the process buffer from the | ||
| 91 | coding_system used to decode process output. */ | ||
| 92 | int inherit_coding_system_flag; | ||
| 90 | }; | 93 | }; |
| 91 | 94 | ||
| 92 | #define ChannelMask(n) (1<<(n)) | 95 | #define ChannelMask(n) (1<<(n)) |