# HG changeset patch # User Richard M. Stallman # Date 866616158 0 # Node ID 3a85989b7e2cd5349e6d81392b3ef87f4a7dd6b7 # Parent 130a48e6cc13513ff978732c3cc2dcbda76b1a95 Further fix previous change. diff -r 130a48e6cc13 -r 3a85989b7e2c src/process.c --- a/src/process.c Wed Jun 18 04:24:37 1997 +0000 +++ b/src/process.c Wed Jun 18 06:42:38 1997 +0000 @@ -2312,7 +2312,8 @@ /* Read data from the process, until we exhaust it. */ while (XINT (wait_proc->infd) >= 0 - && nread = read_process_output (proc, XINT (wait_proc->infd))) + && (nread + = read_process_output (proc, XINT (wait_proc->infd)))) total_nread += nread; if (total_nread > 0 && do_display) redisplay_preserve_echo_area ();