diff util/cache.lua @ 11200:bf8f2da84007

Merge 0.11->trunk
author Kim Alvefur <zash@zash.se>
date Thu, 05 Nov 2020 22:31:25 +0100
parents c4c06fbb7d87
children 8ec7b7d6556f
line wrap: on
line diff
--- a/util/cache.lua	Thu Nov 05 22:27:17 2020 +0100
+++ b/util/cache.lua	Thu Nov 05 22:31:25 2020 +0100
@@ -28,7 +28,7 @@
 end
 
 local cache_methods = {};
-local cache_mt = { __index = cache_methods };
+local cache_mt = { __name = "cache", __index = cache_methods };
 
 function cache_methods:set(k, v)
 	local m = self._data[k];