limits now are in `llims.n'

This commit is contained in:
Roberto Ierusalimschy
2000-03-24 14:26:08 -03:00
parent 47b4bf5964
commit 213e9febc8
9 changed files with 26 additions and 164 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lcode.c,v 1.16 2000/03/20 19:15:37 roberto Exp roberto $
** $Id: lcode.c,v 1.17 2000/03/24 12:18:30 roberto Exp roberto $
** Code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -212,10 +212,6 @@ void luaK_kstr (LexState *ls, int c) {
}
#ifndef LOOKBACKNUMS
#define LOOKBACKNUMS 20 /* arbitrary limit */
#endif
static int real_constant (FuncState *fs, Number r) {
/* check whether `r' has appeared within the last LOOKBACKNUMS entries */
Proto *f = fs->f;