[Scummvm-cvs-logs] SF.net SVN: scummvm: [29190] residual/trunk/lua

aquadran at users.sourceforge.net aquadran at users.sourceforge.net
Fri Oct 12 14:08:14 CEST 2007


Revision: 29190
          http://scummvm.svn.sourceforge.net/scummvm/?rev=29190&view=rev
Author:   aquadran
Date:     2007-10-12 05:08:14 -0700 (Fri, 12 Oct 2007)

Log Message:
-----------
remove not needed files, fixed typo in README.residual

Modified Paths:
--------------
    residual/trunk/lua/README.residual

Removed Paths:
-------------
    residual/trunk/lua/doc/luac.html
    residual/trunk/lua/doc/luac.man

Modified: residual/trunk/lua/README.residual
===================================================================
--- residual/trunk/lua/README.residual	2007-10-12 01:29:35 UTC (rev 29189)
+++ residual/trunk/lua/README.residual	2007-10-12 12:08:14 UTC (rev 29190)
@@ -5,4 +5,4 @@
 * Revamped the way function calls and returns are handled in order to
   facilitate implementing Residual/GrimE's cooperative multithreading model.
 * Added several internal functions which implement this multithreading.
-* Added save/reastore Lua state.
+* Added save/restore Lua state.

Deleted: residual/trunk/lua/doc/luac.html
===================================================================
--- residual/trunk/lua/doc/luac.html	2007-10-12 01:29:35 UTC (rev 29189)
+++ residual/trunk/lua/doc/luac.html	2007-10-12 12:08:14 UTC (rev 29190)
@@ -1,158 +0,0 @@
-<!-- $Id$ -->
-<TITLE>LUAC 1 "06 February 1998"</TITLE>
-<H1>NAME</H1>
-luac - Lua compiler
-<H1>SYNOPSIS</H1>
-<B>luac</B>
-[
-<B>-c</B>
-|
-<B>-u</B>
-] [
-<B>-D</B>
-<I>name</I>
-] [
-<B>-d</B>
-] [
-<B>-l</B>
-] [
-<B>-O</B>
-] [
-<B>-o</B>
-<I>filename</I>
-] [
-<B>-p</B>
-] [
-<B>-q</B>
-] [
-<B>-v</B>
-] [
-<B>-V</B>
-]
-<I>sourcefile </I>...
-<H1>DESCRIPTION</H1>
-<B>luac</B>
-is the Lua compiler.
-It translates programs written in the Lua programming language
-into binary files that can be loaded and executed with
-<B>lua_dofile</B>
-in C or with
-<B>dofile</B>
-in Lua.
-<P>
-The main advantages of pre-compiling chunks are:
-faster loading,
-protecting source code from user changes,
-off-line syntax error detection.
-The binary files created by
-<B>luac</B>
-are portable to all known architectures.
-<P>
-<B>luac</B>
-produces a single output file containing the bytecodes
-for all source files given.
-By default,
-the output file is named
-<B>luac.out</B>,
-but you can change this with the
-<B>-o</B>
-option.
-<P>
-You can use
-<B>"-"</B>
-to indicate
-<I>stdin</I>
-as a source file.
-<P>
-<B>luac</B>
-can also load and list binary files with the
-<B>-u</B>
-option.
-<P>
-Binary files produced by differents runs of
-<B>luac</B>
-can be combined into one large file,
-using 
-<B>cat</B>(1).
-The result is still a valid binary file,
-and can be loaded with a single call to
-<B>lua_dofile</B>
-or 
-<B>dofile</B>.
-<P>
-<H1>OPTIONS</H1>
-<P>
-<B>-c</B>
-compile (this is the default).
-<P>
-<B>-u</B>
-undump, i.e., load and list the given binary files.
-If no files are given, then luac undumps
-<B>luac.out</B>.
-<P>
-<B>-D "</B><I>name"</I>
-predefine symbol
-<I>name</I>
-for conditional compilation.
-<P>
-<B>-d</B>
-turn debugging on.
-Individual chunks may
-still control the generation of debug information with
-$debug and $nodebug.
-<P>
-<B>-l</B>
-produce a listing of the compiled bytecode for Lua's virtual machine.
-This is the default when undumping.
-<P>
-<B>-O</B>
-optimize code.
-Debug information is removed,
-duplicate constants are coalesced.
-<P>
-<B>-o "</B><I>filename"</I>
-output to
-<I>filename</I>,
-instead of the default
-<B>luac.out</B>.
-The output file cannot be a source file.
-<P>
-<B>-p</B>
-parse sources files but does not generate any output file.
-Used mainly for syntax checking.
-<P>
-<B>-q</B>
-quiet; produces no listing.
-This is the default when compiling.
-<P>
-<B>-v</B>
-print version information.
-<P>
-<B>-V</B>
-verbose;
-print the names of the source files as they are processed.
-<H1>FILES</H1>
-<P>
-<B>luac.out</B>
-default output file
-<H1>"SEE ALSO"</H1>
-<B>lua</B>(1)
-<BR>
-<I>"Reference Manual of the Programming Language Lua"</I>
-<BR>
-<A HREF="http://www.tecgraf.puc-rio.br/lua/">http://www.tecgraf.puc-rio.br/lua/</A>
-<BR>
-"Lua: an extensible extension language",
-<I>Software: Practice & Experience</I>
-<B>26</B>
-#6 (1996) 635-652.
-<H1>DIAGNOSTICS</H1>
-Error messages should be self explanatory.
-<H1>BUGS</H1>
-Inherits any bugs from Lua,
-but Lua has no bugs...
-<H1>AUTHORS</H1>
-L. H. de Figueiredo,
-R. Ierusalimschy and
-W. Celes
-<I>(<A HREF="mailto:lua at tecgraf.puc-rio.br">lua at tecgraf.puc-rio.br</A>)</I>

