# HG changeset patch # User Eli Zaretskii # Date 892995481 0 # Node ID 373f809e0b9500176d3c80f4139a2bd91d60dddb # Parent bb39a5863a82c48c17a1019019dad94f0c4ccb0a (struct Lisp_Process): Add inherit_coding_system_flag member. diff -r bb39a5863a82 -r 373f809e0b95 src/process.h --- a/src/process.h Sun Apr 19 14:13:47 1998 +0000 +++ b/src/process.h Sun Apr 19 14:18:01 1998 +0000 @@ -87,6 +87,9 @@ 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))