aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* using lua_Unsigned (instead of lua_Integer) for bit manipulationRoberto Ierusalimschy2014-04-271-7/+8
* n^-m gives float result (instead of error)Roberto Ierusalimschy2014-04-274-17/+15
* 'math.random(n,m)' interval restricted in size, to avoid using conversionRoberto Ierusalimschy2014-04-171-8/+12
* commentRoberto Ierusalimschy2014-04-171-3/+3
* back to larger sizes for 'dumpint/undumpint' (small Lua shouldRoberto Ierusalimschy2014-04-161-13/+39
* correct integer limits for Windows + small adjustments for shortRoberto Ierusalimschy2014-04-161-3/+14
* keep 'luaL_checkversion_' with its signature in version 5.2, forRoberto Ierusalimschy2014-04-152-5/+5
* initial '*' in 'io.read' formats is deprecatedRoberto Ierusalimschy2014-04-151-4/+4
* cast_u2s/cast_s2u renamed l_castS2U/l_castU2S to be configurable fromRoberto Ierusalimschy2014-04-156-19/+23
* macros cast_integer/cast_unsigned replaced by cast_u2s/cast_s2u, thatRoberto Ierusalimschy2014-04-157-25/+33
* instructions in 'runC' sorted alphabetically + new instructionsRoberto Ierusalimschy2014-04-141-192/+198
* size of strings in 'string.rep' should be limited by the size ofRoberto Ierusalimschy2014-04-141-3/+3
* using predefined limits (instead of computing min/max values for eachRoberto Ierusalimschy2014-04-141-16/+28
* maximum size of array part of a table now is restricted not only byRoberto Ierusalimschy2014-04-131-8/+8
* new macro LUA_MAXUNSIGNED + support for 'short' integers (for tests only)Roberto Ierusalimschy2014-04-121-12/+36
* new global macro 'LUA_MAXUNSIGNED'Roberto Ierusalimschy2014-04-123-10/+6
* detail (avoid "casting down" in case lua_Integer is smaller than int)Roberto Ierusalimschy2014-04-121-2/+2
* errors like 1e100 << "2" were giving wrong messagesRoberto Ierusalimschy2014-04-111-3/+5
* correct definition for 'MAX_SIZE' (using singed integers as the limit,Roberto Ierusalimschy2014-04-111-8/+9
* new type 'LUAI_UACINT' (result of an 'usual argument conversion' ofRoberto Ierusalimschy2014-04-112-3/+7
* 'MIN/MAX_INTEGER' replaced by 'LUA_MIN/MAXINTEGER'Roberto Ierusalimschy2014-04-112-9/+6
* details in commentsRoberto Ierusalimschy2014-04-111-5/+6
* maximum size for dump of integers is size of lua_Integer (whichRoberto Ierusalimschy2014-04-101-36/+17
* pack/unpack functions renamed dump/undumpRoberto Ierusalimschy2014-04-101-14/+14
* math.random: use 'random' when available + changes to work correctlyRoberto Ierusalimschy2014-04-101-8/+19
* more precision for PI + no more RADIANS_PER_DEGREE +Roberto Ierusalimschy2014-04-091-7/+6
* new definition for 'luai_nummod' (using 'fmod')Roberto Ierusalimschy2014-04-093-6/+13
* using 'volatile' in 'tofloat' to ensure result has the same precisionRoberto Ierusalimschy2014-04-081-4/+7
* 'GCmemtrav' does not need to track the entire collection, only eachRoberto Ierusalimschy2014-04-041-8/+8
* 'int' -> 'lua_Integer' in several functionsRoberto Ierusalimschy2014-04-041-11/+11
* new constants 'math.maxint'/'math.minint'Roberto Ierusalimschy2014-04-031-1/+5
* new macros LUA_MAXINTEGER/LUA_MININTEGERRoberto Ierusalimschy2014-04-031-1/+6
* several changes in 'utf8.offset'Roberto Ierusalimschy2014-04-031-22/+27
* bug: compiler can optimize away overflow check in 'table.concat'Roberto Ierusalimschy2014-04-031-5/+16
* avoid constant overflow when shifting left signed integers untilRoberto Ierusalimschy2014-04-031-5/+5
* new implementation for 'utf8.len'Roberto Ierusalimschy2014-04-021-13/+18
* bug (in work version): comparisons should not try to convertRoberto Ierusalimschy2014-04-021-5/+20
* LUAI_FUNC is being used only in header filesRoberto Ierusalimschy2014-04-023-6/+6
* detail (error message for conversion from float to integer)Roberto Ierusalimschy2014-04-011-2/+2
* added an 'api_check' for negative sizes in 'lua_checkstack'Roberto Ierusalimschy2014-04-011-1/+2
* bug: compiler could optimize away overflow check (+ changing indicesRoberto Ierusalimschy2014-04-011-9/+12
* some details to avoid warningsRoberto Ierusalimschy2014-04-016-15/+15
* more precise estimation (GCestimate) for total bytes in use afterRoberto Ierusalimschy2014-04-011-14/+18
* detail ('1U' -> '1u', like other unsigned constants in the code)Roberto Ierusalimschy2014-03-311-3/+3
* math.abs, math.max, and math.min work for integers, too.Roberto Ierusalimschy2014-03-311-15/+20
* fancier way to do sign extensionRoberto Ierusalimschy2014-03-311-4/+3
* macro 'tostring' is used only by 'luaV_concat'Roberto Ierusalimschy2014-03-312-4/+4
* missplelling in comments/function names (endianess -> endianness)Roberto Ierusalimschy2014-03-273-13/+13
* definition of LUA_REAL_* and LUA_INT_* moved to the beginning ofRoberto Ierusalimschy2014-03-211-19/+23
* native lua_Number may be neither float nor double (in pack/unpackfloat)Roberto Ierusalimschy2014-03-211-17/+22