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
/
lvm.c
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2009-06-17
'lessequal' renamed 'luaV_lessequal' and exported to be used by
Roberto Ierusalimschy
1
-3
/
+3
2009-06-15
new API function 'lua_mainthread'
Roberto Ierusalimschy
3
-3
/
+12
2009-06-15
patch for wrong code generation for some particular boolean expressions
Roberto Ierusalimschy
1
-2
/
+49
2009-06-15
BUG: "(((1 or false) and true) or false)" gives wrong result
Roberto Ierusalimschy
1
-9
/
+15
2009-06-10
'getline' renamed to 'getfuncline' (to avoid problems with POSIX)
Roberto Ierusalimschy
4
-9
/
+9
2009-06-10
new function 'luaK_codek' (detail)
Roberto Ierusalimschy
3
-6
/
+15
2009-06-08
new macro 'condmovestack' instead of 'condhardstacktests'
Roberto Ierusalimschy
4
-13
/
+11
2009-06-04
added "\n" at the end of 'package.config' (so that the string
Roberto Ierusalimschy
1
-2
/
+2
2009-06-01
no more L->base + ci->base only for Lua functions (C functions may use
Roberto Ierusalimschy
7
-80
/
+81
2009-05-27
small bug in 'luaV_concat' (L->top was left incorrect in some cases)
Roberto Ierusalimschy
4
-29
/
+28
2009-05-27
type of 'luai_ctype_' array changed to unsigned (safer for bitwise
Roberto Ierusalimschy
2
-4
/
+6
2009-05-22
details (use ci->base instead of L->base when possible)
Roberto Ierusalimschy
1
-6
/
+6
2009-05-21
errors in finalizers are propagated with code LUA_ERRGCMM (ERRor in
Roberto Ierusalimschy
3
-9
/
+20
2009-05-18
hexadecimal escape sequences in strings + better error messages for
Roberto Ierusalimschy
1
-22
/
+55
2009-05-18
new macro 'zungetc'
Roberto Ierusalimschy
1
-1
/
+4
2009-05-18
new property 'lisupper' (needed to compute values for hexa digits)
Roberto Ierusalimschy
2
-7
/
+9
2009-05-04
'symbexec' merged with 'getobjname' (as only use for symbolic execution
Roberto Ierusalimschy
1
-103
/
+78
2009-05-01
variable renaming: 'lualibs' -> 'loadedlibs'; 'luareqlibs' ->
Roberto Ierusalimschy
1
-7
/
+7
2009-05-01
comments
Roberto Ierusalimschy
1
-3
/
+5
2009-04-30
no more code checking
Roberto Ierusalimschy
5
-131
/
+9
2009-04-29
resize string hash table only when new size is smaller than current one
Roberto Ierusalimschy
1
-3
/
+7
2009-04-29
hash table for strings is rehashed in place
Roberto Ierusalimschy
1
-16
/
+18
2009-04-28
new way to GC stacks: the entire stack must be correct all the times;
Roberto Ierusalimschy
4
-47
/
+63
2009-04-27
malicious zero-length string in binary code may segfault Lua +
Roberto Ierusalimschy
1
-2
/
+30
2009-04-27
unused arguments removed
Roberto Ierusalimschy
1
-9
/
+9
2009-04-26
'exit' changed to 'abort' in case of panic (+ some extra comments)
Roberto Ierusalimschy
1
-9
/
+9
2009-04-17
several small improvements based on 'ci' being fixed now (including
Roberto Ierusalimschy
8
-138
/
+133
2009-04-17
'luaM_freearray' does not need array type as argument
Roberto Ierusalimschy
5
-18
/
+18
2009-04-17
'CallInfo' stack implemented as double-linked list instead of an array
Roberto Ierusalimschy
10
-126
/
+127
2009-04-15
'nresults' is saved in CallInfo from the caller, not the called
Roberto Ierusalimschy
1
-5
/
+4
2009-04-14
new function 'T.makeCfunc' (for later use)
Roberto Ierusalimschy
1
-16
/
+38
2009-04-08
first implementation of yieldable 'pcall'
Roberto Ierusalimschy
5
-30
/
+110
2009-04-03
detail
Roberto Ierusalimschy
1
-2
/
+2
2009-04-02
added comment explaining why the 'feof' test when loading a file
Roberto Ierusalimschy
1
-1
/
+4
2009-03-31
Lua will abort anyway, so 'panic' does not need to.
Roberto Ierusalimschy
1
-2
/
+2
2009-03-30
in 'lua_call', avoid preparing a continuation when thread cannot yield.
Roberto Ierusalimschy
1
-8
/
+8
2009-03-30
avoid making 'lastfree' an invalid pointer
Roberto Ierusalimschy
1
-2
/
+3
2009-03-26
'loadlib(lib, "*")' loads 'lib' with global names exported to all
Roberto Ierusalimschy
1
-13
/
+20
2009-03-26
small bug: EOZ is a valid character to be tested
Roberto Ierusalimschy
2
-12
/
+21
2009-03-26
no more support for old-style varargs
Roberto Ierusalimschy
5
-51
/
+10
2009-03-23
'context' added to suspendable calls
Roberto Ierusalimschy
6
-24
/
+39
2009-03-17
'math.random' uses lua_Number to manage its arguments (there is no
Roberto Ierusalimschy
1
-8
/
+8
2009-03-16
missing argument to 'assert' raises "assertion failed" error
Roberto Ierusalimschy
1
-2
/
+1
2009-03-13
new optional argument to 'load', to control allowed modes (binary or
Roberto Ierusalimschy
1
-15
/
+41
2009-03-11
ctype 'lalpha' includes '_' (as '_' behaves as a letter from the
Roberto Ierusalimschy
3
-9
/
+11
2009-03-10
added macro 'lisxdigit' (just in case :)
Roberto Ierusalimschy
2
-6
/
+8
2009-03-10
yielding across lua_call (first version)
Roberto Ierusalimschy
13
-110
/
+169
2009-03-09
better notes about some opcodes (comments only)
Roberto Ierusalimschy
1
-11
/
+16
2009-03-04
initial separation, in CallInfo, of what is relevant only to Lua
Roberto Ierusalimschy
4
-11
/
+15
2009-03-03
new states have a reasonable panic function +
Roberto Ierusalimschy
1
-4
/
+18
[next]