From fe45da4e02c835ba6439c53a259f2ee8f2f0813d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 30 May 1994 10:19:16 +0000 Subject: [PATCH] (create_process): Get a pty for any non-nil Vprocess_connection_type value. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index 2e5631ade7..6a65a1668a 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) -- 2.20.1