aboutsummaryrefslogtreecommitdiff
path: root/ldo.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Error object cannot be nilRoberto Ierusalimschy2025-02-281-3/+7
* '__close' gets no error object if there is no errorRoberto Ierusalimschy2025-02-281-4/+0
* Added macro LUAI_STRICT_ADDRESSRoberto Ierusalimschy2025-02-181-10/+18
* Main thread is a regular field of global_StateRoberto Ierusalimschy2025-01-311-4/+5
* New type 'TStatus' for thread status/error codesRoberto Ierusalimschy2025-01-301-22/+23
* CallInfo bit CIST_CLSRET broken in twoRoberto Ierusalimschy2025-01-281-5/+7
* fixing 'lua_status' in panic.Roberto Ierusalimschy2025-01-161-0/+1
* DetailsRoberto Ierusalimschy2025-01-161-2/+2
* Improvements in the manualRoberto Ierusalimschy2025-01-101-1/+1
* Detail in 'luaD_inctop'Roberto Ierusalimschy2024-12-171-1/+1
* Change to macro 'LUAI_TRY'Roberto Ierusalimschy2024-11-251-8/+6
* Counter for length of chains of __call metamethodsRoberto Ierusalimschy2024-11-161-14/+27
* More integration of 'nresults' into 'callstatus'Roberto Ierusalimschy2024-11-151-12/+13
* Added option for direct correction of stack pointersRoberto Ierusalimschy2024-08-221-10/+44
* Struct 'transferinfo' moved to "lua_State"Roberto Ierusalimschy2024-07-301-9/+5
* Added gcc option '-Wconversion'Roberto Ierusalimschy2024-07-271-5/+5
* 'nresults' moved into 'callstatus'Roberto Ierusalimschy2024-07-211-34/+38
* Using CIST_CLSRET instead of trick with 'nresults'Roberto Ierusalimschy2024-07-191-9/+11
* Maximum stack size may not fit in unsigned shortRoberto Ierusalimschy2024-07-161-14/+29
* Cleaning of llimits.hRoberto Ierusalimschy2024-06-201-0/+13
* API asserts for illegal pops of to-be-closed variablesRoberto Ierusalimschy2024-03-111-2/+3
* Merge branch 'master' into nextversionRoberto Ierusalimschy2024-01-251-0/+4
|\
| * Bug: Yielding in a hook stops in the wrong instructionRoberto Ierusalimschy2024-01-111-0/+4
* | Added suport for Fixed BuffersRoberto Ierusalimschy2023-09-051-4/+9
* | Field 'Proto.is_vararg' uses only one bitRoberto Ierusalimschy2023-08-301-1/+1
* | Merge branch 'master' into nextversionRoberto Ierusalimschy2023-06-221-12/+8
|\|
| * Several functions turned 'static'Roberto Ierusalimschy2023-05-221-3/+3
| * Corrected support for 16-bit systemsRoberto Ierusalimschy2023-03-091-9/+5
* | Removed GC checks from function callsRoberto Ierusalimschy2022-11-241-4/+4
|/
* Stack reallocation done with a single reallocRoberto Ierusalimschy2022-10-311-22/+46
* Stack indices changed to union'sRoberto Ierusalimschy2022-10-291-63/+62
* More checks and documentation for uses of EXTRA_STACKRoberto Ierusalimschy2022-05-261-1/+6
* Bug: 'lua_settop' may use an invalid pointer to stackRoberto Ierusalimschy2022-05-251-6/+6
* 'lua_checkstack' doesn't need to check stack overflowRoberto Ierusalimschy2022-05-231-8/+7
* DetailsRoberto Ierusalimschy2022-04-011-2/+6
* Bug: finalizers can be called with an invalid stackRoberto Ierusalimschy2021-12-151-1/+1
* Corrected bug in 'luaD_tryfuncTM'Roberto Ierusalimschy2021-11-161-1/+2
* Bug: C stack overflow with coroutinesRoberto Ierusalimschy2021-11-031-2/+4
* More uniform implementation for tail callsRoberto Ierusalimschy2021-10-291-29/+52
* Removed goto's in 'luaD_precall'Roberto Ierusalimschy2021-10-181-24/+27
* Using 'inline' in some functionsRoberto Ierusalimschy2021-09-151-4/+4
* 'luaD_tryfuncTM' checks stack space by itselfRoberto Ierusalimschy2021-08-181-3/+4
* Undo simplification of tail calls (commit 901d760)Roberto Ierusalimschy2021-08-181-34/+32
* Simplification in the parameters of 'luaD_precall'Roberto Ierusalimschy2021-06-301-10/+9
* C functions can be tail called, tooRoberto Ierusalimschy2021-06-141-18/+25
* Simpler implementation for tail callsRoberto Ierusalimschy2021-06-111-24/+24
* Stack reallocation done in two phasesRoberto Ierusalimschy2021-02-271-7/+21
* Broadening the use of branch hintsRoberto Ierusalimschy2021-02-241-12/+12
* '__close' methods can yield in the return of a C functionRoberto Ierusalimschy2021-02-121-29/+43
* New implementation for to-be-closed variablesRoberto Ierusalimschy2021-02-091-1/+1