From a51a728d847e790329e41c75928a81630200b63f Mon Sep 17 00:00:00 2001 From: Li Jin Date: Thu, 22 Oct 2020 16:02:39 +0800 Subject: update Lua, fix cmakelists.txt. --- src/lua/llex.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/lua/llex.c') diff --git a/src/lua/llex.c b/src/lua/llex.c index 90a7951..3d6b2b9 100644 --- a/src/lua/llex.c +++ b/src/lua/llex.c @@ -81,7 +81,6 @@ void luaX_init (lua_State *L) { const char *luaX_token2str (LexState *ls, int token) { if (token < FIRST_RESERVED) { /* single-byte symbols? */ - lua_assert(token == cast_uchar(token)); if (lisprint(token)) return luaO_pushfstring(ls->L, "'%c'", token); else /* control character */ -- cgit v1.2.3-55-g6feb