Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2f9a22e2
Commit
2f9a22e2
authored
Feb 13, 2011
by
Jan D
Browse files
* callproc.c (Fcall_process):
* process.c (create_process): Replace Gtk with GConf in SIGPIPE comment.
parent
75d4dcc9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
src/ChangeLog
src/ChangeLog
+6
-0
src/callproc.c
src/callproc.c
+2
-2
src/process.c
src/process.c
+1
-1
No files found.
src/ChangeLog
View file @
2f9a22e2
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>
2011-02-12 Martin Rudalics <rudalics@gmx.at>
* window.c (select_window): Check inhibit_point_swap argument when
* window.c (select_window): Check inhibit_point_swap argument when
src/callproc.c
View file @
2f9a22e2
...
@@ -559,9 +559,9 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
...
@@ -559,9 +559,9 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */)
setpgrp
(
pid
,
pid
);
setpgrp
(
pid
,
pid
);
#endif
/* USG */
#endif
/* USG */
/* G
TK
causes us to ignore SIGPIPE, make sure it is restored
/* G
Conf
causes us to ignore SIGPIPE, make sure it is restored
in the child. */
in the child. */
signal (SIGPIPE, SIG_DFL);
//
signal (SIGPIPE, SIG_DFL);
#ifdef HAVE_WORKING_VFORK
#ifdef HAVE_WORKING_VFORK
sigprocmask
(
SIG_SETMASK
,
&
procmask
,
0
);
sigprocmask
(
SIG_SETMASK
,
&
procmask
,
0
);
#endif
#endif
...
...
src/process.c
View file @
2f9a22e2
...
@@ -2056,7 +2056,7 @@ create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
...
@@ -2056,7 +2056,7 @@ create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
signal (SIGINT, SIG_DFL);
signal (SIGINT, SIG_DFL);
signal (SIGQUIT, SIG_DFL);
signal (SIGQUIT, SIG_DFL);
/* G
TK
causes us to ignore SIGPIPE, make sure it is restored
/* G
Conf
causes us to ignore SIGPIPE, make sure it is restored
in the child. */
in the child. */
signal (SIGPIPE, SIG_DFL);
signal (SIGPIPE, SIG_DFL);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment