Commit 5dafc001 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Modules: Remove tabs in source code

parent 9c9e6346
......@@ -43,10 +43,11 @@
#include <lua.h> /* Low level lua C API */
#include <lauxlib.h> /* Higher level C API */
#include <lualib.h> /* Lua libs */
#if LUA_VERSION_NUM >= 502
#define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ)
#define lua_objlen(L,idx) lua_rawlen(L,idx)
#define lua_strlen(L,idx) lua_rawlen(L,idx)
# define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ)
# define lua_objlen(L,idx) lua_rawlen(L,idx)
# define lua_strlen(L,idx) lua_rawlen(L,idx)
#endif
/*****************************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment