Patch #6262. New developers guide and resulting fixes and cleanups.
[pspp-builds.git] / src / language / lexer / lexer.c
index 79657df7d52793ec2b9cc8f385947de13bac3203..ac0af60005edc2e97f3c7c491309ceca51af8a10 100644 (file)
@@ -52,7 +52,7 @@ struct lexer
   int token;      /* Current token. */
   double tokval;  /* T_POS_NUM, T_NEG_NUM: the token's value. */
 
-  char tokid [LONG_NAME_LEN + 1];   /* T_ID: the identifier. */
+  char tokid [VAR_NAME_LEN + 1];   /* T_ID: the identifier. */
 
   struct string tokstr;   /* T_ID, T_STRING: token string value.
                            For T_ID, this is not truncated as is