another attempt to fix parser compilation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9137 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2001-01-21 01:22:39 +00:00
parent 93f30ee67a
commit cb73d83f63

View File

@ -83,7 +83,7 @@ expr : WORD OPEN arglist CLOSE
;
arglist :
{$$ = NULL;}
{$$ = proio_cons(NULL, NULL);}
| arg
{$$ = proio_cons($1, NULL);}
|