aboutsummaryrefslogtreecommitdiff
path: root/lvm.c (unfollow)
Commit message (Expand)AuthorFilesLines
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
2014-03-20'posrelat' -> 'u_posrelat' (to avoid name conflict in 'one.c')Roberto Ierusalimschy1-6/+6
2014-03-19with 64-bit integers, file offsets do not need to be floatsRoberto Ierusalimschy1-4/+4
2014-03-19removed function 'luaS_eqstr' (not used anywhere)Roberto Ierusalimschy2-12/+2
2014-03-19detail (removed unused prototype)Roberto Ierusalimschy1-2/+1
2014-03-18bitlib has been deprecatedRoberto Ierusalimschy2-2/+28
2014-03-15detail (comment)Roberto Ierusalimschy1-2/+2
2014-03-14detailsRoberto Ierusalimschy1-7/+8
2014-03-13changing prefix of configurable macros from "lua_" to "l_"Roberto Ierusalimschy1-26/+26
2014-03-12lua_gettable and similars return type of gotten valueRoberto Ierusalimschy7-44/+40
2014-03-12detail in string.rep: allow large repetitions of the empty string (noRoberto Ierusalimschy1-4/+5
2014-03-11make all dumps/loads go trhough Load/DumpVector (so it is easierRoberto Ierusalimschy2-8/+20
2014-03-11keep chunk's headers compatible at least up to LUAC_VERSION (to beRoberto Ierusalimschy2-10/+13
2014-03-11make sure that LUAC_INT is a lua_Integer and that LUAC_NUM isRoberto Ierusalimschy1-3/+4
2014-03-10detail (breaking too long lines)Roberto Ierusalimschy1-3/+5
2014-03-10no need to avoid negative ints in 'LoadInt'Roberto Ierusalimschy1-3/+1
2014-03-10"indent -kr -i2 -br -brf -nut" plus a few manual formatingRoberto Ierusalimschy2-344/+363
2014-03-09small bug (from revision 2.80): LUA_OP* constants are not fromRoberto Ierusalimschy1-2/+2
2014-03-07new macro 'cast_void'Roberto Ierusalimschy3-7/+9