summaryrefslogtreecommitdiff
path: root/lib/lua/src
diff options
context:
space:
mode:
authorpixel <pixel>2007-05-31 13:26:52 +0000
committerpixel <pixel>2007-05-31 13:26:52 +0000
commitc412f0c52908f2c9f56d80ed17f165a73cf1d2a6 (patch)
tree516f5235b65a675808b1f9a918e5c500eb9ec5dd /lib/lua/src
parenta0473d37f726f7bedbdeea511a6cc53744cb1ef6 (diff)
Implementing print inside of the Lua object, and using LuaPrinter object in order to redirect prints on a per-VM basis.
Diffstat (limited to 'lib/lua/src')
-rw-r--r--lib/lua/src/LuaLib/lbaselib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lua/src/LuaLib/lbaselib.c b/lib/lua/src/LuaLib/lbaselib.c
index ea70d2e..f9c76f1 100644
--- a/lib/lua/src/LuaLib/lbaselib.c
+++ b/lib/lua/src/LuaLib/lbaselib.c
@@ -1,5 +1,5 @@
/*
-** $Id: lbaselib.c,v 1.5 2004-12-27 19:52:23 pixel Exp $
+** $Id: lbaselib.c,v 1.6 2007-05-31 13:26:52 pixel Exp $
** Basic library
** See Copyright Notice in lua.h
*/
@@ -514,7 +514,7 @@ static const luaL_reg base_funcs[] = {
{"next", luaB_next},
{"ipairs", luaB_ipairs},
{"pairs", luaB_pairs},
- {"print", luaB_print},
+// {"print", luaB_print},
{"tonumber", luaB_tonumber},
{"tostring", luaB_tostring},
{"type", luaB_type},