From d520f0d2ad1899d8c5145ec49b8dfb61645ce6c0 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 17 May 1994 19:38:45 +0000 Subject: [PATCH] (update_frame): Fix test of outq and baud_rate some more. --- src/dispnew.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispnew.c b/src/dispnew.c index 76eba6fbdb8..8001c545029 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 && baud_rate > 0) sleep (outq / baud_rate); } } -- 2.39.5