diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-10-19 05:13:31 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-10-19 05:13:31 +0000 |
commit | 019d2c4c58da1284eb2e27ebe56f65e46b3beec0 (patch) | |
tree | 601e03a47c9140b0cae685191289bfb3dd0afb08 /src/process.c | |
parent | ee6bacd40debc7ca7ec95c6f962ae533e8713a02 (diff) | |
download | emacs-019d2c4c58da1284eb2e27ebe56f65e46b3beec0.tar.gz |
* process.c (create_pty): Remove conditionals for no longer
supported systems: UNIPLUS and RTU.
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index b405f1ef690..c2fe343ee2d 100644 --- a/src/process.c +++ b/src/process.c @@ -2317,12 +2317,12 @@ create_pty (process) #endif if (forkin < 0) report_file_error ("Opening pty", Qnil); -#if defined (RTU) || defined (UNIPLUS) || defined (DONT_REOPEN_PTY) +#if defined (DONT_REOPEN_PTY) /* In the case that vfork is defined as fork, the parent process (Emacs) may send some data before the child process completes tty options setup. So we setup tty before forking. */ child_setup_tty (forkout); -#endif /* RTU or UNIPLUS or DONT_REOPEN_PTY */ +#endif /* DONT_REOPEN_PTY */ #else forkin = forkout = -1; #endif /* not USG, or USG_SUBTTY_WORKS */ |