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
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2008-06-26
GC called after errors now are called after showing error message (to
Roberto Ierusalimschy
1
-3
/
+3
2008-06-25
added a comment about warnings for __attribute__(visibility) in some
Roberto Ierusalimschy
1
-2
/
+6
2008-06-23
bug: when closing the state, 'luaC_separateudata' might mark
Roberto Ierusalimschy
1
-5
/
+3
2008-06-23
code reorganization (only changed comments and order of functions)
Roberto Ierusalimschy
1
-154
/
+203
2008-06-23
outdated comment
Roberto Ierusalimschy
1
-2
/
+2
2008-06-23
"test trick" seems more useful with pointers instead of integers
Roberto Ierusalimschy
2
-5
/
+5
2008-06-13
when error is 'bad self' original message probably makes no sense, so
Roberto Ierusalimschy
1
-3
/
+2
2008-06-13
removed static variable lua_state (not used)
Roberto Ierusalimschy
1
-4
/
+1
2008-06-13
by default, 'os.exit' closes current state
Roberto Ierusalimschy
1
-2
/
+6
2008-06-13
'luaL_gsub' moved into 'testC' (all auxlib should be tested through 'testC')
Roberto Ierusalimschy
1
-23
/
+7
2008-06-12
'luaL_testudata' does not leave garbage on the stack in case of failure
Roberto Ierusalimschy
1
-6
/
+6
2008-06-12
'posrelat' avoids problems with -(-2^31)
Roberto Ierusalimschy
1
-2
/
+2
2008-06-12
extra options in 'testC' for newmetatable and testudata
Roberto Ierusalimschy
1
-1
/
+8
2008-05-09
updated years in some comments/strings
Roberto Ierusalimschy
1
-3
/
+3
2008-05-08
patch for "blow stack" bug
Roberto Ierusalimschy
1
-2
/
+30
2008-05-08
added structure for local-variable information to allow extra
Roberto Ierusalimschy
2
-7
/
+14
2008-04-14
'string.find' cannot find things after subject's end
Roberto Ierusalimschy
1
-2
/
+5
2008-04-07
make default GC behavior a little more agressive
Roberto Ierusalimschy
1
-2
/
+2
2008-04-07
two bugs: invalid boolean values in constant table + too deep recursion
Roberto Ierusalimschy
1
-3
/
+6
2008-04-07
'table.sort' detects invalid order function before calling it
Roberto Ierusalimschy
1
-3
/
+3
2008-04-07
avoid constant folding for -0 (to avoid it colapsing to 0)
Roberto Ierusalimschy
1
-3
/
+3
2008-04-04
patches for some bugs
Roberto Ierusalimschy
1
-7
/
+94
2008-04-02
bugs: precheck must use check (instead of assert) and ensures that
Roberto Ierusalimschy
1
-6
/
+5
2008-04-02
SETLIST extra argument now is an "instruction" (OP_EXTRAARG)
Roberto Ierusalimschy
6
-36
/
+68
2008-04-02
corrected error message ("too many constants" -> "too many functions")
Roberto Ierusalimschy
1
-2
/
+2
2008-04-01
several bugs related to precompiled code
Roberto Ierusalimschy
1
-0
/
+53
2008-02-25
'coroutine.running' should work for the main thread too
Roberto Ierusalimschy
1
-4
/
+4
2008-02-19
userdata with finalizers are kept in a separated list
Roberto Ierusalimschy
7
-147
/
+187
2008-02-19
proxies must be created with a __gc field in their metatables to work
Roberto Ierusalimschy
1
-2
/
+4
2008-02-15
turn off optimizations when testing
Roberto Ierusalimschy
1
-2
/
+2
2008-02-14
bugs: lua_checkstack may have arithmetic overflow for large 'size' +
Roberto Ierusalimschy
1
-0
/
+61
2008-02-14
'table.concat' may get confused with too large limits
Roberto Ierusalimschy
1
-9
/
+15
2008-02-14
bug: unpack with maximum indices may crash due to arithmetic overflow
Roberto Ierusalimschy
1
-4
/
+6
2008-02-14
bug: lua_checkstack may have arithmetic overflow for large 'size'
Roberto Ierusalimschy
1
-5
/
+4
2008-02-12
micro-optimization: avoid one API call in 'read_chars'
Roberto Ierusalimschy
1
-10
/
+11
2008-02-12
remove of useless test in 'read_chars' (if n == 0 then the resulting
Roberto Ierusalimschy
1
-2
/
+2
2008-02-12
corrected name of 'Patrick Donnelly'
Roberto Ierusalimschy
1
-1
/
+1
2008-02-12
added assertions checking maximum number of upvalues
Roberto Ierusalimschy
1
-2
/
+4
2008-02-11
LUAI_MAXCSTACK must be smaller than -LUA_REGISTRYINDEX +
Roberto Ierusalimschy
1
-1
/
+54
2008-02-11
maximum C stack should reserve some values for pseudo-indices
Roberto Ierusalimschy
1
-7
/
+15
2008-02-11
bug: pseudo-indices should be linked to maximum C stack size
Roberto Ierusalimschy
1
-4
/
+4
2008-02-11
bug: auxresume should reserve stack space for boolean result
Roberto Ierusalimschy
1
-2
/
+2
2008-02-11
in 'testC', booleans should be represented by booean values
Roberto Ierusalimschy
1
-11
/
+11
2008-02-11
new instructions 'newtable' and 'checkstack' in 'testC'
Roberto Ierusalimschy
1
-1
/
+8
2008-02-11
more options for 'kinds' of Garbage Collection + more agressive
Roberto Ierusalimschy
1
-29
/
+26
2008-02-11
more options for 'kinds' of Garbage Collection
Roberto Ierusalimschy
2
-4
/
+9
2008-01-30
'ceillog2' now is exported (other modules may need it)
Roberto Ierusalimschy
3
-24
/
+25
2008-01-25
comment (LUA_GLOBALSINDEX does not need write barrier in lua_replace)
Roberto Ierusalimschy
1
-1
/
+2
2008-01-21
debug.sethook/gethook may overflow the thread's stack
Roberto Ierusalimschy
1
-0
/
+46
2008-01-21
bug: debug.sethook/gethook may overflow thread's stack
Roberto Ierusalimschy
1
-12
/
+10
[next]