diff options
author | Eli Zaretskii <eliz@gnu.org> | 1998-04-19 14:18:01 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 1998-04-19 14:18:01 +0000 |
commit | 8d051ef1d13be4ee5dbb132637ca41fce84a8643 (patch) | |
tree | 6c6b4ae6b74c5c9e2c731a3d881370fcc47d86d6 /src/process.h | |
parent | 52a1b8948046116ba7961e90e57cbec2e604e21e (diff) | |
download | emacs-8d051ef1d13be4ee5dbb132637ca41fce84a8643.tar.gz |
(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 Lisp_Object encoding_buf; /* Size of carryover in encoding. */ Lisp_Object encoding_carryover; + /* Flag to set coding-system of the process buffer from the + coding_system used to decode process output. */ + int inherit_coding_system_flag; }; #define ChannelMask(n) (1<<(n)) |