about summary refs log tree commit diff stats
path: root/src/luaconf.h
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-24 09:35:12 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-24 09:35:12 -0700
commita3c090ce09c558aa84ec6a22a4478732ed6b962e (patch)
tree4fb853a6f6d7f36cbc2ffb47e791b5b4706d6d8b /src/luaconf.h
parentc80bafed747804da277a0f42d7c2f2a560505da1 (diff)
downloadteliva-a3c090ce09c558aa84ec6a22a4478732ed6b962e.tar.gz
get rid of LUAI_EXTRASPACE
Lua's power may come from extensibility, but the indirections are
currently in the way
Diffstat (limited to 'src/luaconf.h')
-rw-r--r--src/luaconf.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/luaconf.h b/src/luaconf.h
index bebefc4..f24ed0e 100644
--- a/src/luaconf.h
+++ b/src/luaconf.h
@@ -665,15 +665,6 @@ union luai_Cast { double l_d; long l_l; };
 
 
 /*
-@@ LUAI_EXTRASPACE allows you to add user-specific data in a lua_State
-@* (the data goes just *before* the lua_State pointer).
-** CHANGE (define) this if you really need that. This value must be
-** a multiple of the maximum alignment required for your machine.
-*/
-#define LUAI_EXTRASPACE		0
-
-
-/*
 @@ 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.