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
2011-06-27
use standard "underscore + uppercases" for reserved keys in the registry
Roberto Ierusalimschy
1
-2
/
+2
2011-06-27
comments
Roberto Ierusalimschy
1
-1
/
+2
2011-06-27
avoid "magic constant" 32 (the difference from 'A' to 'a')
Roberto Ierusalimschy
1
-2
/
+2
2011-06-27
back to "one-label-per-block"
Roberto Ierusalimschy
1
-20
/
+13
2011-06-24
useless assignments removed (macros already do the assignment)
Roberto Ierusalimschy
1
-4
/
+4
2011-06-24
resort to standard C ctype for non-ASCII systems + 'ltoupper' replaced
Roberto Ierusalimschy
1
-6
/
+41
2011-06-24
resort to standard C ctype for non-ASCII systems
Roberto Ierusalimschy
1
-3
/
+7
2011-06-24
using 'tolower' instead of 'toupper' (slightly simpler to implement)
Roberto Ierusalimschy
1
-2
/
+2
2011-06-23
macro 'ltoupper' instead of 'lisupper' (more usefull for Lua)
Roberto Ierusalimschy
3
-24
/
+33
2011-06-23
label syntax changed to '::label::'
Roberto Ierusalimschy
1
-2
/
+7
2011-06-21
change in the representation of file handles
Roberto Ierusalimschy
1
-139
/
+128
2011-06-20
label syntax changed to '::label::'
Roberto Ierusalimschy
2
-8
/
+8
2011-06-20
comment
Roberto Ierusalimschy
1
-2
/
+2
2011-06-20
added cast to void to calls to 'setlocale' (to easy redefining it as
Roberto Ierusalimschy
1
-3
/
+3
2011-06-20
typo in message
Roberto Ierusalimschy
1
-2
/
+2
2011-06-18
parser must work with C locale, but external locale must be preserved
Roberto Ierusalimschy
1
-4
/
+23
2011-06-16
label names must be unique inside a function
Roberto Ierusalimschy
1
-12
/
+27
2011-06-16
correct length for LUA_COPYRIGHT (without trailing '\0')
Roberto Ierusalimschy
1
-2
/
+2
2011-06-16
avoid warning about -unsigned value
Roberto Ierusalimschy
2
-4
/
+4
2011-06-16
detail (missing cast to unsigned char when converting char to int)
Roberto Ierusalimschy
1
-2
/
+2
2011-06-16
avoid conversion from 'const char*' to 'void *' (warning about 'const')
Roberto Ierusalimschy
1
-6
/
+15
2011-06-16
'os.execute' (and similars) should return 'exit' and code in case
Roberto Ierusalimschy
1
-7
/
+6
2011-06-16
declarations should be present only when implementations are
Roberto Ierusalimschy
1
-1
/
+4
2011-06-15
just in case, avoid side effects in 'ctype' macros
Roberto Ierusalimschy
1
-15
/
+22
2011-06-13
configuration for NaN trick big-endian + macro 'luai_checknum' to
Roberto Ierusalimschy
3
-7
/
+50
2011-06-09
avoid warnings with -Wstrict-overflow
Roberto Ierusalimschy
2
-8
/
+10
2011-06-09
better way to test overflows with string indices
Roberto Ierusalimschy
1
-2
/
+2
2011-06-09
macro 'NNMARK' (mark for non-number values using the NaN trick)
Roberto Ierusalimschy
1
-4
/
+6
2011-06-07
first version with 'NANTRICK' (packing all Lua values inside a 'double')
Roberto Ierusalimschy
1
-15
/
+103
2011-06-02
stricter control (using tag variants) over closure kinds (Lua x C)
Roberto Ierusalimschy
10
-153
/
+176
2011-05-31
yet another macro ('num_')
Roberto Ierusalimschy
1
-4
/
+5
2011-05-31
more uniform names for 'equalobj'-related functions
Roberto Ierusalimschy
5
-15
/
+15
2011-05-31
no need for two different implementations for equality (one raw and
Roberto Ierusalimschy
7
-36
/
+27
2011-05-30
code is simpler without 'goto' here
Roberto Ierusalimschy
1
-9
/
+3
2011-05-26
yet another macro abstracting TValue representation
Roberto Ierusalimschy
1
-12
/
+13
2011-05-26
new macro 'luai_writeline' to print newlines (and flush 'stdout')
Roberto Ierusalimschy
3
-9
/
+11
2011-05-25
avoid use of 'ifdef/ifndef'; use 'defined' instead (simpler and
Roberto Ierusalimschy
2
-4
/
+4
2011-05-17
changes by lhf (better control of chars x bytes)
Roberto Ierusalimschy
3
-38
/
+50
2011-05-06
details
Roberto Ierusalimschy
1
-6
/
+8
2011-05-05
new macro 'lua_longassert' that is equivalent to an assertion without
Roberto Ierusalimschy
2
-5
/
+7
2011-05-05
macro 'checkconsistency' moved to this file, as it is used only
Roberto Ierusalimschy
1
-1
/
+5
2011-05-05
break long assertion in two shorter ones
Roberto Ierusalimschy
1
-2
/
+3
2011-05-05
avoid using expression as argument to unsafe macro 'l_isfalse'
Roberto Ierusalimschy
1
-2
/
+3
2011-05-05
new macros abstracting TValue representation (to easy change to
Roberto Ierusalimschy
1
-43
/
+48
2011-05-04
detail in assertion
Roberto Ierusalimschy
1
-2
/
+2
2011-05-03
more complete (and hopefuly more correct) handling of 'sizeof(char)'
Roberto Ierusalimschy
6
-24
/
+29
2011-05-03
removed TOKEN_LEN (useless)
Roberto Ierusalimschy
2
-5
/
+2
2011-05-02
comment
Roberto Ierusalimschy
2
-4
/
+4
2011-04-29
MacOS 'strtod' handles hexa formats too
Roberto Ierusalimschy
1
-1
/
+2
2011-04-28
bug in OP_SELF when method name goes to a register
Roberto Ierusalimschy
2
-19
/
+39
[next]