aboutsummaryrefslogtreecommitdiff
path: root/bugs (unfollow)
Commit message (Expand)AuthorFilesLines
2014-04-16correct integer limits for Windows + small adjustments for shortRoberto Ierusalimschy1-3/+14
2014-04-15keep 'luaL_checkversion_' with its signature in version 5.2, forRoberto Ierusalimschy2-5/+5
2014-04-15initial '*' in 'io.read' formats is deprecatedRoberto Ierusalimschy1-4/+4
2014-04-15cast_u2s/cast_s2u renamed l_castS2U/l_castU2S to be configurable fromRoberto Ierusalimschy6-19/+23
2014-04-15macros cast_integer/cast_unsigned replaced by cast_u2s/cast_s2u, thatRoberto Ierusalimschy7-25/+33
2014-04-14instructions in 'runC' sorted alphabetically + new instructionsRoberto Ierusalimschy1-192/+198
2014-04-14size of strings in 'string.rep' should be limited by the size ofRoberto Ierusalimschy1-3/+3
2014-04-14using predefined limits (instead of computing min/max values for eachRoberto Ierusalimschy1-16/+28
2014-04-13maximum size of array part of a table now is restricted not only byRoberto Ierusalimschy1-8/+8
2014-04-12new macro LUA_MAXUNSIGNED + support for 'short' integers (for tests only)Roberto Ierusalimschy1-12/+36
2014-04-12new global macro 'LUA_MAXUNSIGNED'Roberto Ierusalimschy3-10/+6
2014-04-12detail (avoid "casting down" in case lua_Integer is smaller than int)Roberto Ierusalimschy1-2/+2
2014-04-11errors like 1e100 << "2" were giving wrong messagesRoberto Ierusalimschy1-3/+5
2014-04-11correct definition for 'MAX_SIZE' (using singed integers as the limit,Roberto Ierusalimschy1-8/+9
2014-04-11new type 'LUAI_UACINT' (result of an 'usual argument conversion' ofRoberto Ierusalimschy2-3/+7
2014-04-11'MIN/MAX_INTEGER' replaced by 'LUA_MIN/MAXINTEGER'Roberto Ierusalimschy2-9/+6
2014-04-11details in commentsRoberto Ierusalimschy1-5/+6
2014-04-10maximum size for dump of integers is size of lua_Integer (whichRoberto Ierusalimschy1-36/+17
2014-04-10pack/unpack functions renamed dump/undumpRoberto Ierusalimschy1-14/+14
2014-04-10math.random: use 'random' when available + changes to work correctlyRoberto Ierusalimschy1-8/+19
2014-04-09more precision for PI + no more RADIANS_PER_DEGREE +Roberto Ierusalimschy1-7/+6
2014-04-09new definition for 'luai_nummod' (using 'fmod')Roberto Ierusalimschy3-6/+13
2014-04-08using 'volatile' in 'tofloat' to ensure result has the same precisionRoberto Ierusalimschy1-4/+7
2014-04-04'GCmemtrav' does not need to track the entire collection, only eachRoberto Ierusalimschy1-8/+8
2014-04-04'int' -> 'lua_Integer' in several functionsRoberto Ierusalimschy1-11/+11
2014-04-03new constants 'math.maxint'/'math.minint'Roberto Ierusalimschy1-1/+5
2014-04-03new macros LUA_MAXINTEGER/LUA_MININTEGERRoberto Ierusalimschy1-1/+6
2014-04-03several changes in 'utf8.offset'Roberto Ierusalimschy1-22/+27
2014-04-03bug: compiler can optimize away overflow check in 'table.concat'Roberto Ierusalimschy1-5/+16
2014-04-03avoid constant overflow when shifting left signed integers untilRoberto Ierusalimschy1-5/+5
2014-04-02new implementation for 'utf8.len'Roberto Ierusalimschy1-13/+18
2014-04-02bug (in work version): comparisons should not try to convertRoberto Ierusalimschy1-5/+20
2014-04-02LUAI_FUNC is being used only in header filesRoberto Ierusalimschy3-6/+6
2014-04-01detail (error message for conversion from float to integer)Roberto Ierusalimschy1-2/+2
2014-04-01added an 'api_check' for negative sizes in 'lua_checkstack'Roberto Ierusalimschy1-1/+2
2014-04-01bug: compiler could optimize away overflow check (+ changing indicesRoberto Ierusalimschy1-9/+12
2014-04-01some details to avoid warningsRoberto Ierusalimschy6-15/+15
2014-04-01more precise estimation (GCestimate) for total bytes in use afterRoberto Ierusalimschy1-14/+18
2014-03-31detail ('1U' -> '1u', like other unsigned constants in the code)Roberto Ierusalimschy1-3/+3
2014-03-31math.abs, math.max, and math.min work for integers, too.Roberto Ierusalimschy1-15/+20
2014-03-31fancier way to do sign extensionRoberto Ierusalimschy1-4/+3
2014-03-31macro 'tostring' is used only by 'luaV_concat'Roberto Ierusalimschy2-4/+4
2014-03-27missplelling in comments/function names (endianess -> endianness)Roberto Ierusalimschy3-13/+13
2014-03-21definition of LUA_REAL_* and LUA_INT_* moved to the beginning ofRoberto Ierusalimschy1-19/+23
2014-03-21native lua_Number may be neither float nor double (in pack/unpackfloat)Roberto Ierusalimschy1-17/+22
2014-03-21details (typos in comments)Roberto Ierusalimschy6-18/+18
2014-03-20copyright year -> 2014Roberto Ierusalimschy1-3/+3
2014-03-20detail (to avoid warnings with '-O3')Roberto Ierusalimschy1-3/+3
2014-03-20does not create library when it is deprecatedRoberto Ierusalimschy1-10/+2
2014-03-20configuration for Lua type corresponding to 'time_t'Roberto Ierusalimschy1-10/+24