Get tests working again.

This commit is contained in:
Arnold D. Robbins 2020-01-31 08:54:10 +02:00
parent 78c79c06d0
commit 768d6b5886
2 changed files with 7 additions and 1 deletions

3
FIXES
View File

@ -28,7 +28,8 @@ was sent to the printers in August, 1987.
January 31, 2020:
Merge PR #70, which avoids use of variable length arrays. Thanks
to GitHub user michaelforney. Fix issue #60 ({0} in interval
expressions doesn't work). Thanks to Arnold Robbins.
expressions doesn't work). Also get all tests working again.
Thanks to Arnold Robbins.
January 24, 2020:
A number of small cleanups from Christos Zoulas. Add the close

5
lex.c
View File

@ -210,6 +210,11 @@ int yylex(void)
while ((c = input()) != '\n' && c != 0)
;
unput(c);
/*
* Next line is a hack, itcompensates for
* unput's treatment of \n.
*/
lineno++;
break;
case ';':
RET(';');