diff options
author | Kenichi Handa <handa@m17n.org> | 2003-02-10 07:45:13 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2003-02-10 07:45:13 +0000 |
commit | 56533d51c8df97f884035220a48a1fff6f6149c6 (patch) | |
tree | c3fddb09398809dc3fd55a329129682a5bd2f836 /src | |
parent | d3c8e597f66b33ae0e762aaa545d8e42b739d60e (diff) | |
download | emacs-56533d51c8df97f884035220a48a1fff6f6149c6.tar.gz |
(struct Lisp_Process): New member filter_multibyte.
Diffstat (limited to 'src')
-rw-r--r-- | src/process.h | 6 |
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 /* Flag to set coding-system of the process buffer from the coding_system used to decode process output. */ Lisp_Object inherit_coding_system_flag; + /* Flat to decide the multibyteness of a string given to the + filter (if any). It is initialized to the value of + `default-enable-multibyte-characters' when the process is + generated, and can be changed by the function + `set-process-fileter-multibyte'. */ + Lisp_Object filter_multibyte; }; /* Every field in the preceding structure except for the first two |