aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lauxlib.c')
-rw-r--r--lauxlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lauxlib.c b/lauxlib.c
index 72359094..a5e9e4b5 100644
--- a/lauxlib.c
+++ b/lauxlib.c
@@ -87,7 +87,7 @@ static int pushglobalfuncname (lua_State *L, lua_Debug *ar) {
87 lua_remove(L, -2); /* remove original name */ 87 lua_remove(L, -2); /* remove original name */
88 } 88 }
89 lua_copy(L, -1, top + 1); /* copy name to proper place */ 89 lua_copy(L, -1, top + 1); /* copy name to proper place */
90 lua_settop(L, top + 1); /* remove table "loaded" an name copy */ 90 lua_settop(L, top + 1); /* remove table "loaded" and name copy */
91 return 1; 91 return 1;
92 } 92 }
93 else { 93 else {