summaryrefslogtreecommitdiff
path: root/lua.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Updated release number and copyright yearRoberto Ierusalimschy2020-07-141-4/+3
|
* Lua 5.3.5 ported to gitv5.3.5Roberto Ierusalimschy2018-12-171-4/+4
| | | | | | | This is the first commit for the branch Lua 5.3. All source files were copied from the official distribution of 5.3.5 in the Lua site. The test files are the same of 5.3.4. The manual came from the previous RCS repository, revision 1.167.1.2.
* release 5.3.4 (year 2017)Roberto Ierusalimschy2016-12-221-4/+4
|
* 'lua_pushglobaltable' returns 'void'v5.3.3Roberto Ierusalimschy2016-05-301-2/+2
|
* new release number + new yearRoberto Ierusalimschy2016-01-131-4/+4
|
* new release number (5.3.2)Roberto Ierusalimschy2015-11-131-2/+2
|
* new release number (5.3.1)Roberto Ierusalimschy2015-06-031-2/+2
|
* 'lua_pushliteral' implemented with 'lua_pushstring' (to takeRoberto Ierusalimschy2015-03-101-3/+2
| | | | advantage of the cache)
* removed macro LUAI_FIRSTPSEUDOIDX (that stuff does not needRoberto Ierusalimschy2015-01-131-3/+5
| | | | to be configurable)
* new year (2015)Roberto Ierusalimschy2014-12-261-3/+3
|
* avoid octal numeralsRoberto Ierusalimschy2014-12-081-2/+2
|
* bug: lua_tounsignedx must cast to lua_Unsigned (of course...)Roberto Ierusalimschy2014-11-291-2/+2
|
* next release won't be betaRoberto Ierusalimschy2014-11-281-2/+2
|
* details (matching parameter names with manual)Roberto Ierusalimschy2014-11-121-10/+11
|
* detail (line break)Roberto Ierusalimschy2014-11-081-3/+2
|
* 'lua_stringtonum' -> 'lua_stringtonumber'Roberto Ierusalimschy2014-10-171-2/+2
|
* 'lua_strtonum' -> 'lua_stringtonum'Roberto Ierusalimschy2014-10-151-2/+2
|
* 'lua_Kcontext' -> 'lua_KContext'Roberto Ierusalimschy2014-10-071-6/+6
|
* alpha -> betaRoberto Ierusalimschy2014-10-041-2/+2
|
* deprecated "cast macros" ('luaL_checkint', 'luaL_optint', etc.)Roberto Ierusalimschy2014-10-011-2/+2
|
* new functions 'lua_geti/lua_seti' (non raw)Roberto Ierusalimschy2014-08-211-1/+3
|
* 'lua_Ctx' -> 'lua_Kcontext'Roberto Ierusalimschy2014-08-011-7/+7
|
* release changed to (5.3) alphav5.3-alphaRoberto Ierusalimschy2014-07-311-2/+2
|
* better support for extra user space associated with a Lua stateRoberto Ierusalimschy2014-07-241-1/+3
|
* 'lua_replace' implemented as a macro using 'lua_copy'Roberto Ierusalimschy2014-07-221-2/+3
|
* new type 'lua_Ctx' for continuation-function contexts (to allow typeRoberto Ierusalimschy2014-07-171-28/+32
| | | | to be configurable)
* unsigned-manipulation functions (lua_puhsunsigned, lua_tounsigned, etc.)Roberto Ierusalimschy2014-06-261-5/+18
| | | | deprecated
* new type lua_KFunction + no more 'lua_getctx'Roberto Ierusalimschy2014-06-101-6/+12
|
* new API function 'lua_rotate'Roberto Ierusalimschy2014-05-131-6/+9
|
* new function 'lua_isyieldable' (and 'coroutine.isyieldable')Roberto Ierusalimschy2014-05-081-1/+3
|
* 'lua_getuservalue' returns type of user valueRoberto Ierusalimschy2014-05-011-2/+2
|
* 'lua_strtonum' (and 'luaO_str2num') now return string size, instead ofRoberto Ierusalimschy2014-05-011-2/+2
| | | | receiving it
* copyright year -> 2014Roberto Ierusalimschy2014-03-201-3/+3
|
* lua_gettable and similars return type of gotten valueRoberto Ierusalimschy2014-03-121-7/+8
|
* added 'strip' parameter to lua_dump/string.dumpRoberto Ierusalimschy2014-02-251-2/+2
|
* no more local collectionRoberto Ierusalimschy2014-02-131-2/+1
|
* first implementation of '<<', '>>', and '~' (bitwise not)Roberto Ierusalimschy2013-12-301-2/+5
|
* first implementation of bitwise operators '&' (band), '|' (bor),Roberto Ierusalimschy2013-12-181-2/+5
| | | | and '~' (bxor)
* new order for binary operations (grouping them by type of result)Roberto Ierusalimschy2013-12-161-6/+6
|
* 'lua_sethook' returns voidRoberto Ierusalimschy2013-12-091-2/+2
|
* GC local pause configurableRoberto Ierusalimschy2013-09-131-2/+3
|
* no more generational collection !!!Roberto Ierusalimschy2013-08-051-5/+2
|
* 'lua_cvtonum' -> 'lua_strtonum'; converts only strings to numbersRoberto Ierusalimschy2013-07-051-2/+2
|
* new version (5.3)Roberto Ierusalimschy2013-06-071-4/+4
|
* details ('Type* id' -> 'Type *id')Roberto Ierusalimschy2013-06-071-2/+2
|
* new API function 'lua_cvtonum' to convert a value (number or string)Roberto Ierusalimschy2013-05-141-1/+3
| | | | | to a number, following the rules of the language to create integers or floats
* "integer" keys in tables are now lua_Integer, not 'int'.Roberto Ierusalimschy2013-04-261-3/+3
|
* new operation '//' (integer division)Roberto Ierusalimschy2013-04-261-4/+5
|
* new API function 'lua_isinteger'Roberto Ierusalimschy2013-04-251-1/+2
|
* export 'lua_ident' to avoid it being removed by C++ linkerRoberto Ierusalimschy2013-03-151-1/+6
|