summaryrefslogtreecommitdiff
path: root/ltable.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 'setkey' -> 'setnodekey' (to avoid conflicts with POSIX)v5.3.0Roberto Ierusalimschy2015-01-051-2/+2
|
* added include for 'lprefix.h', for stuff that must be added beforeRoberto Ierusalimschy2014-11-021-4/+6
| | | | any other header file
* `name' in comments changed to 'name'Roberto Ierusalimschy2014-10-251-18/+18
|
* 'lua_numtointeger' -> 'lua_numbertointeger'Roberto Ierusalimschy2014-10-241-2/+2
|
* macros 'LUA_QL'/'LUA_QL' deprecatedRoberto Ierusalimschy2014-10-171-2/+2
|
* size for array part of a table ('sizearray') changed from 'int' toRoberto Ierusalimschy2014-09-041-59/+75
| | | | 'unsigned int', which allows twice as many elements in the array part
* details in commentsRoberto Ierusalimschy2014-08-011-2/+2
|
* simpler definition for 'setobj' (trust the compiler for the assignment)Roberto Ierusalimschy2014-07-291-4/+5
|
* type 'TString' refers directly to the structure inside the unionRoberto Ierusalimschy2014-07-181-11/+11
| | | | (union used only for size purposes)
* 'IntPoint' -> 'point2int' + ensure that casted value fits inRoberto Ierusalimschy2014-06-261-2/+2
| | | | destination type
* use appropriate macros to convert GCObject to specific typesRoberto Ierusalimschy2014-06-181-2/+3
|
* function 'luaV_numtointeger' changed to a global macroRoberto Ierusalimschy2014-05-261-8/+13
| | | | 'lua_numtointeger' (tricky, small, and useful in several places)
* cast_u2s/cast_s2u renamed l_castS2U/l_castU2S to be configurable fromRoberto Ierusalimschy2014-04-151-2/+2
| | | | outside (mostly for testing)
* macros cast_integer/cast_unsigned replaced by cast_u2s/cast_s2u, thatRoberto Ierusalimschy2014-04-151-2/+2
| | | | should be used only between lua_Integer and lua_Unsigned
* maximum size of array part of a table now is restricted not only byRoberto Ierusalimschy2014-04-131-8/+8
| | | | the size of an 'int', but also by the size of a 'lua_Integer'
* some details to avoid warningsRoberto Ierusalimschy2014-04-011-5/+5
|
* no more 'L' in macros "luai_num*" (several places that use those macrosRoberto Ierusalimschy2014-01-271-2/+2
| | | | cannot throw errors anyway...)
* 'luaC_newobj' does not handle special cases; only special caseRoberto Ierusalimschy2013-09-111-2/+2
| | | | now is threads, which do not use 'luaC_newobj' anymore.
* details (a few casts moved from macro invocation to macro definition)Roberto Ierusalimschy2013-08-291-2/+2
|
* tables and userdata all go to local list, tooRoberto Ierusalimschy2013-08-281-2/+2
|
* LOCALBLACK changed to LOCALMARK and used also to control whether objectRoberto Ierusalimschy2013-08-271-2/+2
| | | | | is in 'localgc' list + luaC_newobj by default puts object in 'localgc' list
* 'next' field for tables changed from pointer to integer (for betterRoberto Ierusalimschy2013-08-181-24/+44
| | | | alignment on 64-bit machines)
* new macro 'l_floor' (allows 'floorf' even when other math operationsRoberto Ierusalimschy2013-06-201-2/+2
| | | | do not have an 'f' variant)
* 'luai_hashnum' "inlined" into 'hashfloat'Roberto Ierusalimschy2013-05-291-5/+8
|
* "legal" way to convert a float to an integer in CRoberto Ierusalimschy2013-05-271-3/+9
|
* new function 'tointeger' + 'luaV_arith' replaced by 'luaT_trybinTM'Roberto Ierusalimschy2013-04-291-14/+3
|
* "integer" keys in tables are now lua_Integer, not 'int'.Roberto Ierusalimschy2013-04-261-15/+19
|
* first steps in the support of integers: basic representation + table ↵Roberto Ierusalimschy2013-04-151-24/+39
| | | | indexing + basic API ops (tointeger/pushinteger) + equality + a few extra stuff
* detailRoberto Ierusalimschy2012-09-111-3/+3
|
* spaces -> tabs in #definesRoberto Ierusalimschy2012-05-231-3/+3
|
* random seed used in the hash of all strings to avoid intentionalRoberto Ierusalimschy2012-02-011-2/+2
| | | | collisions
* first implementation of long stringsRoberto Ierusalimschy2012-01-251-6/+15
|
* 'eqstr' -> 'luaS_eqstr'Roberto Ierusalimschy2012-01-231-2/+2
|
* avoid 'return' "to avoid warnings"Roberto Ierusalimschy2011-11-301-5/+5
|
* avoid some warnings about converting 32-bit shifts into 64-bit resultsRoberto Ierusalimschy2011-11-281-3/+3
|
* lint (unused definition)Roberto Ierusalimschy2011-09-301-8/+1
|
* dead objects are not collectable.Roberto Ierusalimschy2011-09-241-2/+2
|
* cannot compute 'mainposition' before checking whether key is nilRoberto Ierusalimschy2011-09-151-2/+3
|
* bug: __newindex metamethod may not work if metatable is its ownRoberto Ierusalimschy2011-08-171-12/+17
| | | | | metatable + luaV_settable does not create entry when there is a metamethod (and therefore entry is useless)
* no more 'luaH_setstr (used only once) + 'luaH_setint' receives valueRoberto Ierusalimschy2011-08-091-17/+7
| | | | to be set.
* avoid warning about -unsigned valueRoberto Ierusalimschy2011-06-161-2/+2
|
* avoid warnings with -Wstrict-overflowRoberto Ierusalimschy2011-06-091-3/+4
|
* stricter control (using tag variants) over closure kinds (Lua x C)Roberto Ierusalimschy2011-06-021-2/+2
|
* more uniform names for 'equalobj'-related functionsRoberto Ierusalimschy2011-05-311-3/+3
|
* no need for two different implementations for equality (one raw andRoberto Ierusalimschy2011-05-311-3/+4
| | | | one with metamethods)
* commentRoberto Ierusalimschy2011-05-021-2/+2
|
* detail (should use macro 'ttisdeadkey')Roberto Ierusalimschy2011-04-051-2/+2
|
* allows larger array parts in tables (no need to restrict it to 2^26)Roberto Ierusalimschy2010-11-111-3/+3
|
* macro 'key2tal' replaced by 'gkey' (as both were equal)Roberto Ierusalimschy2010-06-251-7/+7
|
* better names for barrier macrosRoberto Ierusalimschy2010-06-041-2/+2
|