From: ceriel Date: Tue, 26 Jan 1988 13:54:24 +0000 (+0000) Subject: bug fix in LONGINT constants X-Git-Tag: release-5-5~3643 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=e67e59e56ad788e7889dc5277e5323b76491694c;p=ack.git bug fix in LONGINT constants --- diff --git a/lang/m2/comp/LLlex.c b/lang/m2/comp/LLlex.c index 2b09703d1..047aa5db9 100644 --- a/lang/m2/comp/LLlex.c +++ b/lang/m2/comp/LLlex.c @@ -425,7 +425,10 @@ again: if (np < &buf[NUMSIZE]) *np++ = 'D'; state = Hex; } - else state = End; + else { + state = End; + PushBack(); + } break; case Hex: