]> git.saurik.com Git - bison.git/commitdiff
* src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
authorAkim Demaille <akim@epita.fr>
Thu, 18 Jan 2001 15:32:11 +0000 (15:32 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 18 Jan 2001 15:32:11 +0000 (15:32 +0000)
* src/lex.c (maxtoken, grow_token_buffer): Static.

ChangeLog
src/lex.c
src/lex.h

index c4380a93d04c51006817d3eb7abb5cc132579465..a7f4dc315d8c6f128a59614eec986737d63c1a25 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-18  Akim Demaille  <akim@epita.fr>
+
+       * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
+       * src/lex.c (maxtoken, grow_token_buffer): Static.
+
 2001-01-18  Akim Demaille  <akim@epita.fr>
 
        Since we now use obstacks, more % directives can be enabled.
index 6e54712443f03f9810d7f6ae02b97c14a001af54..371fbed96ccfa98004dc291949bc15baf79e0466 100644 (file)
--- a/src/lex.c
+++ b/src/lex.c
@@ -33,7 +33,7 @@
 char *token_buffer;
 
 /* Allocated size of token_buffer, not including space for terminator.  */
-int maxtoken;
+static int maxtoken;
 
 bucket *symval;
 int numval;
@@ -51,7 +51,7 @@ init_lex (void)
 }
 
 
-char *
+static char *
 grow_token_buffer (char *p)
 {
   int offset = p - token_buffer;
index 3e4560f50c568bf25f00c1861228220e66705a2e..d14479aac9d449735a325b4a14fd71a64d671d18 100644 (file)
--- a/src/lex.h
+++ b/src/lex.h
 # define SETOPT                26
 # define ILLEGAL       27
 
-# define MAXTOKEN      1024
 
-
-/* Allocated size of token_buffer, not including space for terminator.  */
-extern int maxtoken;
 extern char *token_buffer;
-char *grow_token_buffer PARAMS ((char *));
+extern bucket *symval;
+extern int numval;
 
 void init_lex PARAMS ((void));
 int skip_white_space PARAMS ((void));
@@ -71,7 +68,4 @@ int lex PARAMS ((void));
 
 int parse_percent_token PARAMS ((void));
 
-extern bucket *symval;
-extern int numval;
-
 #endif /* !LEX_H_ */