summaryrefslogtreecommitdiff
path: root/scripts/context/lua/mtxlibs.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2018-03-06 15:57:09 +0100
committerContext Git Mirror Bot <phg42.2a@gmail.com>2018-03-06 15:57:09 +0100
commit4ec0856ccdbd5bf6e110467d4623b52566b0e37d (patch)
tree8a7a1c9897870ae2cadcb8a1bee9697819222803 /scripts/context/lua/mtxlibs.lua
parent2d50de713c23ec150dab395dcbce69b854db2d58 (diff)
downloadcontext-4ec0856ccdbd5bf6e110467d4623b52566b0e37d.tar.gz
2018-03-06 15:07:00
Diffstat (limited to 'scripts/context/lua/mtxlibs.lua')
-rw-r--r--scripts/context/lua/mtxlibs.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/context/lua/mtxlibs.lua b/scripts/context/lua/mtxlibs.lua
index c4e925fd7..bb0e03b17 100644
--- a/scripts/context/lua/mtxlibs.lua
+++ b/scripts/context/lua/mtxlibs.lua
@@ -49,10 +49,10 @@ if not modules then modules = { } end modules ['mtxlibs'] = {
-- the for context handy option to expose them in the normal ones. I might make the dependencies
-- less but it probably makes no sense to waste time on them.
-xpcall(function() local _, t = require("lpeg") return end,function() end) if t then lpeg = t end
-xpcall(function() local _, t = require("md5") return end,function() end) if t then md5 = t end
-xpcall(function() local _, t = require("lfs") return end,function() end) if t then lfs = t end
-xpcall(function() local _, t = require("slunicode") return end,function() end) if t then unicode = t end
+xpcall(function() local _, t = require("lpeg") if t then lpeg = t end return end,function() end)
+xpcall(function() local _, t = require("md5") if t then md5 = t end return end,function() end)
+xpcall(function() local _, t = require("lfs") if t then lfs = t end return end,function() end)
+xpcall(function() local _, t = require("slunicode") if t then unicode = t end return end,function() end)
-- begin library merge