* defilep.y (opt_base): If no number given, set to default

(-1), not 0.
This commit is contained in:
Danny Smith
2003-03-18 21:33:43 +00:00
parent 06600e0681
commit 4064c85643
2 changed files with 6 additions and 1 deletions

View File

@ -236,7 +236,7 @@ opt_equal_name:
;
opt_base: BASE '=' NUMBER { $$ = $3;}
| { $$ = 0;}
| { $$ = -1;}
;
dot_name: ID { $$ = $1; }