emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Kim F . Storm
Subject: [Emacs-diffs] Changes to emacs/src/callproc.c
Date: Tue, 02 Nov 2004 05:36:31 -0500

Index: emacs/src/callproc.c
diff -c emacs/src/callproc.c:1.204 emacs/src/callproc.c:1.205
*** emacs/src/callproc.c:1.204  Wed Oct 13 09:50:36 2004
--- emacs/src/callproc.c        Tue Nov  2 10:10:35 2004
***************
*** 83,88 ****
--- 83,89 ----
  #include "process.h"
  #include "syssignal.h"
  #include "systty.h"
+ #include "blockinput.h"
  
  #ifdef MSDOS
  #include "msdos.h"
***************
*** 624,629 ****
--- 625,632 ----
      pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,
                       0, current_dir);
  #else  /* not WINDOWSNT */
+     BLOCK_INPUT;
+ 
      pid = vfork ();
  
      if (pid == 0)
***************
*** 641,646 ****
--- 644,651 ----
        child_setup (filefd, fd1, fd_error, (char **) new_argv,
                     0, current_dir);
        }
+ 
+     UNBLOCK_INPUT;
  #endif /* not WINDOWSNT */
  
      /* The MSDOS case did this already.  */




reply via email to

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