util/multitable.lua

changeset 1104
e9c1650054c4
parent 894
2c0b9e3c11c3
child 1523
841d61be198f
--- 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

mercurial