Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | each .c file defines its own name | Roberto Ierusalimschy | 2002-12-04 | 1 | -1/+3 |
* | global_State must be deallocated (and so allocated) with NULL also | Roberto Ierusalimschy | 2002-11-21 | 1 | -2/+4 |
* | assertion must be always valid (not only in debug mode) | Roberto Ierusalimschy | 2002-10-25 | 1 | -1/+2 |
* | new ANSI C does not assure that realloc(p,0) == free(p) | Roberto Ierusalimschy | 2002-10-08 | 1 | -6/+13 |
* | new protocol for error handling | Roberto Ierusalimschy | 2002-06-18 | 1 | -2/+2 |
* | Lua now uses only `realloc' for all its memory management | Roberto Ierusalimschy | 2002-06-11 | 1 | -4/+11 |
* | new format for error messages | Roberto Ierusalimschy | 2002-05-15 | 1 | -3/+4 |
* | new way to handle errors | Roberto Ierusalimschy | 2002-05-01 | 1 | -2/+2 |
* | new way to handle errors | Roberto Ierusalimschy | 2002-04-22 | 1 | -4/+4 |
* | no more explicit support for wide-chars; too much troble... | Roberto Ierusalimschy | 2001-11-28 | 1 | -4/+3 |
* | no more MINPOWER2 | Roberto Ierusalimschy | 2001-10-25 | 1 | -5/+8 |
* | better syntax for type casts | Roberto Ierusalimschy | 2001-08-31 | 1 | -3/+4 |
* | new way to handle `profiles' | Roberto Ierusalimschy | 2001-03-26 | 1 | -1/+2 |
* | first (big) step to support wide chars | Roberto Ierusalimschy | 2001-02-23 | 1 | -3/+3 |
* | better separation between basic types | Roberto Ierusalimschy | 2001-02-20 | 1 | -4/+4 |
* | better use of extra include files (both for tests and for old_ansi) | Roberto Ierusalimschy | 2001-02-06 | 1 | -109/+6 |
* | details | Roberto Ierusalimschy | 2001-02-05 | 1 | -5/+5 |
* | macros LUA_ENTRY/LUA_EXIT to control exclusive access to Lua core | Roberto Ierusalimschy | 2001-01-24 | 1 | -3/+3 |
* | thead-specific state separated from "global" state | Roberto Ierusalimschy | 2001-01-19 | 1 | -4/+4 |
* | `free' gets size of the block: complete control over memory use | Roberto Ierusalimschy | 2000-12-28 | 1 | -28/+43 |
* | explicit control of size for growing vectors | Roberto Ierusalimschy | 2000-12-26 | 1 | -10/+15 |
* | better support for 64-bit machines (avoid excessive use of longs) | Roberto Ierusalimschy | 2000-11-24 | 1 | -10/+10 |
* | macro DEBUG renamed to LUA_DEBUG | Roberto Ierusalimschy | 2000-10-30 | 1 | -2/+2 |
* | new API function `createuserdata' | Roberto Ierusalimschy | 2000-10-26 | 1 | -3/+2 |
* | details | Roberto Ierusalimschy | 2000-10-11 | 1 | -14/+12 |
* | default now is multi-state | Roberto Ierusalimschy | 2000-08-09 | 1 | -3/+1 |
* | (much) better handling of memory alloction errors | Roberto Ierusalimschy | 2000-08-04 | 1 | -3/+11 |
* | new version of debug system | Roberto Ierusalimschy | 2000-06-26 | 1 | -2/+3 |
* | `lua.h' is included before any other Lua header file | Roberto Ierusalimschy | 2000-06-12 | 1 | -2/+3 |
* | details | Roberto Ierusalimschy | 2000-05-31 | 1 | -2/+2 |
* | details | Roberto Ierusalimschy | 2000-05-29 | 1 | -4/+6 |
* | code cleaner for 16 bits. | Roberto Ierusalimschy | 2000-05-24 | 1 | -7/+8 |
* | more information about memory use | Roberto Ierusalimschy | 2000-03-16 | 1 | -1/+3 |
* | some name changes | Roberto Ierusalimschy | 2000-03-10 | 1 | -2/+2 |
* | comment detail. | Roberto Ierusalimschy | 2000-03-10 | 1 | -2/+2 |
* | many details (most by lhf). | Roberto Ierusalimschy | 2000-03-03 | 1 | -8/+9 |
* | small changes for "clean C" | Roberto Ierusalimschy | 2000-02-08 | 1 | -2/+2 |
* | better separation between debug code and regular code | Roberto Ierusalimschy | 2000-01-13 | 1 | -53/+61 |
* | comments. | Roberto Ierusalimschy | 1999-12-27 | 1 | -2/+2 |
* | many details + code redistribution | Roberto Ierusalimschy | 1999-12-14 | 1 | -3/+3 |
* | table sizes don't need to be primes; power of 2 gives the same performance. | Roberto Ierusalimschy | 1999-11-29 | 1 | -15/+6 |
* | first implementation of multiple states (reentrant code). | Roberto Ierusalimschy | 1999-11-22 | 1 | -11/+13 |
* | warnings from Visual C++ | Roberto Ierusalimschy | 1999-10-19 | 1 | -2/+2 |
* | "const" !!! | Roberto Ierusalimschy | 1999-08-16 | 1 | -16/+14 |
* | when debugging, move and erase old blocks to realloc. | Roberto Ierusalimschy | 1999-05-24 | 1 | -36/+44 |
* | longer marks when controling memory leaks | Roberto Ierusalimschy | 1999-05-20 | 1 | -5/+7 |
* | block must always have a power-of-2 size (even at the limit) | Roberto Ierusalimschy | 1999-05-11 | 1 | -10/+5 |
* | vector do not need to grow until MINSIZE | Roberto Ierusalimschy | 1999-03-01 | 1 | -4/+5 |
* | better control of vector when DEBUGing | Roberto Ierusalimschy | 1999-02-26 | 1 | -9/+17 |
* | details (from lhf) | Roberto Ierusalimschy | 1999-02-25 | 1 | -3/+3 |