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 [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/callproc.c [emacs-unicode-2]
Date: Thu, 04 Nov 2004 04:12:47 -0500

Index: emacs/src/callproc.c
diff -c emacs/src/callproc.c:1.198.2.5 emacs/src/callproc.c:1.198.2.6
*** emacs/src/callproc.c:1.198.2.5      Thu Oct 14 12:28:46 2004
--- emacs/src/callproc.c        Thu Nov  4 08:55:34 2004
***************
*** 83,88 ****
--- 83,89 ----
  #include "process.h"
  #include "syssignal.h"
  #include "systty.h"
+ #include "blockinput.h"
  
  #ifdef MSDOS
  #include "msdos.h"
***************
*** 620,625 ****
--- 621,628 ----
      pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,
                       0, current_dir);
  #else  /* not WINDOWSNT */
+     BLOCK_INPUT;
+ 
      pid = vfork ();
  
      if (pid == 0)
***************
*** 637,642 ****
--- 640,647 ----
        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]