emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/process.c


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/process.c
Date: Wed, 04 Jun 2003 19:21:11 -0400

Index: emacs/src/process.c
diff -c emacs/src/process.c:1.405 emacs/src/process.c:1.406
*** emacs/src/process.c:1.405   Sun May 25 13:43:20 2003
--- emacs/src/process.c Wed Jun  4 19:21:11 2003
***************
*** 469,474 ****
--- 469,475 ----
      for (i = 0; i < 16; i++)
  #endif
        {
+       struct stat stb;        /* Used in some PTY_OPEN.  */
  #ifdef PTY_NAME_SPRINTF
        PTY_NAME_SPRINTF
  #else
***************
*** 479,485 ****
        PTY_OPEN;
  #else /* no PTY_OPEN */
        {
-         struct stat stb;
  # ifdef IRIS
          /* Unusual IRIS code */
          *ptyv = emacs_open ("/dev/ptc", O_RDWR | O_NDELAY, 0);
--- 480,485 ----
***************
*** 3495,3506 ****
        seconds = -1;
      }
    else
!     {
!       if (NILP (process))
!       seconds = -1;
!       else
!       seconds = 0;
!     }
  
    if (NILP (process))
      XSETFASTINT (process, 0);
--- 3495,3501 ----
        seconds = -1;
      }
    else
!     seconds = NILP (process) ? -1 : 0;
  
    if (NILP (process))
      XSETFASTINT (process, 0);




reply via email to

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