aboutsummaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-05-10 14:50:51 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-05-10 14:50:51 -0300
commit7e41612eb28ff0fba282bd419781fcbc9bd94776 (patch)
treee63123d15589435c08c844b0d471b142c924818b /luaconf.h
parentb0f341ee52ee7d3d22261a68caf06eab5b0c8822 (diff)
downloadlua-7e41612eb28ff0fba282bd419781fcbc9bd94776.tar.gz
lua-7e41612eb28ff0fba282bd419781fcbc9bd94776.tar.bz2
lua-7e41612eb28ff0fba282bd419781fcbc9bd94776.zip
code parameterized by LUA_FIRSTINDEX (first index of an array)
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/luaconf.h b/luaconf.h
index 190c8620..ebf4d170 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.1 2004/05/03 12:28:43 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.2 2004/05/10 13:58:26 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*/
@@ -51,6 +51,10 @@
51/* buffer size used by lauxlib buffer system */ 51/* buffer size used by lauxlib buffer system */
52#define LUAL_BUFFERSIZE BUFSIZ 52#define LUAL_BUFFERSIZE BUFSIZ
53 53
54
55/* first index for arrays */
56#define LUA_FIRSTINDEX 1
57
54/* }====================================================== */ 58/* }====================================================== */
55 59
56 60