* callproc.c (Fcall_process):
authorJan D <jan.h.d@swipnet.se>
Sun, 13 Feb 2011 11:28:42 +0000 (12:28 +0100)
committerJan D <jan.h.d@swipnet.se>
Sun, 13 Feb 2011 11:28:42 +0000 (12:28 +0100)
* process.c (create_process): Replace Gtk with GConf in SIGPIPE
comment.

src/ChangeLog
src/callproc.c
src/process.c

index c677288..5ca0776 100644 (file)
@@ -1,3 +1,9 @@
+2011-02-13  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * callproc.c (Fcall_process):
+       * process.c (create_process): Replace Gtk with GConf in SIGPIPE
+       comment.
+
 2011-02-12  Martin Rudalics  <rudalics@gmx.at>
 
        * window.c (select_window): Check inhibit_point_swap argument when
index 27e8493..f2543f2 100644 (file)
@@ -559,9 +559,9 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)  */)
         setpgrp (pid, pid);
 #endif /* USG */
 
-       /* GTK causes us to ignore SIGPIPE, make sure it is restored
+       /* GConf causes us to ignore SIGPIPE, make sure it is restored
           in the child.  */
-       signal (SIGPIPE, SIG_DFL);
+       //signal (SIGPIPE, SIG_DFL);
 #ifdef HAVE_WORKING_VFORK
        sigprocmask (SIG_SETMASK, &procmask, 0);
 #endif
index d026b9d..00d6c2e 100644 (file)
@@ -2056,7 +2056,7 @@ create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
 
        signal (SIGINT, SIG_DFL);
        signal (SIGQUIT, SIG_DFL);
-       /* GTK causes us to ignore SIGPIPE, make sure it is restored
+       /* GConf causes us to ignore SIGPIPE, make sure it is restored
           in the child.  */
        signal (SIGPIPE, SIG_DFL);