]> code.delx.au - gnu-emacs/commitdiff
* process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 15 Feb 2013 19:08:11 +0000 (11:08 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 15 Feb 2013 19:08:11 +0000 (11:08 -0800)
src/ChangeLog
src/process.c

index 1175e97688de9cac86acdd60be10afdec76c6ce2..82751e371dfd312599ee41fba7682baeb6eb7af7 100644 (file)
@@ -1,3 +1,7 @@
+2013-02-15  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
+
 2013-02-15  Eli Zaretskii  <eliz@gnu.org>
 
        * keyboard.c (read_char): Fix calculation of auto-save time out
index f210065b98eb1ca5870d1679506308305daa5d13..9d6e8c097a1c920031ad053fc587fa6045cd7fe0 100644 (file)
@@ -180,10 +180,6 @@ static Lisp_Object Qlast_nonmenu_event;
 #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial))
 #define SERIALCONN1_P(p) (EQ (p->type, Qserial))
 
-#ifndef HAVE_H_ERRNO
-extern int h_errno;
-#endif
-
 /* Number of events of change of status of a process.  */
 static EMACS_INT process_tick;
 /* Number of events for which the user or sentinel has been notified.  */
@@ -5567,7 +5563,7 @@ Output from processes can arrive in between bunches.  */)
   if (XINT (start) < GPT && XINT (end) > GPT)
     move_gap_both (XINT (start), start_byte);
 
-  send_process (proc, (char *) BYTE_POS_ADDR (start_byte), 
+  send_process (proc, (char *) BYTE_POS_ADDR (start_byte),
                end_byte - start_byte, Fcurrent_buffer ());
 
   return Qnil;