aboutsummaryrefslogtreecommitdiff
path: root/src/loadlib.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-05-12 12:57:17 +1000
committerdaurnimator <quae@daurnimator.com>2017-05-12 12:57:17 +1000
commit60d914eec7c350caa31efb511214f3dc6b497c26 (patch)
tree656b624cfda7fdb9127b2b9e6c199534f4437867 /src/loadlib.js
parent539c571f0538e6184f038a7a2c733b0c6542b164 (diff)
downloadfengari-60d914eec7c350caa31efb511214f3dc6b497c26.tar.gz
fengari-60d914eec7c350caa31efb511214f3dc6b497c26.tar.bz2
fengari-60d914eec7c350caa31efb511214f3dc6b497c26.zip
src/loadlib: Use correct string forms
Diffstat (limited to 'src/loadlib.js')
-rw-r--r--src/loadlib.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/loadlib.js b/src/loadlib.js
index c2e867a..df675dd 100644
--- a/src/loadlib.js
+++ b/src/loadlib.js
@@ -19,18 +19,15 @@ const LUA_CSUBSEP = lua.LUA_DIRSEP;
const LUA_LSUBSEP = lua.LUA_DIRSEP;
/* prefix for open functions in C libraries */
-const LUA_POF = "luaopen_";
+const LUA_POF = lua.to_luastring("luaopen_");
/* separator for open functions in C libraries */
-const LUA_OFSEP = "_";
-// const LIB_FAIL = "open";
+const LUA_OFSEP = lua.to_luastring("_");
+const LIB_FAIL = "open";
const AUXMARK = [1];
-const LIB_FAIL = "absent";
-const DLMSG = "dynamic libraries not enabled; check your Lua installation";
-
/*
** load JS library in file 'path'. If 'seeglb', load with all names in
** the library global.
@@ -47,7 +44,8 @@ const lsys_load = function(L, path) {
return require(path);
} catch (e) {
- lua.lua_pushjsstring(L, e.message);
+ lua.lua_pushstring(L, lua.to_luastring(e.message));
+ return null;
}
};
@@ -61,8 +59,10 @@ const lsys_sym = function(L, lib, sym) {
if (f && typeof f === 'function')
return f;
-
- lua.lua_pushliteral(L, `'${lua.to_jsstring(sym)}'`);
+ else {
+ lua.lua_pushfstring(L, lua.to_luastring("undefined symbol: %s"), sym);
+ return null;
+ }
};
/*
@@ -143,7 +143,7 @@ const ll_loadlib = function(L) {
else { /* error; error message is on stack top */
lua.lua_pushnil(L);
lua.lua_insert(L, -2);
- lua.lua_pushjsstring(L, (stat === ERRLIB) ? LIB_FAIL : "init");
+ lua.lua_pushliteral(L, (stat === ERRLIB) ? LIB_FAIL : "init");
return 3; /* return nil, error message, and where */
}
};
@@ -278,12 +278,12 @@ const loadfunc = function(L, filename, modname) {
let mark = modname.indexOf(LUA_IGMARK[0]);
if (mark >= 0) {
openfunc = lua.lua_pushlstring(L, modname, mark);
- openfunc = lua.lua_pushstring(L, lua.to_luastring(`${LUA_POF}${openfunc}`));
+ openfunc = lua.lua_pushfstring(L, lua.to_luastring("%s%s"), LUA_POF, openfunc);
let stat = lookforfunc(L, filename, openfunc);
if (stat !== ERRFUNC) return stat;
modname = mark + 1; /* else go ahead and try old-style name */
}
- openfunc = lua.lua_pushstring(L, lua.to_luastring(`${LUA_POF}${modname}`));
+ openfunc = lua.lua_pushfstring(L, lua.to_luastring("%s%s"), LUA_POF, modname);
return lookforfunc(L, filename, openfunc);
};