summaryrefslogtreecommitdiff
path: root/src/process.h
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>1998-04-19 14:18:01 +0000
committerEli Zaretskii <eliz@gnu.org>1998-04-19 14:18:01 +0000
commit8d051ef1d13be4ee5dbb132637ca41fce84a8643 (patch)
tree6c6b4ae6b74c5c9e2c731a3d881370fcc47d86d6 /src/process.h
parent52a1b8948046116ba7961e90e57cbec2e604e21e (diff)
downloademacs-8d051ef1d13be4ee5dbb132637ca41fce84a8643.tar.gz
(struct Lisp_Process): Add inherit_coding_system_flag member.
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h3
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))