aboutsummaryrefslogtreecommitdiff
path: root/src/ldblib.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ldblib.js')
-rw-r--r--src/ldblib.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ldblib.js b/src/ldblib.js
index df7d2ff..a189976 100644
--- a/src/ldblib.js
+++ b/src/ldblib.js
@@ -415,7 +415,7 @@ if (typeof process !== "undefined") { // Only with Node
let buffer = lua.to_luastring(input);
if (lauxlib.luaL_loadbuffer(L, buffer, buffer.length, lua.to_luastring("=(debug command)", true))
|| lua.lua_pcall(L, 0, 0, 0)) {
- lauxlib.lua_writestringerror(lua.lua_toluastring(L, -1), "\n");
+ lauxlib.lua_writestringerror(lua.lua_tojsstring(L, -1), "\n");
}
lua.lua_settop(L, 0); /* remove eventual returns */
}