diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-05-03 13:13:10 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-05-03 13:13:10 -0700 |
commit | d355cad6b78c35050ba94016bb7ee12acbd257ee (patch) | |
tree | aad901f9b23d2a4fd400529a84b0b891e9af0cb1 /src/process.c | |
parent | 8494d3796ca3fc153f65f13869d823beaddf07a2 (diff) | |
download | emacs-d355cad6b78c35050ba94016bb7ee12acbd257ee.tar.gz |
Handle systems without WCONTINUED consistently.
* lib-src/emacsclient.c (WCONTINUED): Move to ../src/syswait.h.
* src/process.c (handle_child_signal): Remove WCONTINUED ifdef,
because WCONTINUED is always defined now.
* src/syswait.h (WCONTINUED): Move here from ../lib-src/emacsclient.c.
Fixes: debbugs:15110 debbugs:17339
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/process.c b/src/process.c index 07b690e6ebd..2c66b9e976e 100644 --- a/src/process.c +++ b/src/process.c @@ -6225,11 +6225,7 @@ handle_child_signal (int sig) int status; if (p->alive -#ifndef WCONTINUED - && child_status_changed (p->pid, &status, WUNTRACED)) -#else - && child_status_changed (p->pid, &status, WUNTRACED | WCONTINUED)) -#endif + && child_status_changed (p->pid, &status, WUNTRACED | WCONTINUED)) { /* Change the status of the process that was found. */ p->tick = ++process_tick; |