diff options
| author | Paul Eggert | 2011-04-29 00:55:25 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-29 00:55:25 -0700 |
| commit | 8727937b9656243b361ba3d8d12ff1ac502a9080 (patch) | |
| tree | e0c9ddbc3558e9b0939a3f61e0776b216c9509ff /src/process.c | |
| parent | 8ac068ac0c00afa85bc4df54032b7a855c639312 (diff) | |
| download | emacs-8727937b9656243b361ba3d8d12ff1ac502a9080.tar.gz emacs-8727937b9656243b361ba3d8d12ff1ac502a9080.zip | |
* lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c index 1544522ff55..59d1b9ea77f 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -28,9 +28,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 28 | #include <sys/file.h> | 28 | #include <sys/file.h> |
| 29 | #include <sys/stat.h> | 29 | #include <sys/stat.h> |
| 30 | #include <setjmp.h> | 30 | #include <setjmp.h> |
| 31 | #ifdef HAVE_INTTYPES_H | ||
| 32 | #include <inttypes.h> | ||
| 33 | #endif | ||
| 34 | 31 | ||
| 35 | #include <unistd.h> | 32 | #include <unistd.h> |
| 36 | #include <fcntl.h> | 33 | #include <fcntl.h> |
| @@ -4539,7 +4536,7 @@ wait_reading_process_output (int time_limit, int microsecs, int read_kbd, | |||
| 4539 | some data in the TCP buffers so that select works, but | 4536 | some data in the TCP buffers so that select works, but |
| 4540 | with custom pull/push functions we need to check if some | 4537 | with custom pull/push functions we need to check if some |
| 4541 | data is available in the buffers manually. */ | 4538 | data is available in the buffers manually. */ |
| 4542 | if (nfds == 0 && | 4539 | if (nfds == 0 && |
| 4543 | wait_proc && wait_proc->gnutls_p /* Check for valid process. */ | 4540 | wait_proc && wait_proc->gnutls_p /* Check for valid process. */ |
| 4544 | /* Do we have pending data? */ | 4541 | /* Do we have pending data? */ |
| 4545 | && gnutls_record_check_pending (wait_proc->gnutls_state) > 0) | 4542 | && gnutls_record_check_pending (wait_proc->gnutls_state) > 0) |