summaryrefslogtreecommitdiff
path: root/src/BLua.cc
diff options
context:
space:
mode:
authorNicolas Noble <pixel@nobis-crew.org>2013-08-09 15:00:19 -0700
committerNicolas Noble <pixel@nobis-crew.org>2013-08-09 15:00:19 -0700
commit316907b08ac47efc37845ec5d66f098fcae70a1a (patch)
tree495b6c440478d23108975245a6bdaca4b680f876 /src/BLua.cc
parent1cd6b98042d14a4eeeecb8649a8674324cb2b65d (diff)
Removing rsa.lua. This is just too buggy.
Diffstat (limited to 'src/BLua.cc')
-rw-r--r--src/BLua.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/BLua.cc b/src/BLua.cc
index 13b09cd..eee663b 100644
--- a/src/BLua.cc
+++ b/src/BLua.cc
@@ -450,13 +450,11 @@ void Balau::Lua::open_bit() {
extern "C" {
int luaopen_lcrypt(lua_State *L);
-extern const char * lcrypt_rsa;
}
void Balau::Lua::open_lcrypt() {
int n = gettop();
luaopen_lcrypt(L);
- load(lcrypt_rsa);
while (n < gettop()) pop();
}