Mercurial > emacs
diff src/process.c @ 7748:9a9c8372af80
(create_process): Get a pty for any non-nil Vprocess_connection_type value.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 30 May 1994 10:19:16 +0000 |
| parents | 53186c2698e5 |
| children | fad00b057e50 |
line wrap: on
line diff
--- a/src/process.c Mon May 30 10:08:53 1994 +0000 +++ b/src/process.c Mon May 30 10:19:16 1994 +0000 @@ -1159,7 +1159,7 @@ inchannel = outchannel = -1; #ifdef HAVE_PTYS - if (EQ (Vprocess_connection_type, Qt)) + if (!NILP (Vprocess_connection_type)) outchannel = inchannel = allocate_pty (); if (inchannel >= 0)
