From: Richard M. Stallman Date: Tue, 17 May 1994 19:38:00 +0000 (+0000) Subject: (update_frame): Fix backwd test of outq and baud_rate. X-Git-Tag: emacs-19.34~8324 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f2a578bad4766b17aa2b0411926b948067be9f54;p=emacs.git (update_frame): Fix backwd test of outq and baud_rate. --- 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) outq = PENDING_OUTPUT_COUNT (stdout); #endif outq *= 10; - if (baud_rate >= outq) + if (baud_rate <= outq) sleep (outq / baud_rate); } }