1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-31 20:02:42 +00:00

* process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.

This commit is contained in:
Paul Eggert 2013-02-15 11:08:11 -08:00
parent ef9c57e27a
commit e454145b09
2 changed files with 5 additions and 5 deletions

View 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

View 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;