From 0f8ba47525595a9432b4060204d943cfb26bdc61 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sat, 4 Oct 2008 02:43:23 +0100 Subject: New "import" module to help tidy up all the local declarations at the top of modules --- core/sessionmanager.lua | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'core/sessionmanager.lua') diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua index f2542ed2..b257e532 100644 --- a/core/sessionmanager.lua +++ b/core/sessionmanager.lua @@ -1,11 +1,9 @@ local tonumber, tostring = tonumber, tostring; -local ipairs = ipairs; +local ipairs, print= ipairs, print; -local m_random = math.random; -local format = string.format; - -local print = print; +local m_random = import("math", "random"); +local format = import("string", "format"); local hosts = hosts; @@ -79,7 +77,7 @@ function streamopened(session, attr) end send(""); - log("info", "core", "Stream opened successfully"); + log("info", "Stream opened successfully"); session.notopen = nil; end -- cgit v1.2.3