]> git.saurik.com Git - bison.git/blobdiff - src/lex.c
Rename all the `bucket's as `symbol_t'.
[bison.git] / src / lex.c
index cb7b2127d5426bfb955268ef9516d8077ee24b91..2d5caef124523de657a1a314183238ea23ba969f 100644 (file)
--- a/src/lex.c
+++ b/src/lex.c
 static struct obstack token_obstack;
 const char *token_buffer = NULL;
 
 static struct obstack token_obstack;
 const char *token_buffer = NULL;
 
-bucket *symval = NULL;
+symbol_t *symval = NULL;
 int numval;
 
 /* A token to be reread, see unlex and lex. */
 static token_t unlexed = tok_undef;
 int numval;
 
 /* A token to be reread, see unlex and lex. */
 static token_t unlexed = tok_undef;
-static bucket *unlexed_symval = NULL;
+static symbol_t *unlexed_symval = NULL;
 static const char *unlexed_token_buffer = NULL;
 
 void
 static const char *unlexed_token_buffer = NULL;
 
 void