Diff

util/multitable.lua @ 7188:e8f20be3e6f8

Merge 0.10->trunk
author Kim Alvefur <zash@zash.se>
date Mon, 22 Feb 2016 18:46:59 +0100
parent 7185:5687788a2e4d
child 8382:e5d00bf4a4d5
line wrap: on
line diff
--- a/util/multitable.lua	Mon Feb 22 15:24:20 2016 +0100
+++ b/util/multitable.lua	Mon Feb 22 18:46:59 2016 +0100
@@ -8,7 +8,8 @@
 
 local select = select;
 local t_insert = table.insert;
-local unpack, pairs, next, type = unpack, pairs, next, type;
+local pairs, next, type = pairs, next, type;
+local unpack = table.unpack or unpack; --luacheck: ignore 113
 
 local _ENV = nil;