Mercurial > emacs
changeset 48168:8314ced58ef2
(wait_reading_process_input):
Test POLLING_PROBLEM_IN_SELECT, not hpux.
Avoid initialization for auto Lisp_Object var.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 06 Nov 2002 05:01:46 +0000 |
parents | 9fca08a4ea91 |
children | d2c93bc1faf1 |
files | src/process.c |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/process.c Wed Nov 06 04:58:50 2002 +0000 +++ b/src/process.c Wed Nov 06 05:01:46 2002 +0000 @@ -3716,7 +3716,7 @@ EMACS_SET_SECS_USECS (timeout, time_limit, microsecs); EMACS_ADD_TIME (end_time, end_time, timeout); } -#ifdef hpux +#ifdef POLLING_PROBLEM_IN_SELECT /* AlainF 5-Jul-1996 HP-UX 10.10 seem to have problems with signals coming in Causes "poll: interrupted system call" messages when Emacs is run @@ -6412,7 +6412,9 @@ int xerrno; /* Either nil or a cons cell, the car of which is of interest and may be changed outside of this routine. */ - Lisp_Object wait_for_cell = Qnil; + Lisp_Object wait_for_cell; + + wait_for_cell = Qnil; /* If waiting for non-nil in a cell, record where. */ if (CONSP (read_kbd))