From: Vadim Zeitlin Date: Sun, 21 Jan 2001 01:22:39 +0000 (+0000) Subject: another attempt to fix parser compilation X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cb73d83f6328202f2b2b25d41e4f27b032f550c4 another attempt to fix parser compilation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9137 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/parser.y b/src/common/parser.y index 6cca59c6e7..336c6e5102 100644 --- a/src/common/parser.y +++ b/src/common/parser.y @@ -83,7 +83,7 @@ expr : WORD OPEN arglist CLOSE ; arglist : - {$$ = NULL;} + {$$ = proio_cons(NULL, NULL);} | arg {$$ = proio_cons($1, NULL);} |