From: Eli Zaretskii Date: Sun, 19 Apr 1998 14:18:01 +0000 (+0000) Subject: (struct Lisp_Process): Add inherit_coding_system_flag member. X-Git-Tag: emacs-20.3~1418 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8d051ef1d13be4ee5dbb132637ca41fce84a8643;p=emacs.git (struct Lisp_Process): Add inherit_coding_system_flag member. --- 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))