Changeset 269
- Timestamp:
- 07/09/06 17:08:37 (2 years ago)
- Files:
-
- trunk/lib/lua51/Makefile (modified) (2 diffs, 1 prop)
- trunk/lib/lua51/Makefile.orig (modified) (1 prop)
- trunk/lib/lua51/README.txt (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lapi.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lapi.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lauxlib.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lauxlib.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lbaselib.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lcode.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lcode.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/ldblib.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/ldebug.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/ldebug.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/ldo.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/ldo.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/ldump.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lfunc.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lfunc.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lgc.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lgc.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/linit.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/liolib.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/llex.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/llex.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/llimits.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lmathlib.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lmem.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lmem.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/loadlib.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lobject.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lobject.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lopcodes.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lopcodes.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/loslib.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lparser.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lparser.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lstate.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lstate.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lstring.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lstring.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lstrlib.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/ltable.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/ltable.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/ltablib.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/ltm.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/ltm.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lua.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lua.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/luac.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/luaconf.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lualib.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lundump.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lundump.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lvm.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lvm.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lzio.c (modified) (1 diff, 1 prop)
- trunk/lib/lua51/lzio.h (modified) (1 diff, 1 prop)
- trunk/lib/lua51/print.c (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/lua51/Makefile
- Property svn:keywords deleted
r267 r269 6 6 lparser.c lstrlib.c ltm.c lundump.c print.c \ 7 7 lbaselib.c ldebug.c lfunc.c liolib.c lmem.c lopcodes.c \ 8 lstate.c ltable.c lvm.c lpow.c8 lstate.c ltable.c lvm.c 9 9 10 10 … … 13 13 lstate.h ltm.h lualib.h lzio.h \ 14 14 lcode.h lfunc.h llimits.h lopcodes.h lstring.h \ 15 luaconf.h lundump.h lpow.h15 luaconf.h lundump.h 16 16 17 17 trunk/lib/lua51/Makefile.orig
- Property svn:keywords deleted
trunk/lib/lua51/README.txt
- Property svn:keywords deleted
r267 r269 1 This is based on Lua 5.1. 1 This is based on Lua 5.1.1. 2 2 3 3 Please see the copyright notice in lua.h. trunk/lib/lua51/lapi.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lapi.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Lua API 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lapi.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: lapi.h,v 2.2 2005/04/25 19:24:10 roberto Exp $ 3 3 ** Auxiliary functions from Lua API 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lauxlib.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lauxlib.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Auxiliary functions for building Lua libraries 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lauxlib.h
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lauxlib.h 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Auxiliary functions for building Lua libraries 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lbaselib.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: lbaselib.c,v 1.191 2006/06/02 15:34:00 roberto Exp $ 3 3 ** Basic library 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lcode.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lcode.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Code generator for Lua 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lcode.h
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lcode.h 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Code generator for Lua 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/ldblib.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: ldblib.c,v 1.104 2005/12/29 15:32:11 roberto Exp $ 3 3 ** Interface from Lua to its debug API 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/ldebug.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: ldebug.c,v 2.29 2005/12/22 16:19:56 roberto Exp $ 3 3 ** Debug Interface 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/ldebug.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: ldebug.h,v 2.3 2005/04/25 19:24:10 roberto Exp $ 3 3 ** Auxiliary functions from Debug Interface module 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/ldo.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: ldo.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Stack and Call structure of Lua 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/ldo.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: ldo.h,v 2.7 2005/08/24 16:15:49 roberto Exp $ 3 3 ** Stack and Call structure of Lua 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/ldump.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: ldump.c,v 1.15 2006/02/16 15:53:49 lhf Exp $ 3 3 ** save precompiled Lua chunks 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lfunc.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: lfunc.c,v 2.12 2005/12/22 16:19:56 roberto Exp $ 3 3 ** Auxiliary functions to manipulate prototypes and closures 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lfunc.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: lfunc.h,v 2.4 2005/04/25 19:24:10 roberto Exp $ 3 3 ** Auxiliary functions to manipulate prototypes and closures 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lgc.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lgc.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Garbage Collector 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lgc.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: lgc.h,v 2.15 2005/08/24 16:15:49 roberto Exp $ 3 3 ** Garbage Collector 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/linit.c
- Property svn:keywords deleted
r268 r269 1 1 /* 2 ** $Id $2 ** $Id: linit.c 268 2006-07-09 21:05:12Z goodea $ 3 3 ** Initialization of libraries for lua.c 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/liolib.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: liolib.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Standard I/O (and system) library 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/llex.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: llex.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Lexical Analyzer 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/llex.h
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: llex.h 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Lexical Analyzer 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/llimits.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: llimits.h,v 1.69 2005/12/27 17:12:00 roberto Exp $ 3 3 ** Limits, basic types, and some other `installation-dependent' definitions 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lmathlib.c
- Property svn:keywords deleted
r268 r269 1 1 /* 2 ** $Id $2 ** $Id: lmathlib.c 268 2006-07-09 21:05:12Z goodea $ 3 3 ** Standard mathematical library 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lmem.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: lmem.c,v 1.70 2005/12/26 13:35:47 roberto Exp $ 3 3 ** Interface to Memory Manager 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lmem.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: lmem.h,v 1.31 2005/04/25 19:24:10 roberto Exp $ 3 3 ** Interface to Memory Manager 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/loadlib.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: loadlib.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Dynamic library loader for Lua 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lobject.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: lobject.c,v 2.22 2006/02/10 17:43:52 roberto Exp $ 3 3 ** Some generic functions over Lua objects 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lobject.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: lobject.h,v 2.20 2006/01/18 11:37:34 roberto Exp $ 3 3 ** Type definitions for Lua objects 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lopcodes.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: lopcodes.c,v 1.37 2005/11/08 19:45:36 roberto Exp $ 3 3 ** See Copyright Notice in lua.h 4 4 */ trunk/lib/lua51/lopcodes.h
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lopcodes.h 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Opcodes for Lua virtual machine 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/loslib.c
- Property svn:keywords deleted
r268 r269 1 1 /* 2 ** $Id $2 ** $Id: loslib.c 268 2006-07-09 21:05:12Z goodea $ 3 3 ** Standard Operating System library 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lparser.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lparser.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Lua Parser 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lparser.h
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lparser.h 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Lua Parser 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lstate.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lstate.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Global State 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lstate.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: lstate.h,v 2.24 2006/02/06 18:27:59 roberto Exp $ 3 3 ** Global State 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lstring.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: lstring.c,v 2.8 2005/12/22 16:19:56 roberto Exp $ 3 3 ** String table (keeps all strings handled by Lua) 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lstring.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: lstring.h,v 1.43 2005/04/25 19:24:10 roberto Exp $ 3 3 ** String table (keep all strings handled by Lua) 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lstrlib.c
- Property svn:keywords deleted
r268 r269 1 1 /* 2 ** $Id $2 ** $Id: lstrlib.c 268 2006-07-09 21:05:12Z goodea $ 3 3 ** Standard library for string operations and pattern-matching 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/ltable.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: ltable.c,v 2.32 2006/01/18 11:49:02 roberto Exp $ 3 3 ** Lua tables (hash) 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/ltable.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: ltable.h,v 2.10 2006/01/10 13:13:06 roberto Exp $ 3 3 ** Lua tables (hash) 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/ltablib.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: ltablib.c,v 1.38 2005/10/23 17:38:15 roberto Exp $ 3 3 ** Library for Table Manipulation 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/ltm.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: ltm.c,v 2.8 2006/01/10 12:50:00 roberto Exp $ 3 3 ** Tag methods 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/ltm.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: ltm.h,v 2.6 2005/06/06 13:30:25 roberto Exp $ 3 3 ** Tag methods 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lua.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lua.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Lua stand-alone interpreter 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lua.h
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: lua.h 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Lua - An Extensible Extension Language 4 4 ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) trunk/lib/lua51/luac.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: luac.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** Lua compiler (saves bytecodes to files; also list bytecodes) 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/luaconf.h
- Property svn:keywords deleted
r268 r269 1 1 /* 2 ** $Id $2 ** $Id: luaconf.h 268 2006-07-09 21:05:12Z goodea $ 3 3 ** Configuration file for Lua 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lualib.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: lualib.h,v 1.36 2005/12/27 17:12:00 roberto Exp $ 3 3 ** Lua standard libraries 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lundump.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: lundump.c,v 1.60 2006/02/16 15:53:49 lhf Exp $ 3 3 ** load precompiled Lua chunks 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lundump.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: lundump.h,v 1.40 2005/11/11 14:03:13 lhf Exp $ 3 3 ** load precompiled Lua chunks 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lvm.c
- Property svn:keywords deleted
r268 r269 1 1 /* 2 ** $Id $2 ** $Id: lvm.c 268 2006-07-09 21:05:12Z goodea $ 3 3 ** Lua virtual machine 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lvm.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: lvm.h,v 2.5 2005/08/22 18:54:49 roberto Exp $ 3 3 ** Lua virtual machine 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lzio.c
- Property svn:keywords deleted
r198 r269 1 1 /* 2 ** $Id $2 ** $Id: lzio.c,v 1.31 2005/06/03 20:15:29 roberto Exp $ 3 3 ** a generic input stream interface 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/lzio.h
- Property svn:keywords deleted
r199 r269 1 1 /* 2 ** $Id $2 ** $Id: lzio.h,v 1.21 2005/05/17 19:49:15 roberto Exp $ 3 3 ** Buffered streams 4 4 ** See Copyright Notice in lua.h trunk/lib/lua51/print.c
- Property svn:keywords deleted
r266 r269 1 1 /* 2 ** $Id $2 ** $Id: print.c 266 2006-07-09 20:58:32Z goodea $ 3 3 ** print bytecodes 4 4 ** See Copyright Notice in lua.h
