diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2020-05-07 14:52:19 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2020-05-07 14:52:19 -0300 |
commit | 0be57b9b6d1a4ea8d41c9c9b9b434b4749ccbb27 (patch) | |
tree | ae72fdc58b14151847c9afba5cb8bbfe725d449f /lauxlib.c | |
parent | 61a4e64a6667bedaa882571c48a173ef5a4ba73b (diff) | |
download | lua-0be57b9b6d1a4ea8d41c9c9b9b434b4749ccbb27.tar.gz lua-0be57b9b6d1a4ea8d41c9c9b9b434b4749ccbb27.tar.bz2 lua-0be57b9b6d1a4ea8d41c9c9b9b434b4749ccbb27.zip |
Details in comments
Diffstat (limited to 'lauxlib.c')
-rw-r--r-- | lauxlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |