* src/parse-gram.y: Fix minor problems uncovered by lint.

(current_lhs, current_lhs_location): Now static.
(current_assoc): Remove unused variable.
This commit is contained in:
Paul Eggert
2005-12-09 22:43:00 +00:00
parent 12ce2df60d
commit 877519f839
2 changed files with 26 additions and 3 deletions

View File

@@ -53,9 +53,8 @@ static void add_param (char const *, char *, location);
static symbol_class current_class = unknown_sym;
static uniqstr current_type = 0;
symbol *current_lhs;
location current_lhs_location;
assoc current_assoc;
static symbol *current_lhs;
static location current_lhs_location;
static int current_prec = 0;
%}