diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-01-02 15:46:32 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-01-02 15:46:32 -0200 |
commit | 964c503a63af6df00cb3dfca0283be61655b535e (patch) | |
tree | 70d2da360649261c439f2564c8c9fa1a896ce1ab /lbuiltin.c | |
parent | 90d87e3a78e567f3db307d2c90a63386c881c68d (diff) | |
download | lua-964c503a63af6df00cb3dfca0283be61655b535e.tar.gz lua-964c503a63af6df00cb3dfca0283be61655b535e.tar.bz2 lua-964c503a63af6df00cb3dfca0283be61655b535e.zip |
LUA_COMPAT2.5 may use #ifdef instead of #if
Diffstat (limited to 'lbuiltin.c')
-rw-r--r-- | lbuiltin.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lbuiltin.c,v 1.19 1997/12/18 18:32:39 roberto Exp roberto $ | 2 | ** $Id: lbuiltin.c,v 1.20 1997/12/30 17:57:45 roberto Exp roberto $ |
3 | ** Built-in functions | 3 | ** Built-in functions |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -464,7 +464,7 @@ static void testC (void) | |||
464 | ** Internal functions | 464 | ** Internal functions |
465 | */ | 465 | */ |
466 | static struct luaL_reg int_funcs[] = { | 466 | static struct luaL_reg int_funcs[] = { |
467 | #if LUA_COMPAT2_5 | 467 | #ifdef LUA_COMPAT2_5 |
468 | {"setfallback", luaT_setfallback}, | 468 | {"setfallback", luaT_setfallback}, |
469 | #endif | 469 | #endif |
470 | #ifdef DEBUG | 470 | #ifdef DEBUG |