瀏覽代碼

'debug.joinupvalue' -> 'debug.upvaluejoin'

Roberto Ierusalimschy 15 年之前
父節點
當前提交
ac899a6307
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      ldblib.c

+ 3 - 3
ldblib.c

@@ -1,5 +1,5 @@
 /*
-** $Id: ldblib.c,v 1.114 2009/11/05 17:26:00 roberto Exp roberto $
+** $Id: ldblib.c,v 1.115 2009/11/09 19:10:48 roberto Exp roberto $
 ** Interface from Lua to its debug API
 ** See Copyright Notice in lua.h
 */
@@ -217,7 +217,7 @@ static int db_upvalueid (lua_State *L) {
 }
 
 
-static int db_joinupvalue (lua_State *L) {
+static int db_upvaluejoin (lua_State *L) {
   int n1 = checkupval(L, 1, 2);
   int n2 = checkupval(L, 3, 4);
   luaL_argcheck(L, !lua_iscfunction(L, 1), 1, "Lua function expected");
@@ -365,7 +365,7 @@ static const luaL_Reg dblib[] = {
   {"getregistry", db_getregistry},
   {"getmetatable", db_getmetatable},
   {"getupvalue", db_getupvalue},
-  {"joinupvalue", db_joinupvalue},
+  {"upvaluejoin", db_upvaluejoin},
   {"upvalueid", db_upvalueid},
   {"setfenv", db_setfenv},
   {"sethook", db_sethook},