]> git.eshelyaron.com Git - emacs.git/commitdiff
* process.c (create_pty): Remove conditionals for no longer
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 19 Oct 2009 05:13:31 +0000 (05:13 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 19 Oct 2009 05:13:31 +0000 (05:13 +0000)
supported systems: UNIPLUS and RTU.

src/ChangeLog
src/process.c

index 6efec645f78b7212a758c30ed4a76b4db6bd7621..97f27d0d14cfe8d34914d0b1bbbbe00ccb3733b0 100644 (file)
@@ -1,5 +1,8 @@
 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * process.c (create_pty): Remove conditionals for no longer
+       supported systems: UNIPLUS and RTU.
+
        * xterm.c:
        * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
 
index b405f1ef6903193658f5329a0c915012ce5538c2..c2fe343ee2d1efbb50146ec58b53d09f2dc184ba 100644 (file)
@@ -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 */