diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-22 00:10:38 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-22 00:50:36 +1000 |
commit | 309cdf8b9bdf8d45196eb94bda7588ddac8915c6 (patch) | |
tree | 4ecb6bb30a36fe257cbe21da6bcb12add4141511 /src/ldblib.js | |
parent | 7ac843a05895dc9722cf8e515049fbbc82b01a05 (diff) | |
download | fengari-309cdf8b9bdf8d45196eb94bda7588ddac8915c6.tar.gz fengari-309cdf8b9bdf8d45196eb94bda7588ddac8915c6.tar.bz2 fengari-309cdf8b9bdf8d45196eb94bda7588ddac8915c6.zip |
src/ldebug.js: namewhat should always contain a string
Diffstat (limited to 'src/ldblib.js')
-rw-r--r-- | src/ldblib.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ldblib.js b/src/ldblib.js index 91dd980..3f18a27 100644 --- a/src/ldblib.js +++ b/src/ldblib.js @@ -151,8 +151,8 @@ const db_getinfo = function(L) { settabsb(L, lua.to_luastring("isvararg", true), ar.isvararg); } if (options.indexOf('n'.charCodeAt(0)) > - 1) { - settabss(L, lua.to_luastring("name", true), ar.name ? ar.name : null); - settabss(L, lua.to_luastring("namewhat", true), ar.namewhat ? ar.namewhat : null); + settabss(L, lua.to_luastring("name", true), ar.name); + settabss(L, lua.to_luastring("namewhat", true), ar.namewhat); } if (options.indexOf('t'.charCodeAt(0)) > - 1) settabsb(L, lua.to_luastring("istailcall", true), ar.istailcall); |