From: Dana Jansens Date: Thu, 3 Apr 2003 21:17:50 +0000 (+0000) Subject: use the values from the yacc parser X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=b66b0ef95a678fb821ffce78bb22309966b8eada;p=chaz%2Fopenbox use the values from the yacc parser --- 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 = '{',