diff options
| author | Jan D | 2011-02-13 12:28:42 +0100 |
|---|---|---|
| committer | Jan D | 2011-02-13 12:28:42 +0100 |
| commit | 2f9a22e2c127dc2d19144ea15cf0d73402e19e56 (patch) | |
| tree | 4e5246857ad3aea2352dc4ed1b793eebe056388f /src/process.c | |
| parent | 75d4dcc9d2d109fc51e67c86017bce22e5f4252c (diff) | |
| download | emacs-2f9a22e2c127dc2d19144ea15cf0d73402e19e56.tar.gz emacs-2f9a22e2c127dc2d19144ea15cf0d73402e19e56.zip | |
* 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) | |||
| 2056 | 2056 | ||
| 2057 | signal (SIGINT, SIG_DFL); | 2057 | signal (SIGINT, SIG_DFL); |
| 2058 | signal (SIGQUIT, SIG_DFL); | 2058 | signal (SIGQUIT, SIG_DFL); |
| 2059 | /* GTK causes us to ignore SIGPIPE, make sure it is restored | 2059 | /* GConf causes us to ignore SIGPIPE, make sure it is restored |
| 2060 | in the child. */ | 2060 | in the child. */ |
| 2061 | signal (SIGPIPE, SIG_DFL); | 2061 | signal (SIGPIPE, SIG_DFL); |
| 2062 | 2062 | ||