X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..4def3b359546ee186b3db723db719f85b761f36a:/src/common/parser.y diff --git a/src/common/parser.y b/src/common/parser.y index 591c10c551..d81dd0ca96 100644 --- a/src/common/parser.y +++ b/src/common/parser.y @@ -1,3 +1,4 @@ +/* Version: $Id$ */ %{ #include "wx/setup.h" #include @@ -78,14 +79,12 @@ command : WORD PERIOD expr : WORD OPEN arglist CLOSE {$$ = proio_cons(wxmake_word($1), $3); free($1);} - | OPEN_SQUARE CLOSE_SQUARE - {$$ = proio_cons(NULL, NULL);} | OPEN_SQUARE arglist CLOSE_SQUARE {$$ = $2; } ; arglist : - {$$ = NULL;} + {$$ = proio_cons(NULL, NULL);} | arg {$$ = proio_cons($1, NULL);} | @@ -156,8 +155,11 @@ void yyerror(char *s) * the UNIX flex expects a proper function. */ -/* At least on alphaev6-dec-osf4.0e yywrap() must be #define'd */ -#if defined( __ALPHA__ ) && !defined( __VMS__ ) +/* At least on alphaev6-dec-osf4.0e yywrap() must be #define'd. + * RL: ... but on Debian/Alpha(linux) it must not, so hopefully + * testing for __OSF__ here is what we really want. + */ +#ifdef __OSF__ #ifndef yywrap #define yywrap() 1 #endif