comparison src/dispnew.c @ 7529:e326ef45f084

(update_frame): Fix backwd test of outq and baud_rate.
author Richard M. Stallman <rms@gnu.org>
date Tue, 17 May 1994 19:38:00 +0000
parents e5a2552872bf
children 57c2345a9002
comparison
equal deleted inserted replaced
7528:9b2c273b91af 7529:e326ef45f084
1256 /* Probably not a tty. Ignore the error and reset 1256 /* Probably not a tty. Ignore the error and reset
1257 * the outq count. */ 1257 * the outq count. */
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 }
1265 if ((i - 1) % preempt_count == 0) 1265 if ((i - 1) % preempt_count == 0)
1266 detect_input_pending (); 1266 detect_input_pending ();