From cbc59592ff684b646b21766a66630df1f7974b25 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 8 Jun 2001 16:01:38 -0300 Subject: new definition for `luaD_call' and `luaD_adjusttop' --- lopcodes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lopcodes.h') diff --git a/lopcodes.h b/lopcodes.h index 5819c407..bbca12d9 100644 --- a/lopcodes.h +++ b/lopcodes.h @@ -1,5 +1,5 @@ /* -** $Id: lopcodes.h,v 1.72 2001/04/06 18:25:00 roberto Exp roberto $ +** $Id: lopcodes.h,v 1.73 2001/06/05 18:17:01 roberto Exp roberto $ ** Opcodes for Lua virtual machine ** See Copyright Notice in lua.h */ @@ -165,7 +165,7 @@ OP_TESTF,/* A B test := not R(B); if (test) R(A) := nil */ OP_NILJMP,/* A R(A) := nil; PC++; */ -OP_CALL,/* A B C R(A), ... ,R(A+C-1) := R(A)(R(A+1), ... ,R(B-1))*/ +OP_CALL,/* A B C R(A), ... ,R(C-1) := R(A)(R(A+1), ... ,R(B-1)) */ OP_RETURN,/* A B return R(A), ... ,R(B-1) (see (3)) */ OP_FORPREP,/* A sBc */ -- cgit v1.2.3-55-g6feb