Allow spaces after a code letter

This commit is contained in:
Scott Lahteine 2016-02-09 18:03:13 -08:00
parent cdcb80f3c5
commit 400e9329be

View File

@ -973,6 +973,7 @@ void get_command() {
bool code_has_value() {
int i = 1;
char c = seen_pointer[i];
while (c == ' ') c = seen_pointer[++i];
if (c == '-' || c == '+') c = seen_pointer[++i];
if (c == '.') c = seen_pointer[++i];
return (c >= '0' && c <= '9');