diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-04-03 21:17:50 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-04-03 21:17:50 +0000 |
| commit | b66b0ef95a678fb821ffce78bb22309966b8eada (patch) | |
| tree | 9b4f4a8cebc45896889eb91eb9d929e59fd9af4c /openbox | |
| parent | ce901a234111f0a6cf98b441c011289ce0d0bdfa (diff) | |
use the values from the yacc parser
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/parse.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/openbox/parse.h b/openbox/parse.h index a267757c..f2d22f81 100644 --- a/openbox/parse.h +++ b/openbox/parse.h @@ -5,11 +5,11 @@ #include "parse.tab.h" typedef enum { - TOKEN_REAL, - TOKEN_INTEGER, - TOKEN_STRING, - TOKEN_IDENTIFIER, - TOKEN_BOOL, + TOKEN_REAL = REAL, + TOKEN_INTEGER = INTEGER, + TOKEN_STRING = STRING, + TOKEN_IDENTIFIER = IDENTIFIER, + TOKEN_BOOL = BOOL, TOKEN_LBRACKET = '(', TOKEN_RBRACKET = ')', TOKEN_LBRACE = '{', |
