summaryrefslogtreecommitdiff
path: root/manual.tex
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-06-27 15:39:34 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-06-27 15:39:34 -0300
commitc9e6ed1d9fdf3323599a59515e73ec794b7cb15a (patch)
treeebbf8a0c26e3701a960c75dfad70a49cc7e04f53 /manual.tex
parent56fdab67d8f419b76ba5fc4237e10c7b31afc8c6 (diff)
downloadlua-c9e6ed1d9fdf3323599a59515e73ec794b7cb15a.tar.gz
lua-c9e6ed1d9fdf3323599a59515e73ec794b7cb15a.tar.bz2
lua-c9e6ed1d9fdf3323599a59515e73ec794b7cb15a.zip
small corrections.
Diffstat (limited to 'manual.tex')
-rw-r--r--manual.tex14
1 files changed, 7 insertions, 7 deletions
diff --git a/manual.tex b/manual.tex
index 1bab89c1..62fb7fe5 100644
--- a/manual.tex
+++ b/manual.tex
@@ -1,4 +1,4 @@
1% $Id: manual.tex,v 2.5 1997/06/20 19:28:16 roberto Exp roberto $ 1% $Id: manual.tex,v 2.6 1997/06/26 20:39:10 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: 1997/06/20 19:28:16 $} 41\date{\small \verb$Date: 1997/06/26 20:39:10 $}
42 42
43\maketitle 43\maketitle
44 44
@@ -142,8 +142,8 @@ as stated in the copyright notice in the front page of this manual.
142The implementation described in this manual is available 142The implementation described in this manual is available
143at the following URL's: 143at the following URL's:
144\begin{verbatim} 144\begin{verbatim}
145 http://www.inf.puc-rio.br/~roberto/lua.html 145 http://www.tecgraf.puc-rio.br/lua/
146 ftp://ftp.icad.puc-rio.br/pub/lua/lua.tar.gz 146 ftp://ftp.tecgraf.puc-rio.br/pub/lua/lua.tar.gz
147\end{verbatim} 147\end{verbatim}
148 148
149 149
@@ -804,7 +804,7 @@ The tag method called for any specific event is selected
804according to the tag of the values involved 804according to the tag of the values involved
805in the event \see{TypesSec}. 805in the event \see{TypesSec}.
806The function \IndexVerb{settagmethod} changes the tag method 806The function \IndexVerb{settagmethod} changes the tag method
807associated with a given pair $<tag, event>$. 807associated with a given pair \M{<tag, event>}.
808Its first parameter is the tag, the second the event name 808Its first parameter is the tag, the second the event name
809(a string, see below), 809(a string, see below),
810and the third parameter is the new method (a function), 810and the third parameter is the new method (a function),
@@ -1785,7 +1785,7 @@ Returns the old error handler.
1785 1785
1786\subsubsection*{\ff {\tt settagmethod (tag, event, newmethod)}} 1786\subsubsection*{\ff {\tt settagmethod (tag, event, newmethod)}}
1787\Deffunc{settagmethod} 1787\Deffunc{settagmethod}
1788This function sets a new tag method to the given pair $<tag, event>$. 1788This function sets a new tag method to the given pair \M{<tag, event>}.
1789It returns the old method. 1789It returns the old method.
1790If \verb|newmethod| is \nil, 1790If \verb|newmethod| is \nil,
1791it restores the default behavior for the given event. 1791it restores the default behavior for the given event.
@@ -1793,7 +1793,7 @@ it restores the default behavior for the given event.
1793\subsubsection*{\ff {\tt gettagmethod (tag, event)}} 1793\subsubsection*{\ff {\tt gettagmethod (tag, event)}}
1794\Deffunc{gettagmethod} 1794\Deffunc{gettagmethod}
1795This function returns the current tag method 1795This function returns the current tag method
1796for a given pair $<tag, event>$. 1796for a given pair \M{<tag, event>}.
1797 1797
1798 1798
1799\subsection{String Manipulation} 1799\subsection{String Manipulation}