/[emacs]/emacs/src/callproc.c
ViewVC logotype

Diff of /emacs/src/callproc.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.198.2.5 by handa, Thu Oct 14 12:28:46 2004 UTC revision 1.198.2.6 by miles, Thu Nov 4 08:55:34 2004 UTC
# Line 83  extern int errno; Line 83  extern int errno;
83  #include "process.h"  #include "process.h"
84  #include "syssignal.h"  #include "syssignal.h"
85  #include "systty.h"  #include "systty.h"
86    #include "blockinput.h"
87    
88  #ifdef MSDOS  #ifdef MSDOS
89  #include "msdos.h"  #include "msdos.h"
# Line 620  usage: (call-process PROGRAM &optional I Line 621  usage: (call-process PROGRAM &optional I
621      pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,      pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,
622                         0, current_dir);                         0, current_dir);
623  #else  /* not WINDOWSNT */  #else  /* not WINDOWSNT */
624        BLOCK_INPUT;
625    
626      pid = vfork ();      pid = vfork ();
627    
628      if (pid == 0)      if (pid == 0)
# Line 637  usage: (call-process PROGRAM &optional I Line 640  usage: (call-process PROGRAM &optional I
640          child_setup (filefd, fd1, fd_error, (char **) new_argv,          child_setup (filefd, fd1, fd_error, (char **) new_argv,
641                       0, current_dir);                       0, current_dir);
642        }        }
643    
644        UNBLOCK_INPUT;
645  #endif /* not WINDOWSNT */  #endif /* not WINDOWSNT */
646    
647      /* The MSDOS case did this already.  */      /* The MSDOS case did this already.  */

Legend:
Removed from v.1.198.2.5  
changed lines
  Added in v.1.198.2.6

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26