From 0be57b9b6d1a4ea8d41c9c9b9b434b4749ccbb27 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 7 May 2020 14:52:19 -0300 Subject: Details in comments --- lauxlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lauxlib.c') 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) { lua_remove(L, -2); /* remove original name */ } lua_copy(L, -1, top + 1); /* copy name to proper place */ - lua_settop(L, top + 1); /* remove table "loaded" an name copy */ + lua_settop(L, top + 1); /* remove table "loaded" and name copy */ return 1; } else { -- cgit v1.2.3-55-g6feb