diff options
| author | Stefan Monnier | 2008-03-25 17:35:48 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-03-25 17:35:48 +0000 |
| commit | 5431bd6a789edd0ef05b5be0a1a33355849c164f (patch) | |
| tree | 5cc40388e7788d7b96faa562bff8c68f24af4ccf /src/process.h | |
| parent | 379ec02c03febd0955b2c235c9e596db82fef8a0 (diff) | |
| download | emacs-5431bd6a789edd0ef05b5be0a1a33355849c164f.tar.gz emacs-5431bd6a789edd0ef05b5be0a1a33355849c164f.zip | |
* process.h (struct Lisp_Process): Remove filter_multibyte.
* process.c (QCfilter_multibyte): Remove.
(setup_process_coding_systems): Don't use filter_multibyte.
(Fstart_process, Fmake_network_process): Don't set filter_multibyte.
(read_process_output): Don't adjust multibyteness to filter_multibyte.
(Fset_process_filter_multibyte): Change the coding-system to
approximate the previous behavior.
(Fprocess_filter_multibyte_p): Get the multibyteness straight from the
coding-system.
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/process.h b/src/process.h index dccb0cd2af9..8223801c11c 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -113,12 +113,6 @@ struct Lisp_Process | |||
| 113 | /* Flag to set coding-system of the process buffer from the | 113 | /* Flag to set coding-system of the process buffer from the |
| 114 | coding_system used to decode process output. */ | 114 | coding_system used to decode process output. */ |
| 115 | unsigned int inherit_coding_system_flag : 1; | 115 | unsigned int inherit_coding_system_flag : 1; |
| 116 | /* Flag to decide the multibyteness of a string given to the | ||
| 117 | filter (if any). It is initialized to the value of | ||
| 118 | `default-enable-multibyte-characters' when the process is | ||
| 119 | generated, and can be changed by the function | ||
| 120 | `set-process-filter-multibyte'. */ | ||
| 121 | unsigned int filter_multibyte : 1; | ||
| 122 | /* Record the process status in the raw form in which it comes from `wait'. | 116 | /* Record the process status in the raw form in which it comes from `wait'. |
| 123 | This is to avoid consing in a signal handler. The `raw_status_new' | 117 | This is to avoid consing in a signal handler. The `raw_status_new' |
| 124 | flag indicates that `raw_status' contains a new status that still | 118 | flag indicates that `raw_status' contains a new status that still |