Software /
code /
prosody
File
util/xpcall.lua @ 11241:7a4dbc4bb74d
doap: Link to logo
Link Mauve added logo to the xmpp doap namespace, waiting for
https://github.com/ewilderj/doap/pull/68 to be merged
Also,
Happy New Year!
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 01 Jan 2021 02:58:13 +0100 |
parent | 9561:cfc7b2f7251e |
child | 12975: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; };