summaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-06-22 13:59:11 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-06-22 13:59:11 -0300
commit3904a66ab0ea441504afb74160fb6ff5efd8d33b (patch)
tree0b96d4787fbc07f19a04c3dfe0831bbbf8158155 /luaconf.h
parentffc5f78229be51a31a8a75c09d5f8d35fb7654bb (diff)
downloadlua-3904a66ab0ea441504afb74160fb6ff5efd8d33b.tar.gz
lua-3904a66ab0ea441504afb74160fb6ff5efd8d33b.tar.bz2
lua-3904a66ab0ea441504afb74160fb6ff5efd8d33b.zip
'debug' library must be required before being used
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/luaconf.h b/luaconf.h
index 49a0e30a..080d9161 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.88 2007/05/03 20:49:29 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.89 2007/06/21 13:48:04 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*/
@@ -334,6 +334,14 @@
334*/ 334*/
335#define LUA_COMPAT_GFIND 335#define LUA_COMPAT_GFIND
336 336
337/*
338@@ LUA_COMPAT_DEBUGLIB controls compatibility with preloading
339@* the debug library.
340** CHANGE it to undefined as soon as you add 'require"debug"' everywhere
341** you need the debug library.
342*/
343#define LUA_COMPAT_DEBUGLIB
344
337 345
338 346
339 347