update.
[chise/xemacs-chise.git.1] / src / event-unixoid.c
index 9033ebf..0dc49ea 100644 (file)
@@ -71,7 +71,7 @@ int signal_event_pipe_initialized;
 int fake_event_occurred;
 
 int
-read_event_from_tty_or_stream_desc (struct Lisp_Event *event,
+read_event_from_tty_or_stream_desc (Lisp_Event *event,
                                    struct console *con, int fd)
 {
   unsigned char ch;
@@ -174,7 +174,7 @@ event_stream_unixoid_unselect_console (struct console *con)
 }
 
 static int
-get_process_infd (struct Lisp_Process *p)
+get_process_infd (Lisp_Process *p)
 {
   Lisp_Object instr, outstr;
   get_process_streams (p, &instr, &outstr);
@@ -183,7 +183,7 @@ get_process_infd (struct Lisp_Process *p)
 }
 
 int
-event_stream_unixoid_select_process (struct Lisp_Process *proc)
+event_stream_unixoid_select_process (Lisp_Process *proc)
 {
   int infd = get_process_infd (proc);
 
@@ -194,7 +194,7 @@ event_stream_unixoid_select_process (struct Lisp_Process *proc)
 }
 
 int
-event_stream_unixoid_unselect_process (struct Lisp_Process *proc)
+event_stream_unixoid_unselect_process (Lisp_Process *proc)
 {
   int infd = get_process_infd (proc);
 
@@ -223,9 +223,9 @@ poll_fds_for_input (SELECT_TYPE mask)
        return retval;
       if (errno != EINTR)
        {
-         /* Something went seriously wrong; don't abort since maybe
+         /* Something went seriously wrong; don't ABORT since maybe
             the TTY just died at the wrong time. */
-         fprintf (stderr, "xemacs: select failed: errno = %d\n", errno);
+         stderr_out ("xemacs: select failed: errno = %d\n", errno);
          return 0;
        }
       /* else, we got interrupted by a signal, so try again. */