diff options
author | Tavian Barnes <tavianator@gmail.com> | 2009-11-25 16:48:13 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2009-11-25 16:48:13 -0500 |
commit | cc79ac6130baca3179de24004420ce1d0199a140 (patch) | |
tree | e680dbecd5536c188e185c33958d3fab533f72b3 /dimension/grammar.y | |
parent | 640917131f4f403f1d84ee2ff4d5a33c08a9c53a (diff) | |
download | dimension-cc79ac6130baca3179de24004420ce1d0199a140.tar.xz |
Use the dmnsn_ prefix for flex/bison generated sources.
Diffstat (limited to 'dimension/grammar.y')
-rw-r--r-- | dimension/grammar.y | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dimension/grammar.y b/dimension/grammar.y index 5a271cc..06260d4 100644 --- a/dimension/grammar.y +++ b/dimension/grammar.y @@ -188,6 +188,8 @@ yyerror(YYLTYPE *locp, dmnsn_array *astree, dmnsn_token_iterator *iterator, %error-verbose %token-table +%name-prefix "dmnsn_yy" + %expect 0 %parse-param {dmnsn_array *astree} |