diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-29 00:55:25 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-29 00:55:25 -0700 |
commit | 8727937b9656243b361ba3d8d12ff1ac502a9080 (patch) | |
tree | e0c9ddbc3558e9b0939a3f61e0776b216c9509ff /src/process.c | |
parent | 8ac068ac0c00afa85bc4df54032b7a855c639312 (diff) | |
download | emacs-8727937b9656243b361ba3d8d12ff1ac502a9080.tar.gz |
* 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/>. */ #include <sys/file.h> #include <sys/stat.h> #include <setjmp.h> -#ifdef HAVE_INTTYPES_H -#include <inttypes.h> -#endif #include <unistd.h> #include <fcntl.h> @@ -4539,7 +4536,7 @@ wait_reading_process_output (int time_limit, int microsecs, int read_kbd, some data in the TCP buffers so that select works, but with custom pull/push functions we need to check if some data is available in the buffers manually. */ - if (nfds == 0 && + if (nfds == 0 && wait_proc && wait_proc->gnutls_p /* Check for valid process. */ /* Do we have pending data? */ && gnutls_record_check_pending (wait_proc->gnutls_state) > 0) |