Skip to content
Snippets Groups Projects
Commit a8cb12b6 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Fix a broken tree, broken by rebase/merge of Doxygen docs for C API

parent e3f24208
No related branches found
No related tags found
No related merge requests found
......@@ -433,7 +433,7 @@ luaL_toint64(struct lua_State *L, int idx);
static inline bool
luaL_isarray(struct lua_State *L, int idx)
{
if (!lua_istable(L, idx) == false)
if (!lua_istable(L, idx))
return false;
if (idx < 0)
idx = lua_gettop(L) + idx + 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment