]> git.eshelyaron.com Git - emacs.git/commitdiff
(update_frame): Fix backwd test of outq and baud_rate.
authorRichard M. Stallman <rms@gnu.org>
Tue, 17 May 1994 19:38:00 +0000 (19:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 17 May 1994 19:38:00 +0000 (19:38 +0000)
src/dispnew.c

index 1c37ccca323b56c03bc27ae0f46c2269f1479432..76eba6fbdb8094f0c78ce5d0181ea3fbd993ec76 100644 (file)
@@ -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);
                    }
                }