aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-05-21 21:56:32 +1000
committerdaurnimator <quae@daurnimator.com>2017-05-21 22:02:13 +1000
commit4a6c30d490f903abf077152ce2f88b85b8ee25e6 (patch)
treeff3fc15e7d763cb7d7b69d406cada981d6f3ebd7
parent858fc960e1f70d22c315f0d598e500f87ddcaf8c (diff)
downloadfengari-4a6c30d490f903abf077152ce2f88b85b8ee25e6.tar.gz
fengari-4a6c30d490f903abf077152ce2f88b85b8ee25e6.tar.bz2
fengari-4a6c30d490f903abf077152ce2f88b85b8ee25e6.zip
src/lobject.js: missing semicolon
-rw-r--r--src/lobject.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lobject.js b/src/lobject.js
index 4e0fa6f..3e5e536 100644
--- a/src/lobject.js
+++ b/src/lobject.js
@@ -468,7 +468,7 @@ const luaO_pushvfstring = function(L, fmt, argp) {
switch(fmt[e+1]) {
case char['s']:
let s = argp[a++];
- if (s === null) s = defs.to_luastring("(null)", true)
+ if (s === null) s = defs.to_luastring("(null)", true);
pushstr(L, s);
break;
case char['c']: