From 46f1429936ff7cde274f9896d022ab494567ee7a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 17 Dec 2009 10:50:20 -0200 Subject: more options moved from luaconf.h into internal files --- luaconf.h | 35 +---------------------------------- 1 file changed, 1 insertion(+), 34 deletions(-) (limited to 'luaconf.h') diff --git a/luaconf.h b/luaconf.h index cc788af2..070a25d5 100644 --- a/luaconf.h +++ b/luaconf.h @@ -1,5 +1,5 @@ /* -** $Id: luaconf.h,v 1.121 2009/12/14 15:27:30 roberto Exp roberto $ +** $Id: luaconf.h,v 1.122 2009/12/17 12:26:09 roberto Exp roberto $ ** Configuration file for Lua ** See Copyright Notice in lua.h */ @@ -524,39 +524,6 @@ union luai_Cast { double l_d; long l_l; }; #endif -/* -@@ luai_userstate* allow user-specific actions on threads. -** CHANGE them if you defined LUAI_EXTRASPACE and need to do something -** extra when a thread is created/deleted/resumed/yielded. -*/ -#define luai_userstateopen(L) ((void)L) -#define luai_userstateclose(L) ((void)L) -#define luai_userstatethread(L,L1) ((void)L) -#define luai_userstatefree(L) ((void)L) -#define luai_userstateresume(L,n) ((void)L) -#define luai_userstateyield(L,n) ((void)L) - - -/* -@@ LUA_INTFRMLEN is the length modifier for integer conversions -@* in 'string.format'. -@@ LUA_INTFRM_T is the integer type corresponding to the previous length -@* modifier. -** CHANGE them if your system supports long long or does not support long. -*/ - -#if defined(LUA_USELONGLONG) - -#define LUA_INTFRMLEN "ll" -#define LUA_INTFRM_T long long - -#else - -#define LUA_INTFRMLEN "l" -#define LUA_INTFRM_T long - -#endif - /* =================================================================== */ -- cgit v1.2.3-55-g6feb