diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-04-12 15:47:03 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-04-12 15:47:03 -0300 |
commit | 0c3fe2c44be155b11b52230e36f45e688bae5ce2 (patch) | |
tree | a181bce365cb337e4defb3ac1c2deff8d6f6cd43 | |
parent | 0433e42023a7121154470d5a14be9da903d6e42b (diff) | |
download | lua-0c3fe2c44be155b11b52230e36f45e688bae5ce2.tar.gz lua-0c3fe2c44be155b11b52230e36f45e688bae5ce2.tar.bz2 lua-0c3fe2c44be155b11b52230e36f45e688bae5ce2.zip |
comment
-rw-r--r-- | lcode.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.h,v 1.10 2000/04/05 17:51:58 roberto Exp roberto $ | 2 | ** $Id: lcode.h,v 1.11 2000/04/07 19:35:20 roberto Exp roberto $ |
3 | ** Code generator for Lua | 3 | ** Code generator for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -13,7 +13,11 @@ | |||
13 | #include "lparser.h" | 13 | #include "lparser.h" |
14 | 14 | ||
15 | 15 | ||
16 | #define NO_JUMP (-1) /* marks end of patch list */ | 16 | /* |
17 | ** Marks the end of a patch list. It is an invalid value both as an absolute | ||
18 | ** address, and as a list link (would link an element to itself). | ||
19 | */ | ||
20 | #define NO_JUMP (-1) | ||
17 | 21 | ||
18 | 22 | ||
19 | void luaK_error (LexState *ls, const char *msg); | 23 | void luaK_error (LexState *ls, const char *msg); |