emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/w32proc.c [lexbind]
Date: Tue, 06 Jul 2004 07:12:20 -0400

Index: emacs/src/w32proc.c
diff -c emacs/src/w32proc.c:1.51.2.2 emacs/src/w32proc.c:1.51.2.3
*** emacs/src/w32proc.c:1.51.2.2        Tue Oct 14 23:22:48 2003
--- emacs/src/w32proc.c Tue Jul  6 09:14:38 2004
***************
*** 82,88 ****
     avoids the inefficiency of frequently reading small amounts of data.
     This is primarily necessary for handling DOS processes on Windows 95,
     but is useful for W32 processes on both Windows 95 and NT as well.  */
! Lisp_Object Vw32_pipe_read_delay;
  
  /* Control conversion of upper case file names to lower case.
     nil means no, t means yes. */
--- 82,88 ----
     avoids the inefficiency of frequently reading small amounts of data.
     This is primarily necessary for handling DOS processes on Windows 95,
     but is useful for W32 processes on both Windows 95 and NT as well.  */
! int w32_pipe_read_delay;
  
  /* Control conversion of upper case file names to lower case.
     nil means no, t means yes. */
***************
*** 367,373 ****
      cp->pid = -cp->pid;
  
    /* pid must fit in a Lisp_Int */
!   cp->pid = (cp->pid & VALMASK);
  
    *pPid = cp->pid;
  
--- 367,373 ----
      cp->pid = -cp->pid;
  
    /* pid must fit in a Lisp_Int */
!   cp->pid = XUINT (make_number (cp->pid));
  
    *pPid = cp->pid;
  
***************
*** 2202,2208 ****
  them blocking when trying to access unmounted drives etc.  */);
    Vw32_start_process_inherit_error_mode = Qt;
  
!   DEFVAR_INT ("w32-pipe-read-delay", &Vw32_pipe_read_delay,
              doc: /* Forced delay before reading subprocess output.
  This is done to improve the buffering of subprocess output, by
  avoiding the inefficiency of frequently reading small amounts of data.
--- 2202,2208 ----
  them blocking when trying to access unmounted drives etc.  */);
    Vw32_start_process_inherit_error_mode = Qt;
  
!   DEFVAR_INT ("w32-pipe-read-delay", &w32_pipe_read_delay,
              doc: /* Forced delay before reading subprocess output.
  This is done to improve the buffering of subprocess output, by
  avoiding the inefficiency of frequently reading small amounts of data.
***************
*** 2211,2217 ****
  reading the subprocess output.  If negative, the magnitude is the number
  of time slices to wait (effectively boosting the priority of the child
  process temporarily).  A value of zero disables waiting entirely.  */);
!   Vw32_pipe_read_delay = 50;
  
    DEFVAR_LISP ("w32-downcase-file-names", &Vw32_downcase_file_names,
               doc: /* Non-nil means convert all-upper case file names to lower 
case.
--- 2211,2217 ----
  reading the subprocess output.  If negative, the magnitude is the number
  of time slices to wait (effectively boosting the priority of the child
  process temporarily).  A value of zero disables waiting entirely.  */);
!   w32_pipe_read_delay = 50;
  
    DEFVAR_LISP ("w32-downcase-file-names", &Vw32_downcase_file_names,
               doc: /* Non-nil means convert all-upper case file names to lower 
case.




reply via email to

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