aboutsummaryrefslogtreecommitdiff
path: root/src/tools.c
diff options
context:
space:
mode:
authorBenoit Germain <bnt.germain@gmail.com>2022-03-09 14:11:21 +0100
committerBenoit Germain <bnt.germain@gmail.com>2022-03-09 14:11:21 +0100
commit49ef9d50d475921aab0c50b13b857f8cb990fcc0 (patch)
tree0b5e4deefd63481e99557dd326352a4bb8cb5dc0 /src/tools.c
parentfe44f7e83fc0b3264533caaa3085938d78c3750b (diff)
downloadlanes-49ef9d50d475921aab0c50b13b857f8cb990fcc0.tar.gz
lanes-49ef9d50d475921aab0c50b13b857f8cb990fcc0.tar.bz2
lanes-49ef9d50d475921aab0c50b13b857f8cb990fcc0.zip
moonjit support
Diffstat (limited to 'src/tools.c')
-rw-r--r--src/tools.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools.c b/src/tools.c
index 2c8a9f0..626da2b 100644
--- a/src/tools.c
+++ b/src/tools.c
@@ -1117,7 +1117,7 @@ static void lookup_native_func( lua_State* L2, lua_State* L, uint_t i, LookupMod
1117 * L2 has the cache key for this function at the top of the stack 1117 * L2 has the cache key for this function at the top of the stack
1118*/ 1118*/
1119 1119
1120#if USE_DEBUG_SPEW 1120#if USE_DEBUG_SPEW()
1121static char const* lua_type_names[] = 1121static char const* lua_type_names[] =
1122{ 1122{
1123 "LUA_TNIL" 1123 "LUA_TNIL"
@@ -1138,7 +1138,7 @@ static char const* vt_names[] =
1138 , "VT_KEY" 1138 , "VT_KEY"
1139 , "VT_METATABLE" 1139 , "VT_METATABLE"
1140}; 1140};
1141#endif // USE_DEBUG_SPEW 1141#endif // USE_DEBUG_SPEW()
1142 1142
1143// Lua 5.4.3 style of dumping (see lstrlib.c) 1143// Lua 5.4.3 style of dumping (see lstrlib.c)
1144// we have to do it that way because we can't unbalance the stack between buffer operations 1144// we have to do it that way because we can't unbalance the stack between buffer operations