tighter size for error buffers

This commit is contained in:
Roberto Ierusalimschy
2001-01-10 14:40:56 -02:00
parent a907aeeb1e
commit 595e449537
3 changed files with 12 additions and 11 deletions

6
llex.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: llex.h,v 1.31 2000/09/27 17:41:58 roberto Exp roberto $
** $Id: llex.h,v 1.32 2000/12/04 18:33:40 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -13,8 +13,8 @@
#define FIRST_RESERVED 257
/* maximum length of a reserved word (+1 for final 0) */
#define TOKEN_LEN 15
/* maximum length of a reserved word */
#define TOKEN_LEN (sizeof("function"))
/*