tweaks: change a 'switch' to 'if', to elide a dummy 'return'

master
Benno Schulenberg 2020-07-20 18:21:43 +02:00
parent a0d2e63c8e
commit 6980cfbf70
1 changed files with 3 additions and 6 deletions

View File

@ -845,27 +845,24 @@ int assemble_byte_code(int kbinput)
{
static int byte = 0;
switch (++digit_count) {
case 1:
if (++digit_count == 1) {
/* The first digit is either 0, 1, or 2. */
byte = (kbinput - '0') * 100;
return PROCEED;
case 2:
} else if (digit_count == 2) {
/* The second digit may be at most 5 if the first was 2. */
if (byte < 200 || kbinput <= '5') {
byte += (kbinput - '0') * 10;
return PROCEED;
} else
return kbinput;
case 3:
} else {
/* The third digit may be at most 5 if first two were 2 and 5. */
if (byte < 250 || kbinput <= '5') {
return (byte + kbinput - '0');
} else
return kbinput;
}
return 0; /* FIXME: this suppresses a compilation warning */
}
/* Translate a normal ASCII character into its corresponding control code.