misc/liblua/ldebug.h
branchsdl2transition
changeset 11342 ed5a6478e710
parent 10017 de822cd3df3a
--- a/misc/liblua/ldebug.h	Tue Nov 10 18:16:35 2015 +0100
+++ b/misc/liblua/ldebug.h	Tue Nov 10 20:43:13 2015 +0100
@@ -11,11 +11,11 @@
 #include "lstate.h"
 
 
-#define pcRel(pc, p)	(cast(int, (pc) - (p)->code) - 1)
+#define pcRel(pc, p)    (cast(int, (pc) - (p)->code) - 1)
 
-#define getline(f,pc)	(((f)->lineinfo) ? (f)->lineinfo[pc] : 0)
+#define getline(f,pc)   (((f)->lineinfo) ? (f)->lineinfo[pc] : 0)
 
-#define resethookcount(L)	(L->hookcount = L->basehookcount)
+#define resethookcount(L)   (L->hookcount = L->basehookcount)
 
 
 LUAI_FUNC void luaG_typeerror (lua_State *L, const TValue *o,