Mercurial > prosody-hg
view util/xpcall.lua @ 12229:30ea791ce817
mod_admin_shell: Add descriptions of each column to 'help columns'
Since some of the titles are quite dense
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sun, 30 Jan 2022 12:49:43 +0100 |
| parents | cfc7b2f7251e |
| children | d10957394a3c |
line wrap: on
line source
local xpcall = xpcall; if select(2, xpcall(function (x) return x end, function () end, "test")) ~= "test" then xpcall = require"util.compat".xpcall; end return { xpcall = xpcall; };
