aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-17 19:38:00 +0000
committerRichard M. Stallman1994-05-17 19:38:00 +0000
commitf2a578bad4766b17aa2b0411926b948067be9f54 (patch)
tree0908ae2cab98daa429bb3703440fb9dfcb8b95a5 /src
parentd410d33931f668b2d7a7c8ca5d2ccb82c850ab76 (diff)
downloademacs-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.c2
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 }