comparison src/process.h @ 49666:9f435c19ea6f

(struct Lisp_Process): New member filter_multibyte.
author Kenichi Handa <handa@m17n.org>
date Mon, 10 Feb 2003 07:45:13 +0000
parents bfa7cad7b524
children 6dc5bfe9589b d7ddb3e565de
comparison
equal deleted inserted replaced
49665:c102e97c89eb 49666:9f435c19ea6f
96 /* Size of carryover in encoding. */ 96 /* Size of carryover in encoding. */
97 Lisp_Object encoding_carryover; 97 Lisp_Object encoding_carryover;
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
104 must be a Lisp_Object, for GC's sake. */ 110 must be a Lisp_Object, for GC's sake. */
105 111