aboutsummaryrefslogtreecommitdiff
path: root/src/tools.c
diff options
context:
space:
mode:
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 36e0051..85672e2 100644
--- a/src/tools.c
+++ b/src/tools.c
@@ -288,7 +288,7 @@ static void populate_func_lookup_table_recur( lua_State *L, int _ctx_base, int _
288 { 288 {
289 if( luaG_getfuncsubtype( L, -1) != FST_Bytecode) 289 if( luaG_getfuncsubtype( L, -1) != FST_Bytecode)
290 { 290 {
291 char const *fqnString; 291 //char const *fqnString; for debugging
292 bool_t not_registered; 292 bool_t not_registered;
293 // first, skip everything if the function is already known 293 // first, skip everything if the function is already known
294 lua_pushvalue( L, -1); // ... {_i} {bfc} k func func 294 lua_pushvalue( L, -1); // ... {_i} {bfc} k func func
@@ -302,7 +302,7 @@ static void populate_func_lookup_table_recur( lua_State *L, int _ctx_base, int _
302 lua_pushvalue( L, -2); // ... {_i} {bfc} k func k 302 lua_pushvalue( L, -2); // ... {_i} {bfc} k func k
303 lua_rawseti( L, fqn, _depth); // ... {_i} {bfc} k func 303 lua_rawseti( L, fqn, _depth); // ... {_i} {bfc} k func
304 // generate name 304 // generate name
305 fqnString = luaG_pushFQN( L, fqn, _depth); // ... {_i} {bfc} k func "f.q.n" 305 /*fqnString =*/ (void) luaG_pushFQN( L, fqn, _depth); // ... {_i} {bfc} k func "f.q.n"
306 //puts( fqnString); 306 //puts( fqnString);
307 // prepare the stack for database feed 307 // prepare the stack for database feed
308 lua_pushvalue( L, -1); // ... {_i} {bfc} k func "f.q.n" "f.q.n" 308 lua_pushvalue( L, -1); // ... {_i} {bfc} k func "f.q.n" "f.q.n"