summaryrefslogtreecommitdiff
path: root/ltm.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 /ltm.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 'ltm.c')
-rw-r--r--ltm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltm.c b/ltm.c
index 6cda2973..3c788f41 100644
--- a/ltm.c
+++ b/ltm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.c,v 1.11 1997/12/11 17:21:11 roberto Exp roberto $ 2** $Id: ltm.c,v 1.12 1997/12/15 16:17:20 roberto Exp roberto $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -174,7 +174,7 @@ char *luaT_travtagmethods (int (*fn)(TObject *))
174* =================================================================== 174* ===================================================================
175* compatibility with old fallback system 175* compatibility with old fallback system
176*/ 176*/
177#if LUA_COMPAT2_5 177#ifdef LUA_COMPAT2_5
178 178
179#include "lapi.h" 179#include "lapi.h"
180 180