modulemanager: No need for print()
authorMatthew Wild <mwild1@gmail.com>
Mon, 4 May 2009 18:08:55 +0000 (19:08 +0100)
committerMatthew Wild <mwild1@gmail.com>
Mon, 4 May 2009 18:08:55 +0000 (19:08 +0100)
core/modulemanager.lua

index 2cba50ac0b1b57e08f76222b9c5dadf218b8642e..6dbc8c53b6fe10cf53d4313631ad1905fde1f497 100644 (file)
@@ -28,7 +28,7 @@ local type = type;
 local next = next;
 local rawget = rawget;
 
-local tostring, print = tostring, print;
+local tostring = tostring;
 
 -- We need this to let modules access the real global namespace
 local _G = _G;