summaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-12-28 14:30:31 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-12-28 14:30:31 -0200
commit0dc09cb42e558aabf9ffca397b5588e6ee2fecfa (patch)
tree2c2b12f87ae8edbe510ff42ce052195fc11e1b4e /luaconf.h
parentcc1cbd19a0730744a5db45086a0f37137e4f7bef (diff)
downloadlua-0dc09cb42e558aabf9ffca397b5588e6ee2fecfa.tar.gz
lua-0dc09cb42e558aabf9ffca397b5588e6ee2fecfa.tar.bz2
lua-0dc09cb42e558aabf9ffca397b5588e6ee2fecfa.zip
'unpack' moved to table library (and therefore "renamed" to
'table.unpack'.
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/luaconf.h b/luaconf.h
index 0768c9f4..4a9703ab 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.124 2009/12/17 13:08:51 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.125 2009/12/22 16:47:00 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*/
@@ -206,6 +206,13 @@
206*/ 206*/
207 207
208/* 208/*
209@@ LUA_COMPAT_UNPACK controls the presence of global 'unpack'.
210** CHANGE it (define it) if you have not replaced its uses with
211** 'table.unpack'.
212*/
213/* #define LUA_COMPAT_UNPACK */
214
215/*
209@@ LUA_COMPAT_CPCALL controls the presence of function 'lua_cpcall'. 216@@ LUA_COMPAT_CPCALL controls the presence of function 'lua_cpcall'.
210** CHANGE it (define it) if you need this function. (You can replace 217** CHANGE it (define it) if you need this function. (You can replace
211** it with the preregistered function cpcall.) 218** it with the preregistered function cpcall.)