index
:
lua
master
v5-2
v5.3
v5.4
A mirror of https://github.com/lua/lua
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
ldebug.c
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2014-05-09
in 'for' loops, make the limit an integer whenever initial value and
Roberto Ierusalimschy
1
-3
/
+40
2014-05-08
'T.totalmem' accepts 0 for unlimited memory
Roberto Ierusalimschy
1
-3
/
+5
2014-05-08
comments
Roberto Ierusalimschy
1
-5
/
+6
2014-05-08
new function 'lua_isyieldable' (and 'coroutine.isyieldable')
Roberto Ierusalimschy
3
-7
/
+26
2014-05-07
updated several 'fix' fields
Roberto Ierusalimschy
1
-15
/
+13
2014-05-07
marks for releases 5.2.2 and 5.2.3 + correction in last bug's description
Roberto Ierusalimschy
1
-3
/
+13
2014-05-07
better alignments (for 64-bit arquitectures) for structures 'Table' and
Roberto Ierusalimschy
1
-4
/
+4
2014-05-02
'math.fmod' handles integers as integers
Roberto Ierusalimschy
1
-4
/
+14
2014-05-01
'lua_getuservalue' returns type of user value
Roberto Ierusalimschy
2
-4
/
+5
2014-05-01
'lua_strtonum' (and 'luaO_str2num') now return string size, instead of
Roberto Ierusalimschy
7
-41
/
+39
2014-04-30
function 'limittointeger' no needed (now that 'tointeger_aux' handles
Roberto Ierusalimschy
1
-16
/
+2
2014-04-30
debug.numbits replaced by debug.Csize
Roberto Ierusalimschy
1
-11
/
+25
2014-04-30
'luaO_str2d' + 'luaO_str2int' replaced by 'luaO_str2num' plus proper
Roberto Ierusalimschy
1
-22
/
+46
2014-04-30
'luaO_str2d' + 'luaO_str2int' replaced by 'luaO_str2num' (which converts
Roberto Ierusalimschy
4
-44
/
+50
2014-04-29
merge of common parts from 'limittointeger' and 'luaV_tointeger_'
Roberto Ierusalimschy
1
-10
/
+15
2014-04-29
'setnvalue' -> 'setfltvalue' (for consitency with 'fltvalue')
Roberto Ierusalimschy
6
-27
/
+27
2014-04-29
'for' loop tries to convert limit to integer when initial value and
Roberto Ierusalimschy
1
-2
/
+23
2014-04-29
template for 'mkstemp' is configurable (via LUA_TMPNAMTEMPLATE)
Roberto Ierusalimschy
1
-2
/
+8
2014-04-27
using lua_Unsigned (instead of lua_Integer) for bit manipulation
Roberto Ierusalimschy
1
-7
/
+8
2014-04-27
n^-m gives float result (instead of error)
Roberto Ierusalimschy
4
-17
/
+15
2014-04-17
'math.random(n,m)' interval restricted in size, to avoid using conversion
Roberto Ierusalimschy
1
-8
/
+12
2014-04-17
comment
Roberto Ierusalimschy
1
-3
/
+3
2014-04-16
back to larger sizes for 'dumpint/undumpint' (small Lua should
Roberto Ierusalimschy
1
-13
/
+39
2014-04-16
correct integer limits for Windows + small adjustments for short
Roberto Ierusalimschy
1
-3
/
+14
2014-04-15
keep 'luaL_checkversion_' with its signature in version 5.2, for
Roberto Ierusalimschy
2
-5
/
+5
2014-04-15
initial '*' in 'io.read' formats is deprecated
Roberto Ierusalimschy
1
-4
/
+4
2014-04-15
cast_u2s/cast_s2u renamed l_castS2U/l_castU2S to be configurable from
Roberto Ierusalimschy
6
-19
/
+23
2014-04-15
macros cast_integer/cast_unsigned replaced by cast_u2s/cast_s2u, that
Roberto Ierusalimschy
7
-25
/
+33
2014-04-14
instructions in 'runC' sorted alphabetically + new instructions
Roberto Ierusalimschy
1
-192
/
+198
2014-04-14
size of strings in 'string.rep' should be limited by the size of
Roberto Ierusalimschy
1
-3
/
+3
2014-04-14
using predefined limits (instead of computing min/max values for each
Roberto Ierusalimschy
1
-16
/
+28
2014-04-13
maximum size of array part of a table now is restricted not only by
Roberto Ierusalimschy
1
-8
/
+8
2014-04-12
new macro LUA_MAXUNSIGNED + support for 'short' integers (for tests only)
Roberto Ierusalimschy
1
-12
/
+36
2014-04-12
new global macro 'LUA_MAXUNSIGNED'
Roberto Ierusalimschy
3
-10
/
+6
2014-04-12
detail (avoid "casting down" in case lua_Integer is smaller than int)
Roberto Ierusalimschy
1
-2
/
+2
2014-04-11
errors like 1e100 << "2" were giving wrong messages
Roberto Ierusalimschy
1
-3
/
+5
2014-04-11
correct definition for 'MAX_SIZE' (using singed integers as the limit,
Roberto Ierusalimschy
1
-8
/
+9
2014-04-11
new type 'LUAI_UACINT' (result of an 'usual argument conversion' of
Roberto Ierusalimschy
2
-3
/
+7
2014-04-11
'MIN/MAX_INTEGER' replaced by 'LUA_MIN/MAXINTEGER'
Roberto Ierusalimschy
2
-9
/
+6
2014-04-11
details in comments
Roberto Ierusalimschy
1
-5
/
+6
2014-04-10
maximum size for dump of integers is size of lua_Integer (which
Roberto Ierusalimschy
1
-36
/
+17
2014-04-10
pack/unpack functions renamed dump/undump
Roberto Ierusalimschy
1
-14
/
+14
2014-04-10
math.random: use 'random' when available + changes to work correctly
Roberto Ierusalimschy
1
-8
/
+19
2014-04-09
more precision for PI + no more RADIANS_PER_DEGREE +
Roberto Ierusalimschy
1
-7
/
+6
2014-04-09
new definition for 'luai_nummod' (using 'fmod')
Roberto Ierusalimschy
3
-6
/
+13
2014-04-08
using 'volatile' in 'tofloat' to ensure result has the same precision
Roberto Ierusalimschy
1
-4
/
+7
2014-04-04
'GCmemtrav' does not need to track the entire collection, only each
Roberto Ierusalimschy
1
-8
/
+8
2014-04-04
'int' -> 'lua_Integer' in several functions
Roberto Ierusalimschy
1
-11
/
+11
2014-04-03
new constants 'math.maxint'/'math.minint'
Roberto Ierusalimschy
1
-1
/
+5
2014-04-03
new macros LUA_MAXINTEGER/LUA_MININTEGER
Roberto Ierusalimschy
1
-1
/
+6
[prev]
[next]