summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* removed deprecated functions getn-foreach-foreachiv5.2-alphaRoberto Ierusalimschy2010-11-231-53/+7
|
* 'test' -> 'btest'Roberto Ierusalimschy2010-11-221-2/+2
|
* conventional names for bitwise operatorsRoberto Ierusalimschy2010-11-221-13/+13
|
* 'gfind' was deprecated in 5.1Roberto Ierusalimschy2010-11-191-8/+1
|
* keep 'seminfo->ts' even for reserved words, just in caseRoberto Ierusalimschy2010-11-181-2/+2
| | | | (some lhf's tools need this)
* avoid "unreacheable code" warningsRoberto Ierusalimschy2010-11-181-4/+5
|
* small bug: 'find' did not detect magic chars after a \0 in a patternRoberto Ierusalimschy2010-11-161-3/+15
| | | | and did a plain search in those cases
* comment about compatibility-only functionsRoberto Ierusalimschy2010-11-161-3/+5
|
* 'getuservalue' accepts any type of argumentRoberto Ierusalimschy2010-11-161-11/+8
|
* no more compatibility with (veryyyy) old ref systemRoberto Ierusalimschy2010-11-162-23/+9
|
* -DLUA_COMPAT_ALL is the defaultRoberto Ierusalimschy2010-11-161-1/+1
|
* 'debug' library is loaded by defaultRoberto Ierusalimschy2010-11-122-18/+7
|
* 'l_tvar' renamed to 'l_tg'Roberto Ierusalimschy2010-11-121-32/+31
|
* new macro 'l_tvar' to easy the use of mathlib with other floatingRoberto Ierusalimschy2010-11-111-28/+39
| | | | types (float and long double)
* allows larger array parts in tables (no need to restrict it to 2^26)Roberto Ierusalimschy2010-11-111-3/+3
|
* no more sentinel to detect loops in module dependencies;Roberto Ierusalimschy2010-11-101-12/+3
| | | | usual message for infinite recursion is good enough.
* better error message when light userdata is used instead of aRoberto Ierusalimschy2010-11-101-3/+10
| | | | full userdata
* new function 'luaL_setmetatable'Roberto Ierusalimschy2010-11-104-8/+13
|
* 'luaL_typeerror' deprecatedRoberto Ierusalimschy2010-11-103-10/+6
|
* when reading blocks with given size, try to read whole blockRoberto Ierusalimschy2010-11-091-17/+24
| | | | at once
* detail (message)Roberto Ierusalimschy2010-11-091-2/+2
|
* added support for conditional use of %Lg when using long doubleRoberto Ierusalimschy2010-11-081-8/+25
|
* when reading large files, double buffer size at each iterationRoberto Ierusalimschy2010-11-081-4/+10
|
* code should not use "defined" types, but "typedef"s types when theyRoberto Ierusalimschy2010-11-081-10/+11
| | | | | | are available (i.e., after including lua.h) + small changes to make conversions more portable across diferent types for lua_Number (long double) and lua_Unsigned (long long unsigned)
* correction to allow lua_Unsigned larger than usigned intRoberto Ierusalimschy2010-11-081-2/+2
|
* code for conversion macros moved from luaconf to llimits + 'uint'Roberto Ierusalimschy2010-11-033-103/+101
| | | | renamed to 'unsigned' in those macros
* comment typosRoberto Ierusalimschy2010-10-294-9/+9
|
* bug: by-one error when creating short source names (luaO_chunkid)Roberto Ierusalimschy2010-10-291-2/+2
|
* detail (ununsed parameter)Roberto Ierusalimschy2010-10-291-3/+3
|
* 'luaL_checkversion' also checks convertions (number to integer types)Roberto Ierusalimschy2010-10-291-1/+8
|
* added another option for ieeeendianRoberto Ierusalimschy2010-10-291-2/+2
|
* comment typoRoberto Ierusalimschy2010-10-291-2/+2
|
* more robust implementation for 'luaO_str2d'Roberto Ierusalimschy2010-10-281-6/+11
|
* correct handling of negative numbers in non-10 bases by 'tonumber'Roberto Ierusalimschy2010-10-281-2/+5
| | | | (e.g., tonumber(-34, 8))
* added more platforms for ieeeendianess + small commentsRoberto Ierusalimschy2010-10-281-4/+7
|
* stricter control over number of bits in each operationRoberto Ierusalimschy2010-10-281-12/+20
|
* added check for architectures with known endianess (only i386 now)Roberto Ierusalimschy2010-10-271-1/+5
|
* new names for bit functions (mimicking assembler)Roberto Ierusalimschy2010-10-271-11/+11
|
* better organization for coercion functions between lua_Number andRoberto Ierusalimschy2010-10-262-30/+70
| | | | integer types + IEEE trick to be used in most platforms, by default
* new type lua_Unsigned and corresponding projection/injection functionsRoberto Ierusalimschy2010-10-256-22/+66
|
* corrected warnings from different compilers (mostly casts and smallRoberto Ierusalimschy2010-10-259-22/+21
| | | | details)
* version from lhfRoberto Ierusalimschy2010-10-252-35/+20
|
* bitlib renamed to 'bit32' + new function for arithmetic shiftRoberto Ierusalimschy2010-10-253-11/+26
|
* POS_A replaced by POS_Ax (which is more "precise")Roberto Ierusalimschy2010-10-251-2/+2
|
* commentRoberto Ierusalimschy2010-10-251-2/+2
|
* better error message for 'lua -e -i'Roberto Ierusalimschy2010-10-181-5/+6
|
* details in opcode listRoberto Ierusalimschy2010-10-132-6/+7
|
* 'proto->source' may be NULL (if dump strips debug information)Roberto Ierusalimschy2010-10-111-5/+11
|
* 'os.exit' acceps booleans as status (for EXIT_SUCESS and EXIT_FAILURE)Roberto Ierusalimschy2010-10-051-2/+6
|
* 'luaL_loadlib' accepts Utf8 BOM in the beginning of filesRoberto Ierusalimschy2010-10-011-13/+26
|