mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
60ae919973
commit
026b2d6e88
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ function startup.set_function_metatable()
|
|||
if info.isvararg then
|
||||
info[n_params+1] = "...";
|
||||
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
|
||||
debug.setmetatable(function() end, mt);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue