Changeset

568:b2464849c1b0

Small fix for multitable
author Matthew Wild <mwild1@gmail.com>
date Sat, 06 Dec 2008 03:40:51 +0000
parents 567:ae7f6167d780
children 569:5216efe6088b
files util/multitable.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/util/multitable.lua	Fri Dec 05 19:55:46 2008 +0000
+++ b/util/multitable.lua	Sat Dec 06 03:40:51 2008 +0000
@@ -44,7 +44,7 @@
 		if not tab then tab = {}; t[key] = tab; end
 		t = tab;
 	end
-	t_insert(t, select(count, ...));
+	t_insert(t, (select(count, ...)));
 end
 
 local function r(t, n, _end, ...)