/[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.204 by kfstorm, Wed Oct 13 09:50:36 2004 UTC revision 1.205 by kfstorm, Tue Nov 2 10:10:35 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 624  usage: (call-process PROGRAM &optional I Line 625  usage: (call-process PROGRAM &optional I
625      pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,      pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,
626                         0, current_dir);                         0, current_dir);
627  #else  /* not WINDOWSNT */  #else  /* not WINDOWSNT */
628        BLOCK_INPUT;
629    
630      pid = vfork ();      pid = vfork ();
631    
632      if (pid == 0)      if (pid == 0)
# Line 641  usage: (call-process PROGRAM &optional I Line 644  usage: (call-process PROGRAM &optional I
644          child_setup (filefd, fd1, fd_error, (char **) new_argv,          child_setup (filefd, fd1, fd_error, (char **) new_argv,
645                       0, current_dir);                       0, current_dir);
646        }        }
647    
648        UNBLOCK_INPUT;
649  #endif /* not WINDOWSNT */  #endif /* not WINDOWSNT */
650    
651      /* The MSDOS case did this already.  */      /* The MSDOS case did this already.  */

Legend:
Removed from v.1.204  
changed lines
  Added in v.1.205

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