emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r111791: * process.c (h_errno) [!HAVE


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111791: * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
Date: Fri, 15 Feb 2013 11:08:11 -0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111791
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Fri 2013-02-15 11:08:11 -0800
message:
  * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
modified:
  src/ChangeLog
  src/process.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-02-15 18:52:16 +0000
+++ b/src/ChangeLog     2013-02-15 19:08:11 +0000
@@ -1,3 +1,7 @@
+2013-02-15  Paul Eggert  <address@hidden>
+
+       * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
+
 2013-02-15  Eli Zaretskii  <address@hidden>
 
        * keyboard.c (read_char): Fix calculation of auto-save time out

=== modified file 'src/process.c'
--- a/src/process.c     2013-01-02 16:13:04 +0000
+++ b/src/process.c     2013-02-15 19:08:11 +0000
@@ -180,10 +180,6 @@
 #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 @@
   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;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]