From 0c3fe2c44be155b11b52230e36f45e688bae5ce2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 12 Apr 2000 15:47:03 -0300 Subject: comment --- lcode.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lcode.h b/lcode.h index 60955615..00b3d9f6 100644 --- a/lcode.h +++ b/lcode.h @@ -1,5 +1,5 @@ /* -** $Id: lcode.h,v 1.10 2000/04/05 17:51:58 roberto Exp roberto $ +** $Id: lcode.h,v 1.11 2000/04/07 19:35:20 roberto Exp roberto $ ** Code generator for Lua ** See Copyright Notice in lua.h */ @@ -13,7 +13,11 @@ #include "lparser.h" -#define NO_JUMP (-1) /* marks end of patch list */ +/* +** Marks the end of a patch list. It is an invalid value both as an absolute +** address, and as a list link (would link an element to itself). +*/ +#define NO_JUMP (-1) void luaK_error (LexState *ls, const char *msg); -- cgit v1.2.3-55-g6feb