From f2b83201e11d7da1bbaa64d0e0d438bea4132a9b Mon Sep 17 00:00:00 2001 From: Oliver Webb Date: Mon, 16 Sep 2024 00:16:37 -0500 Subject: [PATCH] Sleeping on reset is behavoir from physical terminals that's been outdated since the 90s at latest Sleeping on reset/initialization only makes sense if you need to give time for a physical terminal to work. Since every terminal since the 90s has been emulated in some form. This code is more than deprecated enough to strip it out --- tset/set.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tset/set.c b/tset/set.c index 141c747..3f46dea 100644 --- a/tset/set.c +++ b/tset/set.c @@ -236,7 +236,6 @@ set_init(void) if (settle) { (void)putc('\r', stderr); (void)fflush(stderr); - (void)sleep(1); /* Settle the terminal. */ } }