diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-07-29 10:35:06 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-07-29 10:35:06 -0300 |
commit | 0600f968c3da21172086be04679be34fe3fb8fd1 (patch) | |
tree | f1e6e0f042100139ed87af77041a90b774f8bcc0 | |
parent | 971b1d557df52c5438767e17781d1e6bd898fa45 (diff) | |
download | lua-0600f968c3da21172086be04679be34fe3fb8fd1.tar.gz lua-0600f968c3da21172086be04679be34fe3fb8fd1.tar.bz2 lua-0600f968c3da21172086be04679be34fe3fb8fd1.zip |
BUG: LUA_COMPAT2_5 written wrong...
-rw-r--r-- | bugs | 1 | ||||
-rw-r--r-- | opcode.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,2 +1,3 @@ | |||
1 | - arquivo comecando com # fica com numero da linha defazado (inout.c 2.69) | 1 | - arquivo comecando com # fica com numero da linha defazado (inout.c 2.69) |
2 | - LUA_COMPAT2_5 escrito errado em opcode.c (faltou o LUA_) | 2 | - LUA_COMPAT2_5 escrito errado em opcode.c (faltou o LUA_) |
3 | - | ||
@@ -3,7 +3,7 @@ | |||
3 | ** TecCGraf - PUC-Rio | 3 | ** TecCGraf - PUC-Rio |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_opcode="$Id: opcode.c,v 4.17 1997/07/03 22:06:06 roberto Exp $"; | 6 | char *rcs_opcode="$Id: opcode.c,v 4.17 1997/07/04 14:55:37 roberto Exp roberto $"; |
7 | 7 | ||
8 | #include <setjmp.h> | 8 | #include <setjmp.h> |
9 | #include <stdio.h> | 9 | #include <stdio.h> |
@@ -1492,7 +1492,7 @@ static StkId lua_execute (Byte *pc, StkId base) | |||
1492 | } | 1492 | } |
1493 | 1493 | ||
1494 | 1494 | ||
1495 | #if COMPAT2_5 | 1495 | #if LUA_COMPAT2_5 |
1496 | /* | 1496 | /* |
1497 | ** API: set a function as a fallback | 1497 | ** API: set a function as a fallback |
1498 | */ | 1498 | */ |