projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
char* -> wxString
[wxWidgets.git]
/
src
/
common
/
parser.y
diff --git
a/src/common/parser.y
b/src/common/parser.y
index 1fb7dceb10c9be92d2c030a48a26a33677afc47e..d9ae9b194b5d14134c18343dff17067ecab4ef60 100644
(file)
--- a/
src/common/parser.y
+++ b/
src/common/parser.y
@@
-1,5
+1,12
@@
%{
#include <string.h>
%{
#include <string.h>
+#ifdef _MSC_VER
+#include <io.h>
+#endif
+#if defined(__GNUWIN32__) && !defined(__TWIN32__)
+#include <sys/unistd.h>
+#endif
+
#include "wx/expr.h"
#ifndef __EXTERN_C__
#include "wx/expr.h"
#ifndef __EXTERN_C__
@@
-66,7
+73,7
@@
commands : /* empty */
;
command : WORD PERIOD
;
command : WORD PERIOD
- {process_command(proio_cons(make_word($1), NULL)); free($1);}
+ {process_command(proio_cons(
wx
make_word($1), NULL)); free($1);}
| expr PERIOD
{process_command($1);}
| error PERIOD
| expr PERIOD
{process_command($1);}
| error PERIOD
@@
-74,7
+81,7
@@
command : WORD PERIOD
;
expr : WORD OPEN arglist CLOSE
;
expr : WORD OPEN arglist CLOSE
- {$$ = proio_cons(make_word($1), $3); free($1);}
+ {$$ = proio_cons(
wx
make_word($1), $3); free($1);}
| OPEN_SQUARE CLOSE_SQUARE
{$$ = proio_cons(NULL, NULL);}
| OPEN_SQUARE arglist CLOSE_SQUARE
| OPEN_SQUARE CLOSE_SQUARE
{$$ = proio_cons(NULL, NULL);}
| OPEN_SQUARE arglist CLOSE_SQUARE
@@
-91,24
+98,24
@@
arglist :
;
arg : WORD EQUALS arg1
;
arg : WORD EQUALS arg1
- {$$ = proio_cons(
make_word("="), proio_cons(
make_word($1), proio_cons($3, NULL)));
+ {$$ = proio_cons(
wxmake_word("="), proio_cons(wx
make_word($1), proio_cons($3, NULL)));
free($1); }
| arg1
{$$ = $1; }
arg1 : WORD
free($1); }
| arg1
{$$ = $1; }
arg1 : WORD
- {$$ = make_word($1); free($1);}
+ {$$ =
wx
make_word($1); free($1);}
| STRING
| STRING
- {$$ = make_string($1); free($1);}
+ {$$ =
wx
make_string($1); free($1);}
| INTEGER
| INTEGER
- {$$ = make_integer($1); free($1);}
+ {$$ =
wx
make_integer($1); free($1);}
| INTEGER PERIOD INTEGER
| INTEGER PERIOD INTEGER
- {$$ = make_real($1, $3); free($1); free($3); }
+ {$$ =
wx
make_real($1, $3); free($1); free($3); }
| INTEGER EXP INTEGER
| INTEGER EXP INTEGER
- {$$ = make_exp($1, $3); free($1); free($3); }
+ {$$ =
wx
make_exp($1, $3); free($1); free($3); }
|
INTEGER PERIOD INTEGER EXP INTEGER
|
INTEGER PERIOD INTEGER EXP INTEGER
- {$$ = make_exp2($1, $3, $5); free($1); free($3);
+ {$$ =
wx
make_exp2($1, $3, $5); free($1); free($3);
free($5); }
| expr
free($5); }
| expr
@@
-117,7
+124,15
@@
arg1 : WORD
%%
%%
+#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"
#include "../common/lex_yy.c"
+#endif
+#endif
/*
void yyerror(s)
/*
void yyerror(s)
@@
-151,7
+166,7
@@
void yyerror(char *s)
#ifndef yywrap
#define yywrap() 1
#endif
#ifndef yywrap
#define yywrap() 1
#endif
-#else if !defined(__alpha) && !defined(__ultrix)
+#else if !defined(__alpha
___
) && !defined(__ultrix)
int yywrap() { return 1; }
#endif
#endif
int yywrap() { return 1; }
#endif
#endif