summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* list of incompatibilities with version 2.2.v2.3-betaRoberto Ierusalimschy1996-02-161-17/+34
| | | | new macro \Version.
* more appropriate error message for "date"Roberto Ierusalimschy1996-02-161-2/+2
|
* small improvementsRoberto Ierusalimschy1996-02-142-11/+7
|
* useless #include.Roberto Ierusalimschy1996-02-144-9/+4
|
* new versionRoberto Ierusalimschy1996-02-141-2/+2
|
* reserved words are stored in main string table; "marked" field isRoberto Ierusalimschy1996-02-146-74/+79
| | | | | used to indicate its type. Table initializations centralized by "tree.c".
* new header "lex.h".Roberto Ierusalimschy1996-02-135-25/+15
|
* new header for lex.cRoberto Ierusalimschy1996-02-131-0/+18
|
* old trick in "strsub" does not work with new hash table for strings.Roberto Ierusalimschy1996-02-121-5/+5
|
* BIG CHANGE: new data structure for constants, strings and globals, usingRoberto Ierusalimschy1996-02-1212-135/+146
| | | | an array of hash tables for all them.
* no more "lua_pushliteral".Roberto Ierusalimschy1996-02-122-13/+7
|
* a backslash followed by a newline allows the newline to go intoRoberto Ierusalimschy1996-02-092-7/+4
| | | | a string.
* new function "date", replaces old "date" and "time".Roberto Ierusalimschy1996-02-092-46/+32
|
* "lua_check_number" accepts strings convertible to numbers.Roberto Ierusalimschy1996-02-092-9/+17
|
* new functions "random" and "randomseed".Roberto Ierusalimschy1996-02-092-6/+28
|
* new section describing the debug interface.Roberto Ierusalimschy1996-02-091-9/+142
|
* lock mechanism more robust; nil is pseudo-locked under index -1.Roberto Ierusalimschy1996-02-081-4/+9
|
* small bugRoberto Ierusalimschy1996-02-081-0/+2
|
* new type lua_Function for activation recordsRoberto Ierusalimschy1996-02-082-11/+13
|
* correction of dependencies (include's).Roberto Ierusalimschy1996-02-071-11/+11
|
* debug interface functions to manipulated local variables:Roberto Ierusalimschy1996-02-075-17/+157
| | | | "lua_getlocal" and "lua_setlocal".
* "lua_debug" now is exported through debug interface (luadebug.h)Roberto Ierusalimschy1996-02-073-5/+4
|
* no more "Bool" typeRoberto Ierusalimschy1996-02-073-7/+5
|
* elimination of unused declarations (left from old modifications)Roberto Ierusalimschy1996-02-061-5/+1
|
* new option "q" in function "write", to write literal strings.Roberto Ierusalimschy1996-02-052-17/+54
|
* new examples showing data structures and object-oriented programming.Roberto Ierusalimschy1996-02-051-38/+145
| | | | generic improvements and corrections.
* improve of compiling error messages.Roberto Ierusalimschy1996-02-051-10/+13
|
* small bugRoberto Ierusalimschy1996-02-041-2/+2
|
* new fallback "getglobal".Roberto Ierusalimschy1996-01-303-9/+21
|
* new example showing how to build modules.Roberto Ierusalimschy1996-01-301-5/+50
|
* new fallback "getglobal".Roberto Ierusalimschy1996-01-301-8/+20
| | | | modifications to generate an index (not automatically yet).
* new functions "tostring", "assert", and "format".Roberto Ierusalimschy1996-01-291-7/+50
|
* "read('s')" was "eating" delimiter.Roberto Ierusalimschy1996-01-291-3/+3
|
* lua_table now has references to global variable names (TreeNode's).Roberto Ierusalimschy1996-01-265-30/+15
|
* "dofile" issues an error when called with non string arguments, andRoberto Ierusalimschy1996-01-261-2/+8
| | | | runs stdin when called without arguments.
* "setglobal" and "getglobal" moved to inout.c, as it concentrates pre-definedRoberto Ierusalimschy1996-01-262-11/+35
| | | | | library. new function "assert".
* "setglobal" and "getglobal" moved to inout.c, as it concentrates pre-definedRoberto Ierusalimschy1996-01-261-25/+3
| | | | library.
* elimination of function "int2str", as it can be replaced by "format('%c', .)"Roberto Ierusalimschy1996-01-261-14/+1
|
* "dofile" does not issue a warning when unable to open the file,Roberto Ierusalimschy1996-01-231-6/+2
| | | | but only returns an error code.
* new function "assert"Roberto Ierusalimschy1996-01-231-1/+3
|
* local variable stack needs only the name of the variable (TreeNode);Roberto Ierusalimschy1996-01-231-19/+12
| | | | this way is simpler and faster than old way.
* correction of some order dependencies in debug code.Roberto Ierusalimschy1996-01-221-18/+20
|
* add_char now is global.Roberto Ierusalimschy1996-01-221-40/+36
| | | | time returns week-day.
* new function "tostring".Roberto Ierusalimschy1996-01-223-31/+47
|
* add_char now is global.Roberto Ierusalimschy1996-01-221-33/+102
| | | | new function format.
* add_char now is global.Roberto Ierusalimschy1996-01-221-1/+2
|
* memory overflow tries a garbage collection; if it fails then exit theRoberto Ierusalimschy1996-01-223-9/+31
| | | | program.
* bug: "read" with format MUST read given number of chars (if file endsRoberto Ierusalimschy1996-01-121-5/+17
| | | | | before that reports an error, returning nil). "readuntil" can be called with nil or no parameters to read until EOF.
* "getobjectname" got a "lua_" prefix.Roberto Ierusalimschy1996-01-091-2/+2
|
* hooks for line change and function calls; first version.Roberto Ierusalimschy1996-01-092-10/+88
|