aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2013-02-15 11:08:11 -0800
committerPaul Eggert2013-02-15 11:08:11 -0800
commite454145b0985d28ef5581be5c469726e68762322 (patch)
treec1cffd105060ef0a64d2f1f70cbb13b32ca8bfee /src
parentef9c57e27aad0105ec058cc68377460763438af4 (diff)
downloademacs-e454145b0985d28ef5581be5c469726e68762322.tar.gz
emacs-e454145b0985d28ef5581be5c469726e68762322.zip
* process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/process.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1175e97688d..82751e371df 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-02-15 Paul Eggert <eggert@cs.ucla.edu>
2
3 * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
4
12013-02-15 Eli Zaretskii <eliz@gnu.org> 52013-02-15 Eli Zaretskii <eliz@gnu.org>
2 6
3 * keyboard.c (read_char): Fix calculation of auto-save time out 7 * keyboard.c (read_char): Fix calculation of auto-save time out
diff --git a/src/process.c b/src/process.c
index f210065b98e..9d6e8c097a1 100644
--- a/src/process.c
+++ b/src/process.c
@@ -180,10 +180,6 @@ static Lisp_Object Qlast_nonmenu_event;
180#define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial)) 180#define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial))
181#define SERIALCONN1_P(p) (EQ (p->type, Qserial)) 181#define SERIALCONN1_P(p) (EQ (p->type, Qserial))
182 182
183#ifndef HAVE_H_ERRNO
184extern int h_errno;
185#endif
186
187/* Number of events of change of status of a process. */ 183/* Number of events of change of status of a process. */
188static EMACS_INT process_tick; 184static EMACS_INT process_tick;
189/* Number of events for which the user or sentinel has been notified. */ 185/* Number of events for which the user or sentinel has been notified. */
@@ -5567,7 +5563,7 @@ Output from processes can arrive in between bunches. */)
5567 if (XINT (start) < GPT && XINT (end) > GPT) 5563 if (XINT (start) < GPT && XINT (end) > GPT)
5568 move_gap_both (XINT (start), start_byte); 5564 move_gap_both (XINT (start), start_byte);
5569 5565
5570 send_process (proc, (char *) BYTE_POS_ADDR (start_byte), 5566 send_process (proc, (char *) BYTE_POS_ADDR (start_byte),
5571 end_byte - start_byte, Fcurrent_buffer ()); 5567 end_byte - start_byte, Fcurrent_buffer ());
5572 5568
5573 return Qnil; 5569 return Qnil;