Software /
code /
prosody
Diff
util/multitable.lua @ 1104:e9c1650054c4
util.multitable: No globals today, thank you. Fixes missing table entries and a potential traceback
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 04 May 2009 19:06:31 +0100 |
parent | 896:2c0b9e3c11c3 |
child | 1523:841d61be198f |
line wrap: on
line diff
--- a/util/multitable.lua Sun May 03 17:24:35 2009 +0100 +++ b/util/multitable.lua Mon May 04 19:06:31 2009 +0100 @@ -56,7 +56,7 @@ return; end if k then - v = t[k]; + local v = t[k]; if v then r(v, n+1, _end, ...); if not next(v) then @@ -96,7 +96,7 @@ return; end if k then - v = t[k]; + local v = t[k]; if v then s(v, n+1, results, _end, ...); end