diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-29 12:34:13 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-29 13:43:09 +1000 |
commit | 587b5c78d193426410c45c6f055272acf4a8bc7c (patch) | |
tree | b47017a457b59107893f35001473877512905db6 /src | |
parent | 89470d9fcb62851d626e55aff084bfdb48cfae52 (diff) | |
download | fengari-587b5c78d193426410c45c6f055272acf4a8bc7c.tar.gz fengari-587b5c78d193426410c45c6f055272acf4a8bc7c.tar.bz2 fengari-587b5c78d193426410c45c6f055272acf4a8bc7c.zip |
src/lvm.js: Fix indentation
Diffstat (limited to 'src')
-rw-r--r-- | src/lvm.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -710,11 +710,11 @@ const luaV_execute = function(L) { ldo.luaD_checkstack(L, n); if (L.top >= ra+n) { while (L.top > ra+n) - delete L.stack[--L.top]; + delete L.stack[--L.top]; } else { while (L.top < ra+n) { - L.stack[L.top] = new lobject.TValue(); - L.top++; + L.stack[L.top] = new lobject.TValue(); + L.top++; } } assert(L.top == ra + n); |