emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/src ChangeLog process.c


From: Dan Nicolaescu
Subject: [Emacs-diffs] emacs/src ChangeLog process.c
Date: Mon, 19 Oct 2009 05:13:33 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   09/10/19 05:13:33

Modified files:
        src            : ChangeLog process.c 

Log message:
        * process.c (create_pty): Remove conditionals for no longer
        supported systems: UNIPLUS and RTU.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/ChangeLog?cvsroot=emacs&r1=1.7800&r2=1.7801
http://cvs.savannah.gnu.org/viewcvs/emacs/src/process.c?cvsroot=emacs&r1=1.598&r2=1.599

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/src/ChangeLog,v
retrieving revision 1.7800
retrieving revision 1.7801
diff -u -b -r1.7800 -r1.7801
--- ChangeLog   19 Oct 2009 05:11:07 -0000      1.7800
+++ ChangeLog   19 Oct 2009 05:13:31 -0000      1.7801
@@ -1,5 +1,8 @@
 2009-10-19  Dan Nicolaescu  <address@hidden>
 
+       * 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: process.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/process.c,v
retrieving revision 1.598
retrieving revision 1.599
diff -u -b -r1.598 -r1.599
--- process.c   19 Oct 2009 04:27:17 -0000      1.598
+++ process.c   19 Oct 2009 05:13:32 -0000      1.599
@@ -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 */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]