luaL_errorL, luaL_typeerrorL and luaL_argerrorL, what are they for? #1134
Replies: 1 comment
-
They are identical. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
lualib.h has two sets of error functions which are just aliases:
luaL_error, luaL_errorL
luaL_typeerror, luaL_typeerrorL
luaL_argerror, luaL_argerrorL
What is the intended use for the aliases ending with 'L'? I think vanilla Lua does not have those.
Beta Was this translation helpful? Give feedback.
All reactions