aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorStefan Monnier2008-03-25 17:35:48 +0000
committerStefan Monnier2008-03-25 17:35:48 +0000
commit5431bd6a789edd0ef05b5be0a1a33355849c164f (patch)
tree5cc40388e7788d7b96faa562bff8c68f24af4ccf /src/ChangeLog
parent379ec02c03febd0955b2c235c9e596db82fef8a0 (diff)
downloademacs-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/ChangeLog')
-rw-r--r--src/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6f65379c23e..e86aabb4ae5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,15 @@
12008-03-25 Stefan Monnier <monnier@iro.umontreal.ca> 12008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * process.h (struct Lisp_Process): Remove filter_multibyte.
4 * process.c (QCfilter_multibyte): Remove.
5 (setup_process_coding_systems): Don't use filter_multibyte.
6 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
7 (read_process_output): Don't adjust multibyteness to filter_multibyte.
8 (Fset_process_filter_multibyte): Change the coding-system to
9 approximate the previous behavior.
10 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
11 coding-system.
12
3 * coding.c (decode_coding_object): When not decoding into a buffer, 13 * coding.c (decode_coding_object): When not decoding into a buffer,
4 obey the coding system's preference of (uni|multi)byte. 14 obey the coding system's preference of (uni|multi)byte.
5 15