* src/callproc.c (Fcall_process): Restore a line that was accidentally commented out (bug#11547).
This commit is contained in:
parent
52c55cc7d2
commit
2f9b9adb46
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue