diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-06-27 15:39:34 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-06-27 15:39:34 -0300 |
commit | c9e6ed1d9fdf3323599a59515e73ec794b7cb15a (patch) | |
tree | ebbf8a0c26e3701a960c75dfad70a49cc7e04f53 /manual.tex | |
parent | 56fdab67d8f419b76ba5fc4237e10c7b31afc8c6 (diff) | |
download | lua-c9e6ed1d9fdf3323599a59515e73ec794b7cb15a.tar.gz lua-c9e6ed1d9fdf3323599a59515e73ec794b7cb15a.tar.bz2 lua-c9e6ed1d9fdf3323599a59515e73ec794b7cb15a.zip |
small corrections.
Diffstat (limited to 'manual.tex')
-rw-r--r-- | manual.tex | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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. | |||
142 | The implementation described in this manual is available | 142 | The implementation described in this manual is available |
143 | at the following URL's: | 143 | at 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 | |||
804 | according to the tag of the values involved | 804 | according to the tag of the values involved |
805 | in the event \see{TypesSec}. | 805 | in the event \see{TypesSec}. |
806 | The function \IndexVerb{settagmethod} changes the tag method | 806 | The function \IndexVerb{settagmethod} changes the tag method |
807 | associated with a given pair $<tag, event>$. | 807 | associated with a given pair \M{<tag, event>}. |
808 | Its first parameter is the tag, the second the event name | 808 | Its first parameter is the tag, the second the event name |
809 | (a string, see below), | 809 | (a string, see below), |
810 | and the third parameter is the new method (a function), | 810 | and 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} |
1788 | This function sets a new tag method to the given pair $<tag, event>$. | 1788 | This function sets a new tag method to the given pair \M{<tag, event>}. |
1789 | It returns the old method. | 1789 | It returns the old method. |
1790 | If \verb|newmethod| is \nil, | 1790 | If \verb|newmethod| is \nil, |
1791 | it restores the default behavior for the given event. | 1791 | it 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} |
1795 | This function returns the current tag method | 1795 | This function returns the current tag method |
1796 | for a given pair $<tag, event>$. | 1796 | for a given pair \M{<tag, event>}. |
1797 | 1797 | ||
1798 | 1798 | ||
1799 | \subsection{String Manipulation} | 1799 | \subsection{String Manipulation} |