From 3655e5dcef762f903db911b26dee2a7d724e1eff Mon Sep 17 00:00:00 2001 From: Andrey Chernov Date: Tue, 31 May 1994 22:43:57 +0000 Subject: [PATCH] Add missing 38400, 57600 and 115200 baud to delay table --- lib/libterm/tputs.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/libterm/tputs.c b/lib/libterm/tputs.c index 89da564833..83a1696408 100644 --- a/lib/libterm/tputs.c +++ b/lib/libterm/tputs.c @@ -44,8 +44,9 @@ static char sccsid[] = "@(#)tputs.c 5.3 (Berkeley) 6/1/90"; * baud returns a 7, there are 33.3 milliseconds per char at 300 baud. */ static -short tmspc10[] = { - 0, 2000, 1333, 909, 743, 666, 500, 333, 166, 83, 55, 41, 20, 10, 5 +short tmspc10[] = { + 0, 2000, 1333, 909, 743, 666, 500, 333, 166, 83, 55, 41, 20, 10, 5, + 3, 2, 1 }; short ospeed; -- 2.20.1