util.startup: Tweak function string representation

Mostly in order to avoid triggering the XML syntax highlighting in the
console logger.
This commit is contained in:
Kim Alvefur 2023-03-26 00:11:42 +01:00
parent 60ae919973
commit 026b2d6e88

View file

@ -233,7 +233,7 @@ function startup.set_function_metatable()
if info.isvararg then if info.isvararg then
info[n_params+1] = "..."; info[n_params+1] = "...";
end end
return ("function<%s:%d>(%s)"):format(info.short_src:match("[^\\/]*$"), info.linedefined, table.concat(info, ", ")); return ("function @%s:%d(%s)"):format(info.short_src:match("[^\\/]*$"), info.linedefined, table.concat(info, ", "));
end end
debug.setmetatable(function() end, mt); debug.setmetatable(function() end, mt);
end end