diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-19 10:07:31 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-19 10:07:31 -0700 |
commit | 71c59ec66bc258be6a641b26f793060f6d9522c8 (patch) | |
tree | 27193a8e9fbdcf7814a094fd437c81fbd8ec484c | |
parent | 66df1c262a0c816b28b21457fc499fadfcc0dbee (diff) |
Remove unused NEWLINE token.
We fixed the lexer a while back to never return a NEWLINE token, but
negelcted to clean up this declaration.
-rw-r--r-- | glcpp-parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glcpp-parse.y b/glcpp-parse.y index bca22cec86..bb57b30098 100644 --- a/glcpp-parse.y +++ b/glcpp-parse.y @@ -96,7 +96,7 @@ glcpp_parser_lex (glcpp_parser_t *parser); %parse-param {glcpp_parser_t *parser} %lex-param {glcpp_parser_t *parser} -%token DEFINE FUNC_MACRO IDENTIFIER NEWLINE OBJ_MACRO REPLACEMENT TOKEN UNDEF +%token DEFINE FUNC_MACRO IDENTIFIER OBJ_MACRO REPLACEMENT TOKEN UNDEF %type <str> argument_word FUNC_MACRO IDENTIFIER OBJ_MACRO REPLACEMENT TOKEN %type <string_list> argument macro parameter_list %type <argument_list> argument_list |