aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2014-06-13 08:55:48 -0700
committerPaul Eggert2014-06-13 08:55:48 -0700
commit05d282102d750f2ba8f4cccab2955dfeffba0635 (patch)
treeed3d93eb94a187a59b5363d32ef6bc051218d472 /src/ChangeLog
parent99961a049f727a40d0f3a23de4e9788a564238b5 (diff)
downloademacs-05d282102d750f2ba8f4cccab2955dfeffba0635.tar.gz
emacs-05d282102d750f2ba8f4cccab2955dfeffba0635.zip
Avoid hangs in accept-process-output.
* lisp.h, process.c (wait_reading_process_input): Return int, not bool. All uses changed. * process.c (SELECT_CANT_DO_WRITE_MASK): Remove macro, replacing with ... (SELECT_CAN_DO_WRITE_MASK): ... new constant, with inverted sense. All uses changed. (status_notify): New arg WAIT_PROC. Return int, not void. All uses changed. Fixes: debbugs:17647
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7e3b4a97820..6db73ca7f69 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,15 @@
12014-06-13 Paul Eggert <eggert@cs.ucla.edu>
2
3 Avoid hangs in accept-process-output (Bug#17647).
4 * lisp.h, process.c (wait_reading_process_input):
5 Return int, not bool. All uses changed.
6 * process.c (SELECT_CANT_DO_WRITE_MASK):
7 Remove macro, replacing with ...
8 (SELECT_CAN_DO_WRITE_MASK): ... new constant, with inverted sense.
9 All uses changed.
10 (status_notify): New arg WAIT_PROC. Return int, not void.
11 All uses changed.
12
12014-06-13 Eli Zaretskii <eliz@gnu.org> 132014-06-13 Eli Zaretskii <eliz@gnu.org>
2 14
3 * menu.c (Fx_popup_menu): Don't call the frame's menu_show_hook if 15 * menu.c (Fx_popup_menu): Don't call the frame's menu_show_hook if