Mercurial > emacs
changeset 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 | 40d992ff4662 |
children | 2f0d34c3059f |
files | src/process.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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)