diff options
| author | Paul Eggert | 2011-09-21 13:21:07 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-09-21 13:21:07 -0700 |
| commit | c5c18a57577d2f70199e3ce9b2c29fc03cd82e89 (patch) | |
| tree | 91772910f81c61d9caec3fc42f2f56460dc06f95 /src | |
| parent | 1ab7b8ac177e323b0c82b9ccdb42ba47229f4e9e (diff) | |
| download | emacs-c5c18a57577d2f70199e3ce9b2c29fc03cd82e89.tar.gz emacs-c5c18a57577d2f70199e3ce9b2c29fc03cd82e89.zip | |
* process.c (Faccept_process_output): Fix typo in duration.
Diffstat (limited to 'src')
| -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 d604415bdd0..ab01728e215 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -3960,7 +3960,7 @@ Return non-nil if we received any output before the timeout expired. */) | |||
| 3960 | 3960 | ||
| 3961 | if (!NILP (seconds)) | 3961 | if (!NILP (seconds)) |
| 3962 | { | 3962 | { |
| 3963 | double duration = extract_float (duration); | 3963 | double duration = extract_float (seconds); |
| 3964 | if (0 < duration) | 3964 | if (0 < duration) |
| 3965 | duration_to_sec_usec (duration, &secs, &usecs); | 3965 | duration_to_sec_usec (duration, &secs, &usecs); |
| 3966 | } | 3966 | } |