Software /
code /
prosody
Comparison
core/modulemanager.lua @ 1105:965a55db3732
modulemanager: No need for print()
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 04 May 2009 19:08:55 +0100 |
parent | 1094:a619525fed5d |
child | 1167:5620ea24be94 |
comparison
equal
deleted
inserted
replaced
1104:e9c1650054c4 | 1105:965a55db3732 |
---|---|
26 local t_insert, t_concat = table.insert, table.concat; | 26 local t_insert, t_concat = table.insert, table.concat; |
27 local type = type; | 27 local type = type; |
28 local next = next; | 28 local next = next; |
29 local rawget = rawget; | 29 local rawget = rawget; |
30 | 30 |
31 local tostring, print = tostring, print; | 31 local tostring = tostring; |
32 | 32 |
33 -- We need this to let modules access the real global namespace | 33 -- We need this to let modules access the real global namespace |
34 local _G = _G; | 34 local _G = _G; |
35 | 35 |
36 module "modulemanager" | 36 module "modulemanager" |