From 3c9d999424520c809e05bee11d81788b488434f6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 3 Mar 2000 11:58:26 -0300 Subject: many details (most by lhf). --- lcode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lcode.c') diff --git a/lcode.c b/lcode.c index 9ca8de7e..cf9aee47 100644 --- a/lcode.c +++ b/lcode.c @@ -1,5 +1,5 @@ /* -** $Id: lcode.c,v 1.1 2000/02/22 13:30:11 roberto Exp roberto $ +** $Id: lcode.c,v 1.2 2000/03/03 12:33:59 roberto Exp roberto $ ** Code generator for Lua ** See Copyright Notice in lua.h */ @@ -152,7 +152,7 @@ int luaK_kstr (LexState *ls, int c) { #endif static int real_constant (LexState *ls, real r) { - /* check whether `r' has appeared within the last LIM entries */ + /* check whether `r' has appeared within the last LOOKBACKNUMS entries */ TProtoFunc *f = ls->fs->f; int c = f->nknum; int lim = c < LOOKBACKNUMS ? 0 : c-LOOKBACKNUMS; -- cgit v1.2.3-55-g6feb