summaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-12-14 13:27:30 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-12-14 13:27:30 -0200
commit15b823ce4fde81d20486428e52a5a608d62f2465 (patch)
tree05cc1aa379caa41eac41c161aaf54a5be12df3a2 /luaconf.h
parent8da245bfd2a767e1a738c2a85492d1f64d68f016 (diff)
downloadlua-15b823ce4fde81d20486428e52a5a608d62f2465.tar.gz
lua-15b823ce4fde81d20486428e52a5a608d62f2465.tar.bz2
lua-15b823ce4fde81d20486428e52a5a608d62f2465.zip
cleaner way to add extra space in a lua state.
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/*