# HG changeset patch # User Matthew Wild # Date 1228534851 0 # Node ID b2464849c1b001218769c6aa4e7e64dc8ddba795 # Parent ae7f6167d780ff55a174279e66cc5c5aabffed73 Small fix for multitable diff -r ae7f6167d780 -r b2464849c1b0 util/multitable.lua --- 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, ...)