summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* new mod implementation (more portable).Roberto Ierusalimschy1996-08-011-4/+4
|
* "memcpy" is defined in "string.h".Roberto Ierusalimschy1996-07-241-1/+1
|
* "exit" is defined in "stdlib".Roberto Ierusalimschy1996-07-241-1/+2
|
* very small correctionsRoberto Ierusalimschy1996-07-241-1/+3
|
* C functions don't need to "pushnil" to return nil value (this isRoberto Ierusalimschy1996-07-123-21/+4
| | | | the default value).
* new name for POSIX flag (this one turns on some posix stuff in standardRoberto Ierusalimschy1996-07-061-2/+2
| | | | header files).
* flag for direct execution is "-e"; argument with an "=" goes toRoberto Ierusalimschy1996-07-051-3/+2
| | | | direct execution, independently of flags.
* when "block" is computed, "nentity" == "block". So the change is onlyRoberto Ierusalimschy1996-06-181-2/+2
| | | | a simpler way to write the same expression.
* "lua_dofile" has a more informative return code.Roberto Ierusalimschy1996-06-181-3/+5
|
* "lua_dofile" returns different error codes if it could not open the fileRoberto Ierusalimschy1996-06-101-6/+8
|
* new option "-x" to execute a string given as argument.Roberto Ierusalimschy1996-06-101-62/+32
|
* lexical analiser may use luaI_buffer, instead of waste space withRoberto Ierusalimschy1996-05-301-74/+69
| | | | a separate buffer.
* first version of vararg facility (plus new function "call").Roberto Ierusalimschy1996-05-287-115/+217
|
* small correction.Roberto Ierusalimschy1996-05-271-2/+2
|
* "luaI_malloc(s)" is just a macro to "luaI_realloc(NULL, s)".Roberto Ierusalimschy1996-05-242-19/+10
|
* variables which contain string lengths must be long (if they also mayRoberto Ierusalimschy1996-05-222-24/+26
| | | | be negative) or size_t.
* memory manager for old versions of Lua. It should be in RCS sinceRoberto Ierusalimschy1996-05-060-0/+0
| | | | the beginning.
* unused "#include".v2.4Roberto Ierusalimschy1996-05-062-13/+10
|
* update of dependencies from "#include"s.Roberto Ierusalimschy1996-05-061-3/+3
|
* new version.Roberto Ierusalimschy1996-05-061-2/+2
|
* tables may grow bigger than words.Roberto Ierusalimschy1996-05-062-30/+31
|
* as strings are no more duplicated, "nextvar" can use "pushstring".Roberto Ierusalimschy1996-05-061-6/+2
|
* small corrections.Roberto Ierusalimschy1996-05-032-4/+11
|
* "isatty" is POSIX, but not ANSI.Roberto Ierusalimschy1996-05-031-2/+3
|
* new function "luaI_openlib" to help open libs.Roberto Ierusalimschy1996-04-304-55/+79
|
* new algotithm to adjust garbage collection: it tries to adapt gc callsRoberto Ierusalimschy1996-04-291-9/+7
| | | | so that it collects half of the total objects when it is called.
* no more "lua_Reference"; new return value for "append";Roberto Ierusalimschy1996-04-291-22/+17
| | | | documentation of "exit" (it was not in the manual).
* lua_Reference is int, so say so.Roberto Ierusalimschy1996-04-255-20/+18
|
* "malloc.h" is not ansi.Roberto Ierusalimschy1996-04-251-2/+2
|
* "stat" is not ansi.Roberto Ierusalimschy1996-04-231-7/+3
|
* "fileno" is not ansi.Roberto Ierusalimschy1996-04-231-2/+2
|
* "exit" has an optional parameter of status.Roberto Ierusalimschy1996-04-221-4/+3
|
* lock mechanism seperseded by the REFERENCE mechanism.Roberto Ierusalimschy1996-04-229-93/+163
|
* page size "letter".Roberto Ierusalimschy1996-04-011-3/+3
|
* smaller limit to stack size (otherwise C stack can finish first)v2.4-betaRoberto Ierusalimschy1996-03-221-2/+6
|
* small "abstraction"Roberto Ierusalimschy1996-03-221-11/+12
|
* small bug in strfind.Roberto Ierusalimschy1996-03-211-2/+2
|
* new versionRoberto Ierusalimschy1996-03-211-2/+2
|
* a simplification about memory error messages.Roberto Ierusalimschy1996-03-215-37/+21
|
* better control when growing arrays.Roberto Ierusalimschy1996-03-218-50/+68
|
* hook variables are global, no more "lua_set...hook" functions.Roberto Ierusalimschy1996-03-203-42/+23
|
* dofile accepts pre-compiled chunks.Roberto Ierusalimschy1996-03-191-10/+23
| | | | | lua_is... do coercion. small correction: = versus ==.
* functions "lua_is..." consider coercions.Roberto Ierusalimschy1996-03-191-8/+22
| | | | small change when calling call hook.
* functions "lua_is..." consider coercions.Roberto Ierusalimschy1996-03-195-52/+41
|
* unused "#include"Roberto Ierusalimschy1996-03-194-7/+4
|
* new module "undump.o"Roberto Ierusalimschy1996-03-152-42/+11
|
* small correctionRoberto Ierusalimschy1996-03-151-2/+2
|
* "openfile" now returns the fileRoberto Ierusalimschy1996-03-152-15/+10
|
* integration with undump (execution of pre-compiled chuncks)Roberto Ierusalimschy1996-03-152-29/+32
|
* new functions "rename" and "tmpname".Roberto Ierusalimschy1996-03-141-8/+46
| | | | | new option 'q' for function "format". new example, about vararg.