diff options
| author | Richard M. Stallman | 1994-05-17 19:38:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-17 19:38:00 +0000 |
| commit | f2a578bad4766b17aa2b0411926b948067be9f54 (patch) | |
| tree | 0908ae2cab98daa429bb3703440fb9dfcb8b95a5 /src | |
| parent | d410d33931f668b2d7a7c8ca5d2ccb82c850ab76 (diff) | |
| download | emacs-f2a578bad4766b17aa2b0411926b948067be9f54.tar.gz emacs-f2a578bad4766b17aa2b0411926b948067be9f54.zip | |
(update_frame): Fix backwd test of outq and baud_rate.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispnew.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index 1c37ccca323..76eba6fbdb8 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -1258,7 +1258,7 @@ update_frame (f, force, inhibit_hairy_id) | |||
| 1258 | outq = PENDING_OUTPUT_COUNT (stdout); | 1258 | outq = PENDING_OUTPUT_COUNT (stdout); |
| 1259 | #endif | 1259 | #endif |
| 1260 | outq *= 10; | 1260 | outq *= 10; |
| 1261 | if (baud_rate >= outq) | 1261 | if (baud_rate <= outq) |
| 1262 | sleep (outq / baud_rate); | 1262 | sleep (outq / baud_rate); |
| 1263 | } | 1263 | } |
| 1264 | } | 1264 | } |