Mercurial > emacs
changeset 103108:e61fae00d13e
(create_process): Clean up merger residues of 2008-07-17 change.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Wed, 29 Apr 2009 05:15:34 +0000 |
parents | 15fc92c2fca6 |
children | 44b3e50566c1 |
files | src/process.c |
diffstat | 1 files changed, 0 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/process.c Wed Apr 29 04:46:15 2009 +0000 +++ b/src/process.c Wed Apr 29 05:15:34 2009 +0000 @@ -1875,12 +1875,6 @@ #endif if (forkin < 0) report_file_error ("Opening pty", Qnil); -#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 /* DONT_REOPEN_PTY */ #else forkin = forkout = -1; #endif /* not USG, or USG_SUBTTY_WORKS */ @@ -2151,10 +2145,8 @@ #endif /* SIGCHLD */ #endif /* !POSIX_SIGNALS */ -#if !defined (DONT_REOPEN_PTY) if (pty_flag) child_setup_tty (xforkout); -#endif /* not DONT_REOPEN_PTY */ #ifdef WINDOWSNT pid = child_setup (xforkin, xforkout, xforkout, new_argv, 1, current_dir);