diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-29 15:45:07 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-29 15:51:03 +1000 |
commit | 00a0649ca3c378bb7e4910571207617f7852c420 (patch) | |
tree | c04497d6183b248992882f56aa5135559b21a089 /src/lapi.js | |
parent | a5e267bf7df32e3ff6add67b7985c587fe8e3fb1 (diff) | |
download | fengari-00a0649ca3c378bb7e4910571207617f7852c420.tar.gz fengari-00a0649ca3c378bb7e4910571207617f7852c420.tar.bz2 fengari-00a0649ca3c378bb7e4910571207617f7852c420.zip |
Fix some jshint warnings
Diffstat (limited to 'src/lapi.js')
-rw-r--r-- | src/lapi.js | 2 |
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); |