tweaks: remove a superfluous case -- there can never be four digits
parent
837475519b
commit
091dd71f08
|
@ -1316,12 +1316,6 @@ int get_byte_kbinput(int kbinput)
|
||||||
* Return this character as the result. */
|
* Return this character as the result. */
|
||||||
retval = kbinput;
|
retval = kbinput;
|
||||||
break;
|
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. */
|
/* If we have a result, reset the counter and the byte holder. */
|
||||||
|
|
Loading…
Reference in New Issue