# HG changeset patch # User Richard M. Stallman # Date 770293156 0 # Node ID 9a9c8372af8068ffa75349dfa8c274363328dfdb # Parent 40d992ff46626b35dacfef5b2104a6374fbc33e0 (create_process): Get a pty for any non-nil Vprocess_connection_type value. diff -r 40d992ff4662 -r 9a9c8372af80 src/process.c --- 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)