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
508b171c
Commit
508b171c
authored
Jun 05, 1992
by
Joseph Arceneaux
Browse files
*** empty log message ***
parent
c0a58692
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
src/lread.c
src/lread.c
+2
-1
src/process.c
src/process.c
+1
-1
src/sysdep.c
src/sysdep.c
+2
-1
No files found.
src/lread.c
View file @
508b171c
/* Lisp parsing and input streams.
Copyright (C) 1985, 1986, 1987, 1988, 1989, 1992 Free Software Foundation, Inc.
Copyright (C) 1985, 1986, 1987, 1988, 1989,
1992 Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
src/process.c
View file @
508b171c
...
...
@@ -2108,7 +2108,7 @@ send_process (proc, buf, len)
/* Don't send more than 500 bytes at a time. */
if
(
this
>
500
)
this
=
500
;
old_sigpipe
=
signal
(
SIGPIPE
,
send_process_trap
);
old_sigpipe
=
(
SIGTYPE
(
*
)
())
signal
(
SIGPIPE
,
send_process_trap
);
rv
=
write
(
XFASTINT
(
XPROCESS
(
proc
)
->
outfd
),
buf
,
this
);
signal
(
SIGPIPE
,
old_sigpipe
);
if
(
rv
<
0
)
...
...
src/sysdep.c
View file @
508b171c
...
...
@@ -601,7 +601,8 @@ save_signal_handlers (saved_handlers)
{
while
(
saved_handlers
->
code
)
{
saved_handlers
->
handler
=
signal
(
saved_handlers
->
code
,
SIG_IGN
);
saved_handlers
->
handler
=
(
SIGTYPE
(
*
)
())
signal
(
saved_handlers
->
code
,
SIG_IGN
);
saved_handlers
++
;
}
}
...
...
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