From f2a578bad4766b17aa2b0411926b948067be9f54 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 17 May 1994 19:38:00 +0000 Subject: [PATCH] (update_frame): Fix backwd test of outq and baud_rate. --- src/dispnew.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.39.5