diff options
author | Jan D <jan.h.d@swipnet.se> | 2011-02-13 12:28:42 +0100 |
---|---|---|
committer | Jan D <jan.h.d@swipnet.se> | 2011-02-13 12:28:42 +0100 |
commit | 2f9a22e2c127dc2d19144ea15cf0d73402e19e56 (patch) | |
tree | 4e5246857ad3aea2352dc4ed1b793eebe056388f /src/process.c | |
parent | 75d4dcc9d2d109fc51e67c86017bce22e5f4252c (diff) | |
download | emacs-2f9a22e2c127dc2d19144ea15cf0d73402e19e56.tar.gz |
* callproc.c (Fcall_process):
* process.c (create_process): Replace Gtk with GConf in SIGPIPE
comment.
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |