From: Jan D Date: Sun, 13 Feb 2011 11:28:42 +0000 (+0100) Subject: * callproc.c (Fcall_process): X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~901 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2f9a22e2c127dc2d19144ea15cf0d73402e19e56;p=emacs.git * callproc.c (Fcall_process): * process.c (create_process): Replace Gtk with GConf in SIGPIPE comment. --- diff --git a/src/ChangeLog b/src/ChangeLog index c677288ad3e..5ca0776bd97 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2011-02-13 Jan Djärv + + * callproc.c (Fcall_process): + * process.c (create_process): Replace Gtk with GConf in SIGPIPE + comment. + 2011-02-12 Martin Rudalics * window.c (select_window): Check inhibit_point_swap argument when diff --git a/src/callproc.c b/src/callproc.c index 27e8493bcf1..f2543f296d5 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -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 diff --git a/src/process.c b/src/process.c index d026b9d030b..00d6c2e16da 100644 --- a/src/process.c +++ b/src/process.c @@ -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);