Undo last commit.

This commit is contained in:
Joel E. Denny
2006-08-14 22:40:33 +00:00
parent 2d2c1a2dec
commit 5362ed19b6
2 changed files with 2 additions and 7 deletions

View File

@@ -1,8 +1,3 @@
2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
* src/scan-gram.l (braces_level, context_state): Make these globals
static.
2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
In the grammar scanner, STRING_FINISH unclosed constructs and return

View File

@@ -108,10 +108,10 @@ splice (\\[ \f\t\v]*\n)*
%%
%{
/* Nesting level of the current code in braces. */
static int braces_level IF_LINT (= 0);
int braces_level IF_LINT (= 0);
/* Parent context state, when applicable. */
static int context_state IF_LINT (= 0);
int context_state IF_LINT (= 0);
/* Location of most recent identifier, when applicable. */
location id_loc IF_LINT (= empty_location);