aboutsummaryrefslogtreecommitdiff
path: root/src/lapi.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/lapi.js')
-rw-r--r--src/lapi.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lapi.js b/src/lapi.js
index f326198..d992b0b 100644
--- a/src/lapi.js
+++ b/src/lapi.js
@@ -255,7 +255,7 @@ const lua_pushstring = function (L, s) {
assert(Array.isArray(s) || s === undefined || s === null, "lua_pushstring expects array of byte");
if (s === undefined || s === null) {
- L.stack[L.top] = new TValue(CT.LUA_TNIL, null)
+ L.stack[L.top] = new TValue(CT.LUA_TNIL, null);
L.top++;
} else {
let ts = lstring.luaS_new(L, s);