From 091dd71f086eae0f7ca64405bb823678e5741cbc Mon Sep 17 00:00:00 2001
From: Benno Schulenberg <bensberg@telfort.nl>
Date: Thu, 11 Jan 2018 10:31:23 +0100
Subject: [PATCH] tweaks: remove a superfluous case -- there can never be four
 digits

---
 src/winio.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/winio.c b/src/winio.c
index ec3838ae..d2a0e164 100644
--- a/src/winio.c
+++ b/src/winio.c
@@ -1316,12 +1316,6 @@ int get_byte_kbinput(int kbinput)
 				 * Return this character as the result. */
 				retval = kbinput;
 			break;
-		default:
-			/* If there are more than three digits, return this
-			 * character as the result.  (Maybe we should produce an
-			 * error instead?) */
-			retval = kbinput;
-			break;
 	}
 
 	/* If we have a result, reset the counter and the byte holder. */
-- 
GitLab