summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-12-02 10:59:10 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-12-02 10:59:10 -0200
commite1c2fb6eed19f597e2f05ab2dec969d144d5e4bb (patch)
tree0df94b93204db2c9969b5da1e05ea5d846d98bc4 /lopcodes.h
parent12dacd3c0e2fe29542520101b19a43d98aea4081 (diff)
downloadlua-e1c2fb6eed19f597e2f05ab2dec969d144d5e4bb.tar.gz
lua-e1c2fb6eed19f597e2f05ab2dec969d144d5e4bb.tar.bz2
lua-e1c2fb6eed19f597e2f05ab2dec969d144d5e4bb.zip
details
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 173e44c9..fa637e08 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.112 2004/10/04 19:01:53 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.113 2004/10/04 19:07:42 roberto Exp roberto $
3** Opcodes for Lua virtual machine 3** Opcodes for Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -257,7 +257,7 @@ extern const lu_byte luaP_opmodes[NUM_OPCODES];
257#define testTMode(m) (luaP_opmodes[m] & (1 << 7)) 257#define testTMode(m) (luaP_opmodes[m] & (1 << 7))
258 258
259 259
260extern const char *const luaP_opnames[NUM_OPCODES]; /* opcode names */ 260extern const char *const luaP_opnames[NUM_OPCODES+1]; /* opcode names */
261 261
262 262
263/* number of list items to accumulate before a SETLIST instruction */ 263/* number of list items to accumulate before a SETLIST instruction */