diff options
| author | daurnimator <quae@daurnimator.com> | 2017-12-29 02:31:22 +1100 | 
|---|---|---|
| committer | daurnimator <quae@daurnimator.com> | 2017-12-29 02:44:44 +1100 | 
| commit | 1371afafae9144b30475262f06940c4057485d02 (patch) | |
| tree | 1df4d0ffcd1f3dadb8942646533b779df8e8a4a4 /src/loslib.js | |
| parent | c93673f0af0ebdc5165cf0acc340f65b6c6fa786 (diff) | |
| download | fengari-1371afafae9144b30475262f06940c4057485d02.tar.gz fengari-1371afafae9144b30475262f06940c4057485d02.tar.bz2 fengari-1371afafae9144b30475262f06940c4057485d02.zip | |
src/: Pass js strings to auxlib functions such as luaL_argcheck
Diffstat (limited to 'src/loslib.js')
| -rw-r--r-- | src/loslib.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/loslib.js b/src/loslib.js index 99e5787..09ee168 100644 --- a/src/loslib.js +++ b/src/loslib.js @@ -144,7 +144,7 @@ const os_time = function(L) {  const l_checktime = function(L, arg) {      let t = lauxlib.luaL_checkinteger(L, arg); -    // lauxlib.luaL_argcheck(L, t, arg, lua.to_luastring("time out-of-bounds")); +    // lauxlib.luaL_argcheck(L, t, arg, "time out-of-bounds");      return t;  }; | 
