# HG changeset patch # User Matthew Wild # Date 1241460391 -3600 # Node ID e9c1650054c440909b24e81612e21304bb4e9fc8 # Parent c81df501fd38c4a7e1b5a051b81ad081b9464e22 util.multitable: No globals today, thank you. Fixes missing table entries and a potential traceback diff -r c81df501fd38 -r e9c1650054c4 util/multitable.lua --- 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