aboutsummaryrefslogtreecommitdiff
path: root/src/lvm.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-05-29 12:34:13 +1000
committerdaurnimator <quae@daurnimator.com>2017-05-29 13:43:09 +1000
commit587b5c78d193426410c45c6f055272acf4a8bc7c (patch)
treeb47017a457b59107893f35001473877512905db6 /src/lvm.js
parent89470d9fcb62851d626e55aff084bfdb48cfae52 (diff)
downloadfengari-587b5c78d193426410c45c6f055272acf4a8bc7c.tar.gz
fengari-587b5c78d193426410c45c6f055272acf4a8bc7c.tar.bz2
fengari-587b5c78d193426410c45c6f055272acf4a8bc7c.zip
src/lvm.js: Fix indentation
Diffstat (limited to 'src/lvm.js')
-rw-r--r--src/lvm.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lvm.js b/src/lvm.js
index 9bbe768..af8984f 100644
--- a/src/lvm.js
+++ b/src/lvm.js
@@ -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);