diff options
| author | Joakim Verona | 2013-04-09 00:21:04 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-04-09 00:21:04 +0200 |
| commit | e25d341cec1ebaee2b96d627d99d4d7b92dee6b0 (patch) | |
| tree | a837c08c8ff2a6054964bd73469f6386368300e7 /src/process.c | |
| parent | 9639da1e26683b6a54d255bb07a24dd6e0fae354 (diff) | |
| parent | 6fcdab68b3e73354fb17f4c8c4f8199d6f63cf30 (diff) | |
| download | emacs-e25d341cec1ebaee2b96d627d99d4d7b92dee6b0.tar.gz emacs-e25d341cec1ebaee2b96d627d99d4d7b92dee6b0.zip | |
xdisp fix
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 6a14a536707..911a30bc808 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4236,7 +4236,7 @@ wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd, | |||
| 4236 | time_limit = 0; | 4236 | time_limit = 0; |
| 4237 | nsecs = -1; | 4237 | nsecs = -1; |
| 4238 | } | 4238 | } |
| 4239 | else if (time_limit > TYPE_MAXIMUM (time_t)) | 4239 | else if (TYPE_MAXIMUM (time_t) < time_limit) |
| 4240 | time_limit = TYPE_MAXIMUM (time_t); | 4240 | time_limit = TYPE_MAXIMUM (time_t); |
| 4241 | 4241 | ||
| 4242 | /* Since we may need to wait several times, | 4242 | /* Since we may need to wait several times, |