diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-18 15:55:45 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-03-18 15:55:45 -0300 |
commit | d872090248f7c90ce8d19af4eda3c0a6727f1261 (patch) | |
tree | 056a5aae39cd0dde1afbb063a786090b5def488f /luaconf.h | |
parent | fb0f95a2b77f5be3b7be72c33dda9ad6d8894d4d (diff) | |
download | lua-d872090248f7c90ce8d19af4eda3c0a6727f1261.tar.gz lua-d872090248f7c90ce8d19af4eda3c0a6727f1261.tar.bz2 lua-d872090248f7c90ce8d19af4eda3c0a6727f1261.zip |
small errors in previous `ci' of luaconf.h.
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.35 2005/03/09 16:28:07 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.36 2005/03/18 18:02: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 | */ |
@@ -233,9 +233,9 @@ | |||
233 | *@ LUAI_MAXCALLS limits the number of nested calls. | 233 | *@ LUAI_MAXCALLS limits the number of nested calls. |
234 | ** CHANGE it if you need really deep recursive calls. This limit is | 234 | ** CHANGE it if you need really deep recursive calls. This limit is |
235 | ** arbitrary; its only purpose is to stop infinite recursion before | 235 | ** arbitrary; its only purpose is to stop infinite recursion before |
236 | ** exhausting memory. (This value must fit in an unsigned short.) | 236 | ** exhausting memory. |
237 | */ | 237 | */ |
238 | #define LUAI_MAXCALLS 40000 | 238 | #define LUAI_MAXCALLS 20000 |
239 | 239 | ||
240 | 240 | ||
241 | /* | 241 | /* |
@@ -510,7 +510,7 @@ __inline int l_lrint (double flt) | |||
510 | 510 | ||
511 | 511 | ||
512 | /* | 512 | /* |
513 | *@ LUA_EXTRASPACE allows you to add user-specific data in a lua_State | 513 | *@ LUAI_EXTRASPACE allows you to add user-specific data in a lua_State |
514 | ** (the data goes just *before* the lua_State pointer). | 514 | ** (the data goes just *before* the lua_State pointer). |
515 | ** CHANGE (define) this if you really need that. This value must be | 515 | ** CHANGE (define) this if you really need that. This value must be |
516 | ** a multiple of the maximum alignment required for your machine. | 516 | ** a multiple of the maximum alignment required for your machine. |
@@ -519,8 +519,8 @@ __inline int l_lrint (double flt) | |||
519 | 519 | ||
520 | 520 | ||
521 | /* | 521 | /* |
522 | *@ lua_userstateopen allows user-specific initialization on new threads. | 522 | *@ luai_userstateopen allows user-specific initialization on new threads. |
523 | ** CHANGE it if you defined LUA_EXTRASPACE and need to initialize that | 523 | ** CHANGE it if you defined LUAI_EXTRASPACE and need to initialize that |
524 | ** data whenever a new lua_State is created. | 524 | ** data whenever a new lua_State is created. |
525 | */ | 525 | */ |
526 | #define luai_userstateopen(L) ((void)0) | 526 | #define luai_userstateopen(L) ((void)0) |