-
Notifications
You must be signed in to change notification settings - Fork 15.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lua binding compatibility for lua 5.3+ #13750
Lua binding compatibility for lua 5.3+ #13750
Comments
We triage inactive PRs and issues in order to make it easier to find active work. If this issue should remain active or becomes active again, please add a comment. This issue is labeled |
We triage inactive PRs and issues in order to make it easier to find active work. If this issue should remain active or becomes active again, please reopen it. This issue was closed and archived because there has been no new activity in the 14 days since the |
luaL_checkint
is replaced byluaL_checkinteger
and is removed from lua 5.3lua_isinteger
is already defined in lua 5.3+else if (isprint(ch))
inupb/bindings/lua/upbc.cc
is UB when ch is negative, and will crash when compiled by MSVC.The text was updated successfully, but these errors were encountered: