summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-07-29 10:35:06 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-07-29 10:35:06 -0300
commit0600f968c3da21172086be04679be34fe3fb8fd1 (patch)
treef1e6e0f042100139ed87af77041a90b774f8bcc0
parent971b1d557df52c5438767e17781d1e6bd898fa45 (diff)
downloadlua-github-0600f968c3da21172086be04679be34fe3fb8fd1.tar.gz
BUG: LUA_COMPAT2_5 written wrong...
-rw-r--r--bugs1
-rw-r--r--opcode.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/bugs b/bugs
index 03cb4f8d..f968fb93 100644
--- a/bugs
+++ b/bugs
@@ -1,2 +1,3 @@
- arquivo comecando com # fica com numero da linha defazado (inout.c 2.69)
- LUA_COMPAT2_5 escrito errado em opcode.c (faltou o LUA_)
+-
diff --git a/opcode.c b/opcode.c
index 82f63c66..c7c972fd 100644
--- a/opcode.c
+++ b/opcode.c
@@ -3,7 +3,7 @@
** TecCGraf - PUC-Rio
*/
-char *rcs_opcode="$Id: opcode.c,v 4.17 1997/07/03 22:06:06 roberto Exp $";
+char *rcs_opcode="$Id: opcode.c,v 4.17 1997/07/04 14:55:37 roberto Exp roberto $";
#include <setjmp.h>
#include <stdio.h>
@@ -1492,7 +1492,7 @@ static StkId lua_execute (Byte *pc, StkId base)
}
-#if COMPAT2_5
+#if LUA_COMPAT2_5
/*
** API: set a function as a fallback
*/