diff options
| author | Paul Eggert <eggert@cs.ucla.edu> | 2011-09-21 13:21:07 -0700 |
|---|---|---|
| committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-09-21 13:21:07 -0700 |
| commit | c5c18a57577d2f70199e3ce9b2c29fc03cd82e89 (patch) | |
| tree | 91772910f81c61d9caec3fc42f2f56460dc06f95 /src | |
| parent | 1ab7b8ac177e323b0c82b9ccdb42ba47229f4e9e (diff) | |
| download | emacs-c5c18a57577d2f70199e3ce9b2c29fc03cd82e89.tar.gz | |
* 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. */) if (!NILP (seconds)) { - double duration = extract_float (duration); + double duration = extract_float (seconds); if (0 < duration) duration_to_sec_usec (duration, &secs, &usecs); } |
