diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-05-23 13:51:40 +0200 |
---|---|---|
committer | Benoit Giannangeli <giann008@gmail.com> | 2017-05-24 10:15:31 +0200 |
commit | 4350d195b636676ab55439551cc8fae5ee70fad3 (patch) | |
tree | 3cdf85fbdaa06b737108b9be130a8de45d4a9828 /tests/test-suite | |
parent | 214d745949e33f869751214c0997bf02f63c88b4 (diff) | |
download | fengari-4350d195b636676ab55439551cc8fae5ee70fad3.tar.gz fengari-4350d195b636676ab55439551cc8fae5ee70fad3.tar.bz2 fengari-4350d195b636676ab55439551cc8fae5ee70fad3.zip |
Add missing luaD_checkstack in luaD_hook
Diffstat (limited to 'tests/test-suite')
-rw-r--r-- | tests/test-suite/ltests.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-suite/ltests.js b/tests/test-suite/ltests.js index 685f530..1c8fe6b 100644 --- a/tests/test-suite/ltests.js +++ b/tests/test-suite/ltests.js @@ -379,9 +379,9 @@ const sethook = function(L) { const smask = lauxlib.luaL_checkstring(L, 2); let count = lauxlib.luaL_optinteger(L, 3, 0); let mask = 0; - if (smask.indexOf('c'.charCodeAt(0))) mask |= lua.LUA_MASKCALL; - if (smask.indexOf('r'.charCodeAt(0))) mask |= lua.LUA_MASKRET; - if (smask.indexOf('l'.charCodeAt(0))) mask |= lua.LUA_MASKLINE; + if (smask.indexOf('c'.charCodeAt(0)) >= 0) mask |= lua.LUA_MASKCALL; + if (smask.indexOf('r'.charCodeAt(0)) >= 0) mask |= lua.LUA_MASKRET; + if (smask.indexOf('l'.charCodeAt(0)) >= 0) mask |= lua.LUA_MASKLINE; if (count > 0) mask |= lua.LUA_MASKCOUNT; sethookaux(L, mask, count, scpt); } |