diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-01-13 13:42:43 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-01-13 13:42:43 -0200 |
commit | 763c64be9bcdb3af225f547856af50fcc4cfc544 (patch) | |
tree | af3d27aa8106e88c07101431f03fdc6e60a6b37c /manual.tex | |
parent | f0dffaa209d80b9852e873830243245c1facdd05 (diff) | |
download | lua-763c64be9bcdb3af225f547856af50fcc4cfc544.tar.gz lua-763c64be9bcdb3af225f547856af50fcc4cfc544.tar.bz2 lua-763c64be9bcdb3af225f547856af50fcc4cfc544.zip |
details
Diffstat (limited to 'manual.tex')
-rw-r--r-- | manual.tex | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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, | |||
2715 | so any program that opens at least one standard library before using | 2715 | so any program that opens at least one standard library before using |
2716 | Lua API does not need to be modified. | 2716 | Lua 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, |
2719 | with a temporary error method. | 2719 | with a temporary error method. |
2720 | This facility is now provided by function \verb|call|. | 2720 | This 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). |
2724 | Closures make this feature irrelevant. | 2724 | Closures 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; |
2727 | for instance, the old syntax \verb|function f[exp] (x) ... end| is not | 2727 | for 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 |
2736 | Check \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 | ||