mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-23 03:03:02 +00:00
* src/lex.h: Echo modifications.
* src/lex.c (unlex): Parameter is now token_t.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2001-10-01 Marc Autret <autret_m@epita.fr>
|
||||||
|
|
||||||
|
* src/lex.h: Echo modifications.
|
||||||
|
* src/lex.c (unlex): Parameter is now token_t.
|
||||||
|
|
||||||
2001-10-01 Marc Autret <autret_m@epita.fr>
|
2001-10-01 Marc Autret <autret_m@epita.fr>
|
||||||
|
|
||||||
* src/main.c: Include lex.h.
|
* src/main.c: Include lex.h.
|
||||||
|
|||||||
@@ -321,7 +321,7 @@ literalchar (struct obstack *out, int *pcode, char term)
|
|||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
unlex (int token)
|
unlex (token_t token)
|
||||||
{
|
{
|
||||||
unlexed = token;
|
unlexed = token;
|
||||||
unlexed_symval = symval;
|
unlexed_symval = symval;
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ extern int numval;
|
|||||||
void lex_init PARAMS ((void));
|
void lex_init PARAMS ((void));
|
||||||
void lex_free PARAMS ((void));
|
void lex_free PARAMS ((void));
|
||||||
int skip_white_space PARAMS ((void));
|
int skip_white_space PARAMS ((void));
|
||||||
void unlex PARAMS ((int));
|
void unlex PARAMS ((token_t));
|
||||||
void read_type_name PARAMS ((FILE *fin));
|
void read_type_name PARAMS ((FILE *fin));
|
||||||
|
|
||||||
/* Return one of the token-type codes. When an identifier is seen,
|
/* Return one of the token-type codes. When an identifier is seen,
|
||||||
|
|||||||
Reference in New Issue
Block a user