diff options
author | daurnimator <quae@daurnimator.com> | 2018-01-22 12:17:31 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2018-01-22 12:19:11 +1100 |
commit | af94552b0813259f12b8460cbc464301165296ea (patch) | |
tree | deb9e5fd02dfa79a0a38fd765b2b91b763175dd2 | |
parent | b174abb643f03513cb91efb3c05403a08b83a3fe (diff) | |
download | fengari-af94552b0813259f12b8460cbc464301165296ea.tar.gz fengari-af94552b0813259f12b8460cbc464301165296ea.tar.bz2 fengari-af94552b0813259f12b8460cbc464301165296ea.zip |
src/ldo.js: Fix typo (LUAT_NIL => LUA_TNIL)
-rw-r--r-- | src/ldo.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -231,7 +231,7 @@ const moveresults = function(L, firstResult, res, nres, wanted) { lobject.setobjs2s(L, res + i, firstResult + i); for (; i < wanted; i++) { if (res+i >= L.top) - L.stack[res + i] = new lobject.TValue(CT.LUAT_NIL, null); + L.stack[res + i] = new lobject.TValue(CT.LUA_TNIL, null); else L.stack[res + i].setnilvalue(); } |