summaryrefslogtreecommitdiff
path: root/libs/liblua/src/llex.h
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2020-07-02 19:37:06 +0300
committerGeorge Hazan <ghazan@miranda.im>2020-07-02 19:37:06 +0300
commitd35fd87e643656a43e1ec19e18ead85839886679 (patch)
treed3c67be211c7e5ff89d339710ab65b82be9ce99f /libs/liblua/src/llex.h
parentf10699e580b3eead1cb9c250822abbbc626eb3e3 (diff)
fixes #2472 (Update liblua to 5.4)
Diffstat (limited to 'libs/liblua/src/llex.h')
-rw-r--r--libs/liblua/src/llex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/liblua/src/llex.h b/libs/liblua/src/llex.h
index 2ed0af66a4..d1a4cba7c2 100644
--- a/libs/liblua/src/llex.h
+++ b/libs/liblua/src/llex.h
@@ -1,5 +1,5 @@
/*
-** $Id: llex.h,v 1.79.1.1 2017/04/19 17:20:42 roberto Exp $
+** $Id: llex.h $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -37,7 +37,7 @@ enum RESERVED {
};
/* number of reserved words */
-#define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1))
+#define NUM_RESERVED (cast_int(TK_WHILE-FIRST_RESERVED + 1))
typedef union {