*** empty log message ***
authorJoseph Arceneaux <jla@gnu.org>
Fri, 5 Jun 1992 18:39:41 +0000 (18:39 +0000)
committerJoseph Arceneaux <jla@gnu.org>
Fri, 5 Jun 1992 18:39:41 +0000 (18:39 +0000)
src/lread.c
src/process.c
src/sysdep.c

index 0c38fa0..1f81d76 100644 (file)
@@ -1,5 +1,6 @@
 /* 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.
 
index cc20336..2265c2c 100644 (file)
@@ -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)
index 51c5bd9..7f0d006 100644 (file)
@@ -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++;
     }
 }