aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c
index 105e055b180..408a2579ef0 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1524,6 +1524,10 @@ deactivate_process (proc)
1524 close (inchannel); 1524 close (inchannel);
1525 if (outchannel >= 0 && outchannel != inchannel) 1525 if (outchannel >= 0 && outchannel != inchannel)
1526 close (outchannel); 1526 close (outchannel);
1527#ifdef SYSV4_PTYS
1528 if (!NILP (p->subtty))
1529 close (XINT (p->subtty));
1530#endif
1527#endif 1531#endif
1528 1532
1529 XSET (p->infd, Lisp_Int, -1); 1533 XSET (p->infd, Lisp_Int, -1);