diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-05 09:50:40 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-05 10:00:39 +1000 |
commit | 84a0982085967895e9bb5e5439c09960840da2d5 (patch) | |
tree | 8bb3571de9540634c7c119f24cdc9a30a5121490 /src/lauxlib.js | |
parent | 42820bafe8433cbba4158ea7a2e11f40e9d2c635 (diff) | |
download | fengari-84a0982085967895e9bb5e5439c09960840da2d5.tar.gz fengari-84a0982085967895e9bb5e5439c09960840da2d5.tar.bz2 fengari-84a0982085967895e9bb5e5439c09960840da2d5.zip |
src/lauxlib.js: Fix traceback text
Diffstat (limited to 'src/lauxlib.js')
-rw-r--r-- | src/lauxlib.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lauxlib.js b/src/lauxlib.js index d9846c8..389afdf 100644 --- a/src/lauxlib.js +++ b/src/lauxlib.js @@ -121,7 +121,7 @@ const luaL_traceback = function(L, L1, msg, level) { level = last - LEVELS2 + 1; /* and skip to last ones */ } else { lua.lua_getinfo(L1, lua.to_luastring("Slnt", true), ar); - lua.lua_pushstring(L, ['\n'.charCodeAt(0), '\t'.charCodeAt(0), '.'.charCodeAt(0), '.'.charCodeAt(0), '.'.charCodeAt(0)].concat(ar.short_src)); + lua.lua_pushstring(L, ['\n'.charCodeAt(0), '\t'.charCodeAt(0)].concat(ar.short_src).concat([':'.charCodeAt(0)])); if (ar.currentline > 0) lua.lua_pushliteral(L, `${ar.currentline}:`); lua.lua_pushliteral(L, " in "); |