summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-10-16 19:14:47 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-10-16 19:14:47 -0200
commit3a89c973ff139c7048ee9d85e347f4b054f62b89 (patch)
treeeac364960161500da2e957e286c30c6eeba5a327 /lopcodes.h
parent52d5e8032ce375601a52c0e6fa9b6b72c5327c79 (diff)
downloadlua-github-3a89c973ff139c7048ee9d85e347f4b054f62b89.tar.gz
details
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lopcodes.h b/lopcodes.h
index a4644b78..11a88152 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
/*
-** $Id: lopcodes.h,v 1.8 1997/10/13 22:12:04 roberto Exp roberto $
+** $Id: lopcodes.h,v 1.9 1997/10/16 10:59:34 roberto Exp roberto $
** Opcodes for Lua virtual machine
** See Copyright Notice in lua.h
*/
@@ -135,9 +135,9 @@ IFTUPJMPW,/* w x - (x!=nil)? PC-=w */
IFFUPJMP,/* b x - (x==nil)? PC-=b */
IFFUPJMPW,/* w x - (x==nil)? PC-=w */
-CLOSURE,/* b v_b...v_1 prt c(prt) */
-CLOSURE0,/* b prt c(prt) */
-CLOSURE1,/* b v_1 prt c(prt) */
+CLOSURE,/* b v_b...v_1 proto c(proto) */
+CLOSURE0,/* - proto c(proto) */
+CLOSURE1,/* - v_1 proto c(proto) */
CALLFUNC,/* b c v_c...v_1 f r_b...r_1 f(v1,...,v_c) */
CALLFUNC0,/* b v_b...v_1 f - f(v1,...,v_b) */