summaryrefslogtreecommitdiffstats
path: root/lib/tolua++/src/bin/lua/all.lua
diff options
context:
space:
mode:
authorJulian Laubstein <julianlaubstein@yahoo.de>2015-11-05 10:56:20 +0100
committerJulian Laubstein <julianlaubstein@yahoo.de>2015-11-05 10:56:20 +0100
commit51e5e6e9a8ed689c044256859f16f1b1f57585b7 (patch)
tree3a0d2409a61622edcc3ec5953a28fb3c13cc8705 /lib/tolua++/src/bin/lua/all.lua
parentMerge pull request #2601 from Gargaj/patch-1 (diff)
parentOutsourced all libraries into submodules (diff)
downloadcuberite-51e5e6e9a8ed689c044256859f16f1b1f57585b7.tar
cuberite-51e5e6e9a8ed689c044256859f16f1b1f57585b7.tar.gz
cuberite-51e5e6e9a8ed689c044256859f16f1b1f57585b7.tar.bz2
cuberite-51e5e6e9a8ed689c044256859f16f1b1f57585b7.tar.lz
cuberite-51e5e6e9a8ed689c044256859f16f1b1f57585b7.tar.xz
cuberite-51e5e6e9a8ed689c044256859f16f1b1f57585b7.tar.zst
cuberite-51e5e6e9a8ed689c044256859f16f1b1f57585b7.zip
Diffstat (limited to 'lib/tolua++/src/bin/lua/all.lua')
m---------lib/tolua++0
-rw-r--r--lib/tolua++/src/bin/lua/all.lua30
2 files changed, 0 insertions, 30 deletions
diff --git a/lib/tolua++ b/lib/tolua++
new file mode 160000
+Subproject 9181fc9ef73fa1c052f968d68dc60538f144a47
diff --git a/lib/tolua++/src/bin/lua/all.lua b/lib/tolua++/src/bin/lua/all.lua
deleted file mode 100644
index 83f8a3cb9..000000000
--- a/lib/tolua++/src/bin/lua/all.lua
+++ /dev/null
@@ -1,30 +0,0 @@
-dofile(path.."compat-5.1.lua")
-dofile(path.."compat.lua")
-dofile(path.."basic.lua")
-dofile(path.."feature.lua")
-dofile(path.."verbatim.lua")
-dofile(path.."code.lua")
-dofile(path.."typedef.lua")
-dofile(path.."container.lua")
-dofile(path.."package.lua")
-dofile(path.."module.lua")
-dofile(path.."namespace.lua")
-dofile(path.."define.lua")
-dofile(path.."enumerate.lua")
-dofile(path.."declaration.lua")
-dofile(path.."variable.lua")
-dofile(path.."array.lua")
-dofile(path.."function.lua")
-dofile(path.."operator.lua")
-dofile(path.."template_class.lua")
-dofile(path.."class.lua")
-dofile(path.."clean.lua")
---dofile(path.."custom.lua")
-dofile(path.."doit.lua")
-
-local err,msg = xpcall(doit, debug.traceback)
-if not err then
---print("**** msg is "..tostring(msg))
- local _,_,label,msg = strfind(msg,"(.-:.-:%s*)(.*)")
- tolua_error(msg,label)
-end