aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-01-10 14:40:56 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-01-10 14:40:56 -0200
commit595e449537eb6ff17fa6c58742920a1a609fc5c5 (patch)
tree058f4e2de05310ed977c58715982f65ec670c678 /llex.h
parenta907aeeb1e4850cb6509a61bdf6a16bc42d68c4f (diff)
downloadlua-595e449537eb6ff17fa6c58742920a1a609fc5c5.tar.gz
lua-595e449537eb6ff17fa6c58742920a1a609fc5c5.tar.bz2
lua-595e449537eb6ff17fa6c58742920a1a609fc5c5.zip
tighter size for error buffers
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llex.h b/llex.h
index e342f261..07e0bf05 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.31 2000/09/27 17:41:58 roberto Exp roberto $ 2** $Id: llex.h,v 1.32 2000/12/04 18:33:40 roberto Exp roberto $
3** Lexical Analyzer 3** Lexical Analyzer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -13,8 +13,8 @@
13 13
14#define FIRST_RESERVED 257 14#define FIRST_RESERVED 257
15 15
16/* maximum length of a reserved word (+1 for final 0) */ 16/* maximum length of a reserved word */
17#define TOKEN_LEN 15 17#define TOKEN_LEN (sizeof("function"))
18 18
19 19
20/* 20/*