diff options
| author | Richard M. Stallman <rms@gnu.org> | 1994-05-30 10:19:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1994-05-30 10:19:16 +0000 |
| commit | fe45da4e02c835ba6439c53a259f2ee8f2f0813d (patch) | |
| tree | 071220d0537507d353c1874b94ab150f8252a94a /src/process.c | |
| parent | a2702d990e2eb8c5368e7b977bc5bb48caabed9c (diff) | |
(create_process): Get a pty for any non-nil Vprocess_connection_type value.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
