From: Ken Brown Date: Thu, 24 May 2012 11:21:34 +0000 (-0400) Subject: * src/callproc.c (Fcall_process): Restore a line that was accidentally commented... X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/2f9b9adb4652f52c12b6388b1fd3d03fa4f99b32 * src/callproc.c (Fcall_process): Restore a line that was accidentally commented out (bug#11547). --- diff --git a/src/ChangeLog b/src/ChangeLog index cbfd663189..0b1ef220fc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2012-05-24 Ken Brown + + * callproc.c (Fcall_process): Restore a line that was accidentally + commented out in the 2011-02-13 change (bug#11547). + 2012-05-23 Eli Zaretskii * lisp.h [REL_ALLOC]: Add prototypes for external functions diff --git a/src/callproc.c b/src/callproc.c index b5b8cadeb6..d3ca7ebac9 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -640,7 +640,7 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */) /* 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 pthread_sigmask (SIG_SETMASK, &procmask, 0); #endif