diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-29 14:37:14 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-29 14:37:14 +1000 |
commit | ce0ef55aff5669abb53fdd1d61e7cf8389c2089b (patch) | |
tree | e1ae4e30aa723417f6ca7e602bd2722ec373d3af | |
parent | f87a838f498c2ec6536ba813d7ae83bd1e78a506 (diff) | |
download | fengari-ce0ef55aff5669abb53fdd1d61e7cf8389c2089b.tar.gz fengari-ce0ef55aff5669abb53fdd1d61e7cf8389c2089b.tar.bz2 fengari-ce0ef55aff5669abb53fdd1d61e7cf8389c2089b.zip |
src/lvm.js: Fix indentation in luaV_concat
-rw-r--r-- | src/lvm.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1113,8 +1113,8 @@ const luaV_concat = function(L, total) { toconcat[total-1] = L.stack[top-1].svalue(); for (n = 1; n < total; n++) { if (!tostring(L, top - n - 1)) { - toconcat = toconcat.slice(total-n); - break; + toconcat = toconcat.slice(total-n); + break; } toconcat[total-n-1] = L.stack[top - n - 1].svalue(); } |