aboutsummaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-01-02 15:46:32 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-01-02 15:46:32 -0200
commit964c503a63af6df00cb3dfca0283be61655b535e (patch)
tree70d2da360649261c439f2564c8c9fa1a896ce1ab /lapi.c
parent90d87e3a78e567f3db307d2c90a63386c881c68d (diff)
downloadlua-964c503a63af6df00cb3dfca0283be61655b535e.tar.gz
lua-964c503a63af6df00cb3dfca0283be61655b535e.tar.bz2
lua-964c503a63af6df00cb3dfca0283be61655b535e.zip
LUA_COMPAT2.5 may use #ifdef instead of #if
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lapi.c b/lapi.c
index 5a3b0d26..2bcabed0 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 1.15 1997/12/18 18:32:39 roberto Exp roberto $ 2** $Id: lapi.c,v 1.16 1997/12/22 17:52:20 roberto Exp roberto $
3** Lua API 3** Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -580,7 +580,7 @@ lua_Object lua_getref (int ref)
580 580
581 581
582 582
583#if LUA_COMPAT2_5 583#ifdef LUA_COMPAT2_5
584/* 584/*
585** API: set a function as a fallback 585** API: set a function as a fallback
586*/ 586*/