Mercurial > emacs
diff src/process.c @ 17247:351006378b51
(Fopen_network_stream): Use same socket for in and out.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 25 Mar 1997 03:52:53 +0000 |
| parents | dd2545e79add |
| children | 77b137e2d9a7 |
line wrap: on
line diff
--- a/src/process.c Tue Mar 25 03:49:38 1997 +0000 +++ b/src/process.c Tue Mar 25 03:52:53 1997 +0000 @@ -1855,9 +1855,7 @@ #endif /* TERM */ inch = s; - outch = dup (s); - if (outch < 0) - report_file_error ("error duplicating socket", Fcons (name, Qnil)); + outch = s; if (!NILP (buffer)) buffer = Fget_buffer_create (buffer);
