aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoseph Arceneaux1992-06-05 18:39:41 +0000
committerJoseph Arceneaux1992-06-05 18:39:41 +0000
commit508b171c56cb7337cc96fd68528a226e2bdb9f5d (patch)
treed76a8336fc5d45b68bb060ebc6176b3b223d2f18
parentc0a58692dac8783c9a4cb153a113f9fb6b72fb8e (diff)
downloademacs-508b171c56cb7337cc96fd68528a226e2bdb9f5d.tar.gz
emacs-508b171c56cb7337cc96fd68528a226e2bdb9f5d.zip
*** empty log message ***
-rw-r--r--src/lread.c3
-rw-r--r--src/process.c2
-rw-r--r--src/sysdep.c3
3 files changed, 5 insertions, 3 deletions
diff --git a/src/lread.c b/src/lread.c
index 0c38fa0ed5a..1f81d76b69c 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -1,5 +1,6 @@
1/* Lisp parsing and input streams. 1/* Lisp parsing and input streams.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1992 Free Software Foundation, Inc. 2 Copyright (C) 1985, 1986, 1987, 1988, 1989,
3 1992 Free Software Foundation, Inc.
3 4
4This file is part of GNU Emacs. 5This file is part of GNU Emacs.
5 6
diff --git a/src/process.c b/src/process.c
index cc20336dd30..2265c2c34db 100644
--- a/src/process.c
+++ b/src/process.c
@@ -2108,7 +2108,7 @@ send_process (proc, buf, len)
2108 /* Don't send more than 500 bytes at a time. */ 2108 /* Don't send more than 500 bytes at a time. */
2109 if (this > 500) 2109 if (this > 500)
2110 this = 500; 2110 this = 500;
2111 old_sigpipe = signal (SIGPIPE, send_process_trap); 2111 old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
2112 rv = write (XFASTINT (XPROCESS (proc)->outfd), buf, this); 2112 rv = write (XFASTINT (XPROCESS (proc)->outfd), buf, this);
2113 signal (SIGPIPE, old_sigpipe); 2113 signal (SIGPIPE, old_sigpipe);
2114 if (rv < 0) 2114 if (rv < 0)
diff --git a/src/sysdep.c b/src/sysdep.c
index 51c5bd920a7..7f0d0068c22 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -601,7 +601,8 @@ save_signal_handlers (saved_handlers)
601{ 601{
602 while (saved_handlers->code) 602 while (saved_handlers->code)
603 { 603 {
604 saved_handlers->handler = signal (saved_handlers->code, SIG_IGN); 604 saved_handlers->handler
605 = (SIGTYPE (*) ()) signal (saved_handlers->code, SIG_IGN);
605 saved_handlers++; 606 saved_handlers++;
606 } 607 }
607} 608}