From 382e28086f97085edbf099247949c3f801cc0ed0 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Wed, 26 Apr 2017 17:17:04 +1000 Subject: Remove print_version --- src/defs.js | 5 ----- src/lua.js | 1 - 2 files changed, 6 deletions(-) (limited to 'src') diff --git a/src/defs.js b/src/defs.js index e1366b0..e24f419 100644 --- a/src/defs.js +++ b/src/defs.js @@ -115,10 +115,6 @@ const LUA_RIDX_MAINTHREAD = 1; const LUA_RIDX_GLOBALS = 2; const LUA_RIDX_LAST = LUA_RIDX_GLOBALS; -const print_version = function() { - console.log(FENGARI_COPYRIGHT); -}; - class lua_Debug { constructor() { @@ -283,6 +279,5 @@ module.exports.LUA_VERSUFFIX = LUA_VERSUFFIX; module.exports.constant_types = constant_types; module.exports.lua_Debug = lua_Debug; module.exports.lua_upvalueindex = lua_upvalueindex; -module.exports.print_version = print_version; module.exports.thread_status = thread_status; module.exports.to_luastring = to_luastring; diff --git a/src/lua.js b/src/lua.js index 37ecadd..fa25807 100644 --- a/src/lua.js +++ b/src/lua.js @@ -69,6 +69,5 @@ module.exports.LUA_VERSION_RELEASE = defs.LUA_VERSION_RELEASE; module.exports.LUA_VERSUFFIX = defs.LUA_VERSUFFIX; module.exports.lua_Debug = defs.lua_Debug; module.exports.lua_upvalueindex = defs.lua_upvalueindex; -module.exports.print_version = defs.print_version; module.exports.thread_status = defs.thread_status; module.exports.to_luastring = defs.to_luastring; -- cgit v1.2.3-54-g00ecf