Software / code / prosody
Diff
core/modulemanager.lua @ 5411:82b3ddba0ec7
modulemanager: add missing ipairs import.
| author | Marco Cirillo <maranda@lightwitch.org> |
|---|---|
| date | Mon, 01 Apr 2013 23:41:57 +0000 |
| parent | 5410:bea93cfd6c54 |
| child | 5776:bd0ff8ae98a8 |
| child | 6034:ee14da71d3fc |
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;