bug fix in LONGINT constants

This commit is contained in:
ceriel
1988-01-26 13:54:24 +00:00
parent 80f6e0ffb3
commit da2ac721b6

View File

@@ -425,7 +425,10 @@ again:
if (np < &buf[NUMSIZE]) *np++ = 'D'; if (np < &buf[NUMSIZE]) *np++ = 'D';
state = Hex; state = Hex;
} }
else state = End; else {
state = End;
PushBack();
}
break; break;
case Hex: case Hex: