diff options
| author | Paul Eggert | 2013-02-15 11:08:11 -0800 |
|---|---|---|
| committer | Paul Eggert | 2013-02-15 11:08:11 -0800 |
| commit | e454145b0985d28ef5581be5c469726e68762322 (patch) | |
| tree | c1cffd105060ef0a64d2f1f70cbb13b32ca8bfee /src/process.c | |
| parent | ef9c57e27aad0105ec058cc68377460763438af4 (diff) | |
| download | emacs-e454145b0985d28ef5581be5c469726e68762322.tar.gz emacs-e454145b0985d28ef5581be5c469726e68762322.zip | |
* process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 6 |
1 files changed, 1 insertions, 5 deletions
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 | ||
| 184 | extern 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. */ |
| 188 | static EMACS_INT process_tick; | 184 | static 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; |