aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Janda <siffiejoe@gmx.net>2015-04-26 19:13:23 +0200
committerPhilipp Janda <siffiejoe@gmx.net>2015-04-26 19:13:23 +0200
commit7a15ca6f5f158a97f17602d1cf48aa697b32edb9 (patch)
treefe5bcd16ca2c104a0e9e0d3df1e159c54318fd2c
parent46b3056a0996d1bbdf4c1d4baa9f841e2d22299f (diff)
downloadlua-compat-5.3-7a15ca6f5f158a97f17602d1cf48aa697b32edb9.tar.gz
lua-compat-5.3-7a15ca6f5f158a97f17602d1cf48aa697b32edb9.tar.bz2
lua-compat-5.3-7a15ca6f5f158a97f17602d1cf48aa697b32edb9.zip
Fix typo.
-rw-r--r--compat53/module.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat53/module.lua b/compat53/module.lua
index c69c131..0dd0317 100644
--- a/compat53/module.lua
+++ b/compat53/module.lua
@@ -530,7 +530,7 @@ if lua_version < "5.3" then
530 530
531 531
532 if not is_luajit then 532 if not is_luajit then
533 function M.xpall(f, msgh, ...) 533 function M.xpcall(f, msgh, ...)
534 local args, n = { ... }, select('#', ...) 534 local args, n = { ... }, select('#', ...)
535 return xpcall(function() return f(unpack(args, 1, n)) end, msgh) 535 return xpcall(function() return f(unpack(args, 1, n)) end, msgh)
536 end 536 end