Software /
code /
prosody
Changeset
5411:82b3ddba0ec7
modulemanager: add missing ipairs import.
author | Marco Cirillo <maranda@lightwitch.org> |
---|---|
date | Mon, 01 Apr 2013 23:41:57 +0000 |
parents | 5410:bea93cfd6c54 |
children | 5412:a5fcda77c6b1 |
files | core/modulemanager.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/modulemanager.lua Mon Apr 01 22:34:44 2013 +0000 +++ b/core/modulemanager.lua Mon Apr 01 23:41:57 2013 +0000 @@ -19,7 +19,7 @@ local pcall, xpcall = pcall, xpcall; local setmetatable, rawget = setmetatable, rawget; -local pairs, type, tostring, t_insert = pairs, type, tostring, table.insert; +local ipairs, pairs, type, tostring, t_insert = ipairs, pairs, type, tostring, table.insert; local debug_traceback = debug.traceback; local unpack, select = unpack, select;