summaryrefslogtreecommitdiff
path: root/manual.tex
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-01-13 13:42:43 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-01-13 13:42:43 -0200
commit763c64be9bcdb3af225f547856af50fcc4cfc544 (patch)
treeaf3d27aa8106e88c07101431f03fdc6e60a6b37c /manual.tex
parentf0dffaa209d80b9852e873830243245c1facdd05 (diff)
downloadlua-763c64be9bcdb3af225f547856af50fcc4cfc544.tar.gz
lua-763c64be9bcdb3af225f547856af50fcc4cfc544.tar.bz2
lua-763c64be9bcdb3af225f547856af50fcc4cfc544.zip
details
Diffstat (limited to 'manual.tex')
-rw-r--r--manual.tex12
1 files changed, 6 insertions, 6 deletions
diff --git a/manual.tex b/manual.tex
index 4139955b..f214e1c9 100644
--- a/manual.tex
+++ b/manual.tex
@@ -1,4 +1,4 @@
1% $Id: manual.tex,v 1.3 1998/01/07 16:26:48 roberto Exp roberto $ 1% $Id: manual.tex,v 1.4 1998/01/08 17:15:49 roberto Exp roberto $
2 2
3\documentstyle[fullpage,11pt,bnf]{article} 3\documentstyle[fullpage,11pt,bnf]{article}
4 4
@@ -38,7 +38,7 @@ Waldemar Celes
38\tecgraf\ --- Computer Science Department --- PUC-Rio 38\tecgraf\ --- Computer Science Department --- PUC-Rio
39} 39}
40 40
41\date{\small \verb$Date: 1998/01/07 16:26:48 $} 41\date{\small \verb$Date: 1998/01/08 17:15:49 $}
42 42
43\maketitle 43\maketitle
44 44
@@ -2715,13 +2715,13 @@ However, all standard libraries check whether Lua is already opened,
2715so any program that opens at least one standard library before using 2715so any program that opens at least one standard library before using
2716Lua API does not need to be modified. 2716Lua API does not need to be modified.
2717 2717
2718\item Function \verb|dostring| does not accept an optional second argument, 2718\item Function \verb|dostring| no longer accepts an optional second argument,
2719with a temporary error method. 2719with a temporary error method.
2720This facility is now provided by function \verb|call|. 2720This facility is now provided by function \verb|call|.
2721 2721
2722\item Function \verb|gsub| no longer accepts an optional fourth argument 2722\item Function \verb|gsub| no longer accepts an optional fourth argument
2723(a callback data, a table). 2723(a callback data, a table).
2724Closures make this feature irrelevant. 2724Closures replace this feature with advantage.
2725 2725
2726\item The syntax for function declaration is now more restricted; 2726\item The syntax for function declaration is now more restricted;
2727for instance, the old syntax \verb|function f[exp] (x) ... end| is not 2727for instance, the old syntax \verb|function f[exp] (x) ... end| is not
@@ -2732,8 +2732,8 @@ programs should use an explicit assignment instead, like
2732 2732
2733\item Old pre-compiled code is obsolete, and must be re-compiled. 2733\item Old pre-compiled code is obsolete, and must be re-compiled.
2734 2734
2735\item The option \verb|a=b| in Lua stand-alone does not need extra quotes. 2735\item The option \verb|a=b| in Lua stand-alone now sets \verb|a| to the
2736Check \See{lua-sa} for details. 2736\M{string} \verb|b|, and not to the value of \verb|b|.
2737 2737
2738\end{itemize} 2738\end{itemize}
2739 2739