]> code.delx.au - gnu-emacs/commitdiff
* src/callproc.c (Fcall_process): Restore a line that was accidentally commented...
authorKen Brown <kbrown@cornell.edu>
Thu, 24 May 2012 11:21:34 +0000 (07:21 -0400)
committerKen Brown <kbrown@cornell.edu>
Thu, 24 May 2012 11:21:34 +0000 (07:21 -0400)
src/ChangeLog
src/callproc.c

index cbfd6631892fbd8e906541a8772eb1fe9ebca7d7..0b1ef220fc07a88199e48ed3dd4e6e10d6dc6a8d 100644 (file)
@@ -1,3 +1,8 @@
+2012-05-24  Ken Brown  <kbrown@cornell.edu>
+
+       * 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  <eliz@gnu.org>
 
        * lisp.h [REL_ALLOC]: Add prototypes for external functions
index b5b8cadeb681a193a20f3467955436d763aa6431..d3ca7ebac957562757f9220b89bc5d7d8aa6f506 100644 (file)
@@ -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