Deleted: residual/trunk/lua/doc/luac.man
===================================================================
--- residual/trunk/lua/doc/luac.man	2007-10-12 01:29:35 UTC (rev 29189)
+++ residual/trunk/lua/doc/luac.man	2007-10-12 12:08:14 UTC (rev 29190)
@@ -1,165 +0,0 @@
-.\" $Id$
-.TH LUAC 1 "01 July 1998"
-.SH NAME
-luac \- Lua compiler
-.SH SYNOPSIS
-.B luac
-[
-.B \-c
-|
-.B \-u
-] [
-.B \-d
-] [
-.B \-D
-.I name
-] [
-.B \-l
-] [
-.B \-o
-.I filename
-] [
-.B \-O
-] [
-.B \-p
-] [
-.B \-q
-] [
-.B \-v
-] [
-.B \-V
-]
-.IR sourcefile " ..."
-.SH DESCRIPTION
-.B luac
-is the Lua compiler.
-It translates programs written in the Lua programming language
-into binary files that can be loaded and executed with
-.B lua_dofile
-in C or with
-.B dofile
-in Lua.
-.LP
-The main advantages of pre-compiling chunks are:
-faster loading,
-protecting source code from user changes,
-off-line syntax error detection.
-The binary files created by
-.B luac
-are portable to all known architectures.
-.LP
-.B luac
-produces a single output file containing the bytecodes
-for all source files given.
-By default,
-the output file is named
-.BR luac.out ,
-but you can change this with the
-.B \-o
-option.
-.LP
-You can use
-.B "\-"
-to indicate
-.I stdin
-as a source file.
-.LP
-.B luac
-can also load and list binary files with the
-.B \-u
-option.
-.LP
-Binary files produced by differents runs of
-.B luac
-can be combined into one large file,
-using 
-.BR cat (1).
-The result is still a valid binary file,
-and can be loaded with a single call to
-.B lua_dofile
-or 
-.BR dofile .
-.LP
-.SH OPTIONS
-.TP
-.B \-c
-compile (this is the default).
-.TP
-.B \-u
-undump, i.e., load and list the given binary files.
-If no files are given, then luac undumps
-.BR luac.out .
-.TP
-.BI \-D " name"
-predefine symbol
-.I name
-for conditional compilation.
-By default,
-.B luac
-does
-.I not
-predefine any symbols,
-not even the built-in functions.
-.TP
-.B \-d
-turn debugging on.
-Individual chunks may
-still control the generation of debug information with
-$debug and $nodebug.
-If debugging is on, then listings show the names of the local variables.
-.TP
-.B \-l
-produce a listing of the compiled bytecode for Lua's virtual machine.
-This is the default when undumping.
-.TP
-.B \-O
-optimize code.
-Debug information is removed,
-duplicate constants are coalesced.
-.TP
-.BI \-o " filename"
-output to
-.IR filename ,
-instead of the default
-.BR luac.out .
-The output file cannot be a source file.
-.TP
-.B \-p
-parse sources files but does not generate any output file.
-Used mainly for syntax checking.
-.TP
-.B \-q
-quiet; produces no listing.
-This is the default when compiling.
-.TP
-.B \-v
-print version information.
-.TP
-.B \-V
-verbose;
-print the names of the source files as they are processed.
-.SH FILES
-.TP 15
-.B luac.out
-default output file
-.SH "SEE ALSO"
-.BR lua (1)
-.br
-.I "Reference Manual of the Programming Language Lua"
-.br
-http://www.tecgraf.puc-rio.br/lua/
-.br
-"Lua: an extensible extension language",
-.I Software: Practice & Experience
-.B 26
-#6 (1996) 635-652.
-.SH DIAGNOSTICS
-Error messages should be self explanatory.
-.SH BUGS
-Inherits any bugs from Lua,
-but Lua has no bugs...
-.SH AUTHORS
-L. H. de Figueiredo,
-R. Ierusalimschy and
-W. Celes
-.I (lua at tecgraf.puc-rio.br)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list