Diff

util/multitable.lua @ 568:b2464849c1b0

Small fix for multitable
author Matthew Wild <mwild1@gmail.com>
date Sat, 06 Dec 2008 03:40:51 +0000
parent 554:9a695724681d
child 615:4ae3e81513f3
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, ...)