From ddc8d94a087f9c0ef758dc26540a5f5ac486e19d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 14 Aug 2000 16:18:14 -0300 Subject: new name for `lua_[sg]etglobaltable' --- manual.tex | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'manual.tex') diff --git a/manual.tex b/manual.tex index f808e3c9..85d81b17 100644 --- a/manual.tex +++ b/manual.tex @@ -1,4 +1,4 @@ -% $Id: manual.tex,v 1.39 2000/05/24 13:54:49 roberto Exp roberto $ +% $Id: manual.tex,v 1.40 2000/08/09 19:09:20 roberto Exp roberto $ \documentclass[11pt]{article} \usepackage{fullpage,bnf} @@ -122,7 +122,7 @@ Waldemar Celes \tecgraf\ --- Computer Science Department --- PUC-Rio } -\date{{\small \tt\$Date: 2000/05/24 13:54:49 $ $}} +\date{{\small \tt\$Date: 2000/08/09 19:09:20 $ $}} \maketitle @@ -1933,15 +1933,15 @@ use the \emph{lua_rawset} function over the table of globals. To get the table of globals, you should call -\Deffunc{lua_pushglobaltable} +\Deffunc{lua_pushglobals} \begin{verbatim} -void lua_pushglobaltable (lua_State *L); +void lua_pushglobals (lua_State *L); \end{verbatim} To set another table as the table of globals, you use -\Deffunc{lua_setglobaltable} +\Deffunc{lua_setglobals} \begin{verbatim} -void lua_setglobaltable (lua_State *L, lua_Object newtable); +void lua_setglobals (lua_State *L, lua_Object newtable); \end{verbatim} Tables can also be manipulated via the API. -- cgit v1.2.3-55-g6feb