From 921908704b980c90c3c68545be7f4d42718bfba4 Mon Sep 17 00:00:00 2001
From: markus schnalke <meillo@marmaro.de>
Date: Fri, 22 Jun 2012 15:58:34 +0200
Subject: [PATCH] mhl: Removed remaining code of obsolete -sleep switch. The
 switch was used for the faceproc, for Face: header field handling.

---
 uip/mhl.c | 21 +++++----------------
 1 file changed, 5 insertions(+), 16 deletions(-)

diff --git a/uip/mhl.c b/uip/mhl.c
index 5280ade6..fedf78fa 100644
--- a/uip/mhl.c
+++ b/uip/mhl.c
@@ -45,17 +45,15 @@ static struct swit switches[] = {
 	{ "form formfile", 0 },
 #define WIDTHSW  1
 	{ "width columns", 0 },
-#define SLEEPSW  2
-	{ "sleep seconds",  0 },
-#define VERSIONSW  3
+#define VERSIONSW  2
 	{ "Version", 0 },
-#define HELPSW  4
+#define HELPSW  3
 	{ "help", 0 },
-#define FORW1SW  5
+#define FORW1SW  4
 	{ "forward", -7 },
-#define FORW2SW  6
+#define FORW2SW  5
 	{ "forwall", -7 },
-#define NBODYSW  7
+#define NBODYSW  6
 	{ "nobody", -6 },
 	{ NULL, 0 }
 };
@@ -157,8 +155,6 @@ static int dobody    = 1;
 static int forwflg   = 0;
 static int forwall   = 0;
 
-static int sleepsw = NOTOK;
-
 static int exitstat = 0;
 static int mhldebug = 0;
 
@@ -261,13 +257,6 @@ main(int argc, char **argv)
 							argp[-2]);
 				continue;
 
-			case SLEEPSW:
-				if (!(cp = *argp++) || *cp == '-')
-					adios(NULL, "missing argument to %s",
-							argp[-2]);
-				sleepsw = atoi(cp);  /* ZERO ok! */
-				continue;
-
 			case WIDTHSW:
 				if (!(cp = *argp++) || *cp == '-')
 					adios(NULL, "missing argument to %s",
-- 
2.39.5