From 3860c5934e0f61bfd4c3b91edfb6223f938d8008 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 15 Mar 2000 17:50:33 -0300 Subject: details. --- lcode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lcode.c') diff --git a/lcode.c b/lcode.c index c5602397..b4d52e65 100644 --- a/lcode.c +++ b/lcode.c @@ -1,5 +1,5 @@ /* -** $Id: lcode.c,v 1.10 2000/03/10 18:37:44 roberto Exp roberto $ +** $Id: lcode.c,v 1.11 2000/03/13 20:37:16 roberto Exp roberto $ ** Code generator for Lua ** See Copyright Notice in lua.h */ @@ -37,7 +37,7 @@ static Instruction *previous_instruction (FuncState *fs) { } -int luaK_primitivecode (FuncState *fs, Instruction i) { +static int luaK_primitivecode (FuncState *fs, Instruction i) { luaM_growvector(fs->L, fs->f->code, fs->pc, 1, Instruction, codeEM, MAXARG_S); fs->f->code[fs->pc] = i; return fs->pc++; -- cgit v1.2.3-55-g6feb