diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-27 17:08:33 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-27 17:08:33 -0300 |
commit | 63e230a16bd030d11d041dfbec7a8a9bf0152b1e (patch) | |
tree | 1e9376b00efd5e1e033fddfd6b0114aec9897675 | |
parent | 102a1be6159b34190813bfd7a7ed6c04633c6200 (diff) | |
download | lua-63e230a16bd030d11d041dfbec7a8a9bf0152b1e.tar.gz lua-63e230a16bd030d11d041dfbec7a8a9bf0152b1e.tar.bz2 lua-63e230a16bd030d11d041dfbec7a8a9bf0152b1e.zip |
comments
-rw-r--r-- | llimits.h | 4 | ||||
-rw-r--r-- | lopcodes.h | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llimits.h,v 1.1 2000/03/24 17:26:08 roberto Exp roberto $ | 2 | ** $Id: llimits.h,v 1.2 2000/03/24 19:49:23 roberto Exp roberto $ |
3 | ** Limits, basic types, and some other "instalation-dependent" definitions | 3 | ** Limits, basic types, and some other "instalation-dependent" definitions |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -178,7 +178,7 @@ typedef unsigned long Instruction; | |||
178 | 178 | ||
179 | /* maximum lookback to find a real constant (for code generation) */ | 179 | /* maximum lookback to find a real constant (for code generation) */ |
180 | #ifndef LOOKBACKNUMS | 180 | #ifndef LOOKBACKNUMS |
181 | #define LOOKBACKNUMS 20 /* arbitrary limit */ | 181 | #define LOOKBACKNUMS 20 /* arbitrary constant */ |
182 | #endif | 182 | #endif |
183 | 183 | ||
184 | 184 | ||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.51 2000/03/24 17:26:08 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.52 2000/03/24 19:49:23 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 | */ |
@@ -137,7 +137,7 @@ OP_JMP,/* J - - PC+=s */ | |||
137 | 137 | ||
138 | OP_PUSHNILJMP,/* - - nil PC++; */ | 138 | OP_PUSHNILJMP,/* - - nil PC++; */ |
139 | 139 | ||
140 | OP_CLOSURE,/* A B v_b-v_1 closure(CNST[a], v_1-v_b) */ | 140 | OP_CLOSURE,/* A B v_b-v_1 closure(KPROTO[a], v_1-v_b) */ |
141 | 141 | ||
142 | OP_SETLINE/* U - - LINE=u */ | 142 | OP_SETLINE/* U - - LINE=u */ |
143 | 143 | ||