mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-29 00:31:01 -08:00
(create_process): Get a pty for any non-nil Vprocess_connection_type value.
This commit is contained in:
parent
a2702d990e
commit
fe45da4e02
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue