util.serialization: Use '=' prefix for chunk source description

Like in bd5e4485a245
This commit is contained in:
Kim Alvefur 2018-10-11 23:00:45 +02:00
parent 09c19925cc
commit 8d941e5d0f

View file

@ -262,7 +262,7 @@ end
local function deserialize(str)
if type(str) ~= "string" then return nil; end
str = "return "..str;
local f, err = envload(str, "@data", {});
local f, err = envload(str, "=serialized data", {});
if not f then return nil, err; end
local success, ret = pcall(f);
if not success then return nil, ret; end