summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* detail (comment)Roberto Ierusalimschy2014-05-231-3/+3
|
* no more use of 'scanf' for reading numbersRoberto Ierusalimschy2014-05-212-27/+82
|
* small improvements concerning 'check_next'Roberto Ierusalimschy2014-05-211-25/+39
|
* commentsRoberto Ierusalimschy2014-05-201-4/+6
|
* better(?) implementation for 'pcall'/'xpcall' (regarding the insertionRoberto Ierusalimschy2014-05-161-20/+35
| | | | of the boolean first result)
* more direct implementation of 'table.pack'Roberto Ierusalimschy2014-05-161-10/+6
|
* small changes in field order in some structs to reduce paddingRoberto Ierusalimschy2014-05-152-14/+14
|
* removed macro 'luai_checknum' (as NaN trick is not doable now)Roberto Ierusalimschy2014-05-152-8/+2
|
* added a few commentsRoberto Ierusalimschy2014-05-151-1/+14
|
* deprecated library throws an error if called (instead of silentlyRoberto Ierusalimschy2014-05-152-6/+7
| | | | not loading itself)
* added lots of new comments + small changes in codeRoberto Ierusalimschy2014-05-151-61/+94
|
* 'LUA_COMPAT_ALL' -> 'LUA_COMPAT_5_1'/'LUA_COMPAT_5_2' + "@*" inRoberto Ierusalimschy2014-05-151-18/+39
| | | | comments replaced by "@@". ("@*" is too distracting)
* avoid non-conformant pointer arithmetic in api check for 'lua_rotate'Roberto Ierusalimschy2014-05-151-3/+3
|
* using a more conventional handling of stack space in 'io_readline'Roberto Ierusalimschy2014-05-151-3/+2
|
* added a compat option (although it will be off by default) toRoberto Ierusalimschy2014-05-141-1/+3
| | | | the addition of '.0' to float->string conversions
* missing macro 'LUAMOD_API' in function to open libraryRoberto Ierusalimschy2014-05-141-2/+2
|
* function 'reverse' uses appropriate variants of 'setobj' for betterRoberto Ierusalimschy2014-05-141-3/+3
| | | | documentation
* several functions deprecated (cosh, sinh, atanh, pow, frexp, ldexp)Roberto Ierusalimschy2014-05-141-66/+72
|
* comments added to 'lua_rotate'Roberto Ierusalimschy2014-05-141-7/+11
|
* new API function 'lua_rotate'Roberto Ierusalimschy2014-05-134-26/+36
|
* addition of '.0' to float representation done by the kernelRoberto Ierusalimschy2014-05-123-13/+18
|
* no more integer exponentiationRoberto Ierusalimschy2014-05-123-30/+6
|
* added comments to several functionsRoberto Ierusalimschy2014-05-121-55/+93
|
* old POSIX systems need '<sys/types.h>' for 'off_t'Roberto Ierusalimschy2014-05-111-1/+3
|
* better error message for unfinished long strings/commentsRoberto Ierusalimschy2014-05-111-4/+8
|
* commentsRoberto Ierusalimschy2014-05-111-3/+6
|
* in 'for' loops, make the limit an integer whenever initial value andRoberto Ierusalimschy2014-05-091-3/+40
| | | | step are integers
* 'T.totalmem' accepts 0 for unlimited memoryRoberto Ierusalimschy2014-05-081-3/+5
|
* commentsRoberto Ierusalimschy2014-05-081-5/+6
|
* new function 'lua_isyieldable' (and 'coroutine.isyieldable')Roberto Ierusalimschy2014-05-083-7/+26
|
* updated several 'fix' fieldsRoberto Ierusalimschy2014-05-071-15/+13
|
* marks for releases 5.2.2 and 5.2.3 + correction in last bug's descriptionRoberto Ierusalimschy2014-05-071-3/+13
|
* better alignments (for 64-bit arquitectures) for structures 'Table' andRoberto Ierusalimschy2014-05-071-4/+4
| | | | 'TString'
* 'math.fmod' handles integers as integersRoberto Ierusalimschy2014-05-021-4/+14
|
* 'lua_getuservalue' returns type of user valueRoberto Ierusalimschy2014-05-012-4/+5
|
* 'lua_strtonum' (and 'luaO_str2num') now return string size, instead ofRoberto Ierusalimschy2014-05-017-41/+39
| | | | receiving it
* function 'limittointeger' no needed (now that 'tointeger_aux' handlesRoberto Ierusalimschy2014-04-301-16/+2
| | | | integers too)
* debug.numbits replaced by debug.CsizeRoberto Ierusalimschy2014-04-301-11/+25
|
* 'luaO_str2d' + 'luaO_str2int' replaced by 'luaO_str2num' plus properRoberto Ierusalimschy2014-04-301-22/+46
| | | | conversion from strings to integers
* 'luaO_str2d' + 'luaO_str2int' replaced by 'luaO_str2num' (which convertsRoberto Ierusalimschy2014-04-304-44/+50
| | | | to float or integer according to the string syntax)
* merge of common parts from 'limittointeger' and 'luaV_tointeger_'Roberto Ierusalimschy2014-04-291-10/+15
|
* 'setnvalue' -> 'setfltvalue' (for consitency with 'fltvalue')Roberto Ierusalimschy2014-04-296-27/+27
|
* 'for' loop tries to convert limit to integer when initial value andRoberto Ierusalimschy2014-04-291-2/+23
| | | | step are integers
* template for 'mkstemp' is configurable (via LUA_TMPNAMTEMPLATE)Roberto Ierusalimschy2014-04-291-2/+8
|
* 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
| | | | between 'double' and 'unsigned' (which can be slow and unreliable)
* commentRoberto Ierusalimschy2014-04-171-3/+3
|
* back to larger sizes for 'dumpint/undumpint' (small Lua shouldRoberto Ierusalimschy2014-04-161-13/+39
| | | | be able to dump/undump long-long integers)
* correct integer limits for Windows + small adjustments for shortRoberto Ierusalimschy2014-04-161-3/+14
| | | | option