From 7895336f4c2aa80abc807493891f11174fd1690c Mon Sep 17 00:00:00 2001 From: daurnimator Date: Wed, 3 May 2017 17:21:10 +1000 Subject: src/lapi.js: Remove now unused lua_compare_ function --- src/lapi.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/lapi.js b/src/lapi.js index 7123628..862917d 100644 --- a/src/lapi.js +++ b/src/lapi.js @@ -706,10 +706,6 @@ const lua_compare = function(L, index1, index2, op) { let o1 = index2addr(L, index1); let o2 = index2addr(L, index2); - return lua_compare_(L, o1, o2, op); -}; - -const lua_compare_ = function(L, o1, o2, op) { let i = 0; if (isvalid(o1) && isvalid(o2)) { @@ -1023,7 +1019,6 @@ module.exports.lua_call = lua_call; module.exports.lua_callk = lua_callk; module.exports.lua_checkstack = lua_checkstack; module.exports.lua_compare = lua_compare; -module.exports.lua_compare_ = lua_compare_; module.exports.lua_concat = lua_concat; module.exports.lua_copy = lua_copy; module.exports.lua_createtable = lua_createtable; -- cgit v1.2.3-54-g00ecf