diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-12 15:50:06 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-12 16:55:02 +1000 |
commit | d387948354206fe214685c3d56d066fbae905fc6 (patch) | |
tree | 7db6283e569c3d364fe6db3d3312975ae1e6faa5 /src/ldo.js | |
parent | ef9caa4af6a55e12a3a7d58fde7159965b7bf749 (diff) | |
download | fengari-d387948354206fe214685c3d56d066fbae905fc6.tar.gz fengari-d387948354206fe214685c3d56d066fbae905fc6.tar.bz2 fengari-d387948354206fe214685c3d56d066fbae905fc6.zip |
Rename CallInfo l_savedpc field to l_code
Diffstat (limited to 'src/ldo.js')
-rw-r--r-- | src/ldo.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -90,7 +90,7 @@ const luaD_precall = function(L, off, nresults) { ci.func = func; ci.l_base = base; L.top = ci.top = base + fsize; - ci.l_savedpc = p.code; + ci.l_code = p.code; ci.pcOff = 0; ci.callstatus = lstate.CIST_LUA; |