1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(struct Lisp_Process): Add inherit_coding_system_flag member.

This commit is contained in:
Eli Zaretskii 1998-04-19 14:18:01 +00:00
parent 52a1b89480
commit 8d051ef1d1

View File

@ -87,6 +87,9 @@ struct Lisp_Process
Lisp_Object encoding_buf; Lisp_Object encoding_buf;
/* Size of carryover in encoding. */ /* Size of carryover in encoding. */
Lisp_Object encoding_carryover; 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)) #define ChannelMask(n) (1<<(n))