diff src/process.c @ 105672:715324003204

* process.c (create_pty): Remove conditionals for no longer supported systems: UNIPLUS and RTU.
author Dan Nicolaescu <dann@ics.uci.edu>
date Mon, 19 Oct 2009 05:13:31 +0000
parents 68dd71358159
children 89183b6f6e9d
line wrap: on
line diff
--- a/src/process.c	Mon Oct 19 05:11:07 2009 +0000
+++ b/src/process.c	Mon Oct 19 05:13:31 2009 +0000
@@ -2317,12 +2317,12 @@
 #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 */