aboutsummaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/luaconf.h b/luaconf.h
index af1e11d5..0e512761 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.119 2009/11/26 17:34:49 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.120 2009/12/10 19:00:33 roberto Exp roberto $
3** Configuration file for Lua 3** Configuration file for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -753,12 +753,12 @@ union luai_Cast { double l_d; long l_l; };
753 753
754 754
755/* 755/*
756@@ LUAI_EXTRASPACE allows you to add user-specific data in a lua_State 756@@ LUAI_EXTRASPACE allows you to add user-specific data in a lua_State.
757@* (the data goes just *before* the lua_State pointer). 757@* (This data goes just *before* the lua_State pointer.)
758** CHANGE (define) this if you really need that. This value must be 758** CHANGE (define) this if you really need that. If defined, this value
759** a multiple of the maximum alignment required for your machine. 759** cannot be zero.
760*/ 760*/
761#define LUAI_EXTRASPACE 0 761/* #define LUAI_EXTRASPACE ?? */
762 762
763 763
764/* 764/*