bug fix in LONGINT constants

This commit is contained in:
ceriel 1988-01-26 13:54:24 +00:00
parent e5b9c564af
commit e67e59e56a

View file

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