# HG changeset patch # User Richard M. Stallman # Date 822891135 0 # Node ID 4aa693528ee3bd5d4803b379cb67b15684f84fa7 # Parent cba05f90ee5723f078df73c72411c78be63f0e41 (create_process): Set outchannel to be non-blocking. diff -r cba05f90ee57 -r 4aa693528ee3 src/process.c --- a/src/process.c Mon Jan 29 04:50:16 1996 +0000 +++ b/src/process.c Mon Jan 29 04:52:15 1996 +0000 @@ -1,5 +1,6 @@ /* Asynchronous subprocess control for GNU Emacs. - Copyright (C) 1985, 86, 87, 88, 93, 94, 95 Free Software Foundation, Inc. + Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 1996 + Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -1290,9 +1291,11 @@ #ifdef O_NONBLOCK fcntl (inchannel, F_SETFL, O_NONBLOCK); + fcntl (outchannel, F_SETFL, O_NONBLOCK); #else #ifdef O_NDELAY fcntl (inchannel, F_SETFL, O_NDELAY); + fcntl (outchannel, F_SETFL, O_NDELAY); #endif #endif