From: Richard M. Stallman Date: Mon, 30 May 1994 10:19:16 +0000 (+0000) Subject: (create_process): Get a pty for any non-nil Vprocess_connection_type value. X-Git-Tag: emacs-19.34~8105 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fe45da4e02c835ba6439c53a259f2ee8f2f0813d;p=emacs.git (create_process): Get a pty for any non-nil Vprocess_connection_type value. --- diff --git a/src/process.c b/src/process.c index 2e5631ade75..6a65a1668aa 100644 --- a/src/process.c +++ b/src/process.c @@ -1159,7 +1159,7 @@ create_process (process, new_argv, current_dir) inchannel = outchannel = -1; #ifdef HAVE_PTYS - if (EQ (Vprocess_connection_type, Qt)) + if (!NILP (Vprocess_connection_type)) outchannel = inchannel = allocate_pty (); if (inchannel >= 0)