241
I Use This!
Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 2 days ago.
Aug 20, 2025 — Aug 20, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
calls to "lua_reportbug" changed to "lua_error", since "lua_reportbug" is only an internal function to build debug information More... over 31 years ago
run-time stack now is controled at run time, instead of compilation time. More... over 31 years ago
function "type" now returns a second result: the tag of the type, so lua can discriminate different kinds of user data. More... over 31 years ago
error message buffer got a bigger size More... over 31 years ago
adjust checks if stack has enough space More... over 31 years ago
included string.h More... over 31 years ago
new function for copy strings (strdup is not ANSI) More... over 31 years ago
better approximation for PI More... over 31 years ago
function "stat" needs "sys/types.h" More... over 31 years ago
header "stdlib.h" was missing (gcc does not warn that) More... over 31 years ago
header "string.h" was missing (gcc does not warn that) More... over 31 years ago
type names changed to avoid clashes More... over 31 years ago
a null lua_Object is LUA_NOOBJECT, not NULL. More... over 31 years ago
use yacc++ instead of yacc. More... over 31 years ago
libs should not use Lua internal functions (like mem.h). a null lua_Object is LUA_NOOBJECT, not NULL. More... over 31 years ago
new API function lua_pushlocked & lua_checkstack is a macro More... over 31 years ago
new API function lua_pushlocked More... over 31 years ago
trocar a funcao para garbage colector adaptativo. More... over 31 years ago
Trocar 'pushstring' por 'pushliteral' na macro 'getfield'. More... over 31 years ago
strdup is done via mem.c to control its memory allocation More... over 31 years ago
control of garbage collection is done with Longs, as there can be more than WORD objects to collect. More... over 31 years ago
function 'strfind' now has two optional parameters, to specify where to start and stop the search. More... over 31 years ago
small bug in fallback for power operator More... over 31 years ago
correcao de bug na construcao do formato. More... over 31 years ago
stack is indexed by integers, not Words, to allow bigger stack on 32 bit machines More... over 31 years ago
functions that no more return error codes now have return type void More... over 31 years ago
'lua_getsubscript' and 'lua_storesubscript' now run unprotected (to improve efficiency) More... over 31 years ago
better names for 'y.tab.c' and 'y.tab.h' (now they are moved to 'parser.c' and 'parser.h') More... over 31 years ago
uses 'limits.h' for MAX_WORD and MAX_INT More... over 31 years ago
bytecodes are indexed by integers, not Words, to allow bigger code on 32 bit machines More... over 31 years ago