X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b8c631bb299230a18a9d2bbb26d28a426c161a8f..706bb5f973ccb44a924ee1f9aa79c7ee34eb2556:/src/common/parser.y?ds=sidebyside diff --git a/src/common/parser.y b/src/common/parser.y index 7600083ee7..d9ae9b194b 100644 --- a/src/common/parser.y +++ b/src/common/parser.y @@ -3,6 +3,9 @@ #ifdef _MSC_VER #include #endif +#if defined(__GNUWIN32__) && !defined(__TWIN32__) +#include +#endif #include "wx/expr.h" @@ -70,7 +73,7 @@ commands : /* empty */ ; command : WORD PERIOD - {process_command(proio_cons(make_word($1), NULL)); free($1);} + {process_command(proio_cons(wxmake_word($1), NULL)); free($1);} | expr PERIOD {process_command($1);} | error PERIOD @@ -78,7 +81,7 @@ command : WORD PERIOD ; expr : WORD OPEN arglist CLOSE - {$$ = proio_cons(make_word($1), $3); free($1);} + {$$ = proio_cons(wxmake_word($1), $3); free($1);} | OPEN_SQUARE CLOSE_SQUARE {$$ = proio_cons(NULL, NULL);} | OPEN_SQUARE arglist CLOSE_SQUARE @@ -95,24 +98,24 @@ arglist : ; arg : WORD EQUALS arg1 - {$$ = proio_cons(make_word("="), proio_cons(make_word($1), proio_cons($3, NULL))); + {$$ = proio_cons(wxmake_word("="), proio_cons(wxmake_word($1), proio_cons($3, NULL))); free($1); } | arg1 {$$ = $1; } arg1 : WORD - {$$ = make_word($1); free($1);} + {$$ = wxmake_word($1); free($1);} | STRING - {$$ = make_string($1); free($1);} + {$$ = wxmake_string($1); free($1);} | INTEGER - {$$ = make_integer($1); free($1);} + {$$ = wxmake_integer($1); free($1);} | INTEGER PERIOD INTEGER - {$$ = make_real($1, $3); free($1); free($3); } + {$$ = wxmake_real($1, $3); free($1); free($3); } | INTEGER EXP INTEGER - {$$ = make_exp($1, $3); free($1); free($3); } + {$$ = wxmake_exp($1, $3); free($1); free($3); } | INTEGER PERIOD INTEGER EXP INTEGER - {$$ = make_exp2($1, $3, $5); free($1); free($3); + {$$ = wxmake_exp2($1, $3, $5); free($1); free($3); free($5); } | expr @@ -121,11 +124,15 @@ arg1 : WORD %% -#ifdef __WXGTK__ +#if (defined(__WXGTK__) || defined(__WXMOTIF__)) && !defined(NO_CONFIGURE) #include "lexer.c" #else +#if (defined(__MWERKS__)) +#include "../common/cwlex_yy.c" +#else #include "../common/lex_yy.c" #endif +#endif /* void yyerror(s) @@ -159,7 +166,7 @@ void yyerror(char *s) #ifndef yywrap #define yywrap() 1 #endif -#else if !defined(__alpha) && !defined(__ultrix) +#else if !defined(__alpha___) && !defined(__ultrix) int yywrap() { return 1; } #endif #endif