aboutsummaryrefslogtreecommitdiff
path: root/src/lua/llex.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lua/llex.h (renamed from src/lua-5.3/llex.h)4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua-5.3/llex.h b/src/lua/llex.h
index 2ed0af6..d1a4cba 100644
--- a/src/lua-5.3/llex.h
+++ b/src/lua/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.79.1.1 2017/04/19 17:20:42 roberto Exp $ 2** $Id: llex.h $
3** Lexical Analyzer 3** Lexical Analyzer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -37,7 +37,7 @@ enum RESERVED {
37}; 37};
38 38
39/* number of reserved words */ 39/* number of reserved words */
40#define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1)) 40#define NUM_RESERVED (cast_int(TK_WHILE-FIRST_RESERVED + 1))
41 41
42 42
43typedef union { 43typedef union {