aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
authorKenichi Handa2003-02-10 07:45:13 +0000
committerKenichi Handa2003-02-10 07:45:13 +0000
commit56533d51c8df97f884035220a48a1fff6f6149c6 (patch)
treec3fddb09398809dc3fd55a329129682a5bd2f836 /src/process.h
parentd3c8e597f66b33ae0e762aaa545d8e42b739d60e (diff)
downloademacs-56533d51c8df97f884035220a48a1fff6f6149c6.tar.gz
emacs-56533d51c8df97f884035220a48a1fff6f6149c6.zip
(struct Lisp_Process): New member filter_multibyte.
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h
index bd524190523..06dbb30fc03 100644
--- a/src/process.h
+++ b/src/process.h
@@ -98,6 +98,12 @@ struct Lisp_Process
98 /* Flag to set coding-system of the process buffer from the 98 /* Flag to set coding-system of the process buffer from the
99 coding_system used to decode process output. */ 99 coding_system used to decode process output. */
100 Lisp_Object inherit_coding_system_flag; 100 Lisp_Object inherit_coding_system_flag;
101 /* Flat to decide the multibyteness of a string given to the
102 filter (if any). It is initialized to the value of
103 `default-enable-multibyte-characters' when the process is
104 generated, and can be changed by the function
105 `set-process-fileter-multibyte'. */
106 Lisp_Object filter_multibyte;
101}; 107};
102 108
103/* Every field in the preceding structure except for the first two 109/* Every field in the preceding structure except for the first two