Move LUA_MULTRET def to Lua.java

This commit is contained in:
James Roseborough
2007-07-22 16:59:50 +00:00
parent ee5007e718
commit 56f33b373d

View File

@@ -18,6 +18,9 @@ public class Lua {
/** minimum size for string buffer */ /** minimum size for string buffer */
public static final int LUA_MINBUFFER = 32; public static final int LUA_MINBUFFER = 32;
/** use return values from previous op */
public static final int LUA_MULTRET = -1;
// from lopcodes.h // from lopcodes.h
@@ -376,8 +379,4 @@ public class Lua {
null, null,
}; };
/** number of list items to accumulate before a SETLIST instruction */
public static final int LFIELDS_PER_FLUSH = 50;
} }