index
:
lua
master
v5-2
v5.3
v5.4
A mirror of https://github.com/lua/lua
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
ldo.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fixed some bugs around stack reallocation
Roberto Ierusalimschy
2021-02-05
1
-1
/
+1
*
Optimizations for line hook
Roberto Ierusalimschy
2021-01-28
1
-4
/
+5
*
Small improvements in hooks
Roberto Ierusalimschy
2021-01-26
1
-9
/
+8
*
Janitorial work
Roberto Ierusalimschy
2021-01-25
1
-24
/
+31
*
Correct order of return hooks vs. close metamethods
Roberto Ierusalimschy
2021-01-21
1
-9
/
+15
*
Simpler handling of errors when creating tbc variables
Roberto Ierusalimschy
2021-01-19
1
-0
/
+1
*
Allow yields in '__close' metamethods ater errors
Roberto Ierusalimschy
2021-01-18
1
-60
/
+67
*
Allow yields inside '__close' metamethods
Roberto Ierusalimschy
2021-01-13
1
-3
/
+3
*
Handles '__close' errors in coroutines in "coroutine style"
Roberto Ierusalimschy
2020-12-30
1
-20
/
+46
*
Better error messages for calling non-callable objects
Roberto Ierusalimschy
2020-12-29
1
-1
/
+1
*
Reset thread before panicking
Roberto Ierusalimschy
2020-12-28
1
-5
/
+1
*
Cleaner handling of errors in '__close' metamethods
Roberto Ierusalimschy
2020-12-28
1
-12
/
+47
*
Bug when growing a stack
Roberto Ierusalimschy
2020-11-08
1
-1
/
+1
*
Details
Roberto Ierusalimschy
2020-10-30
1
-8
/
+8
*
'recover' finish of 'luaD_pcall' should follow the original
Roberto Ierusalimschy
2020-10-12
1
-3
/
+3
*
No more field 'lua_State.stacksize'
Roberto Ierusalimschy
2020-10-12
1
-10
/
+9
*
Avoid shrinking stacks to often
Roberto Ierusalimschy
2020-10-12
1
-16
/
+38
*
Correct handling of 'luaV_execute' invocations
Roberto Ierusalimschy
2020-10-12
1
-11
/
+14
*
Revision of stackless implementation
Roberto Ierusalimschy
2020-10-12
1
-26
/
+26
*
Back to a stackless implementation
Roberto Ierusalimschy
2020-10-12
1
-20
/
+31
*
Fixed bug: 'luaD_callnoyield' called twice in a row
Roberto Ierusalimschy
2020-07-17
1
-5
/
+4
*
Fixed bug: invalid 'oldpc' when returning to a function
Roberto Ierusalimschy
2020-07-17
1
-3
/
+3
*
Fixed bug: wrong stack limit when entering a coroutine
Roberto Ierusalimschy
2020-07-13
1
-1
/
+1
*
Fixed bugs of stack reallocation x GC
Roberto Ierusalimschy
2020-07-07
1
-6
/
+7
*
Avoid any code before locks in the API
Roberto Ierusalimschy
2020-07-06
1
-1
/
+2
*
Keep minimum size when shrinking a stack
Roberto Ierusalimschy
2020-07-06
1
-3
/
+2
*
Improvements in the handling of signals
Roberto Ierusalimschy
2020-05-22
1
-5
/
+5
*
Clearer distinction between types and tags
Roberto Ierusalimschy
2020-01-31
1
-3
/
+3
*
'__call' metamethod can be any callable object
Roberto Ierusalimschy
2019-06-25
1
-14
/
+14
*
New function 'setCstacklimit'
Roberto Ierusalimschy
2019-06-18
1
-3
/
+4
*
Revamp around 'L->nCcalls' count
Roberto Ierusalimschy
2019-06-12
1
-7
/
+6
*
Details
Roberto Ierusalimschy
2019-05-13
1
-1
/
+1
*
Test for dead coroutine moved to 'lua_resume'
Roberto Ierusalimschy
2019-05-09
1
-0
/
+2
*
Coroutines do not unwind the stack in case of errors
Roberto Ierusalimschy
2019-05-09
1
-3
/
+1
*
LUAI_MAXCCALLS renamed LUAI_MAXCSTACK
Roberto Ierusalimschy
2019-03-25
1
-2
/
+2
*
No more to-be-closed functions
Roberto Ierusalimschy
2019-01-04
1
-0
/
+1
*
Changes in the control of C-stack overflow
Roberto Ierusalimschy
2018-12-27
1
-24
/
+16
*
New functions 'lua_resetthread' and 'coroutine.kill'
Roberto Ierusalimschy
2018-12-13
1
-0
/
+4
*
Details
Roberto Ierusalimschy
2018-12-11
1
-16
/
+13
*
Some bugs with stack reallocation by 'luaF_close'
Roberto Ierusalimschy
2018-11-24
1
-3
/
+6
*
To-be-closed variables in the C API
Roberto Ierusalimschy
2018-10-25
1
-13
/
+19
*
Complete implementation of to-be-closed variables
Roberto Ierusalimschy
2018-10-22
1
-3
/
+6
*
First "complete" implementation of to-be-closed variables
Roberto Ierusalimschy
2018-10-17
1
-7
/
+13
*
Towards "to closed" local variables
Roberto Ierusalimschy
2018-10-08
1
-2
/
+1
*
Added "cost" for the use of C stack by a coroutine invocation.
Roberto Ierusalimschy
2018-09-11
1
-2
/
+8
*
Bug: wrong 'nCcalls' when resuming a coroutine
Roberto Ierusalimschy
2018-07-11
1
-3
/
+6
*
new macros 'likely'/'unlikely' with hints for jump predictions
Roberto Ierusalimschy
2018-05-30
1
-9
/
+9
*
in 'luaD_poscall', there is no need to compute 'firstResult' when 'nres==0'
Roberto Ierusalimschy
2018-05-22
1
-39
/
+30
*
'fTransfer' -> 'ftransfer' / 'nTransfer' -> 'ntransfer'
Roberto Ierusalimschy
2018-03-16
1
-8
/
+8
*
details (avoid using non-C89 '//' comment)
Roberto Ierusalimschy
2018-03-07
1
-2
/
+1
[prev]
[next]