* callproc.c (Fcall_process):

* process.c (create_process): Replace Gtk with GConf in SIGPIPE
comment.
This commit is contained in:
Jan D 2011-02-13 12:28:42 +01:00
parent 75d4dcc9d2
commit 2f9a22e2c1
3 changed files with 9 additions and 3 deletions

View 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

View 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

View 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);