summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2011-12-08 12:00:00 +0000
committerrepogen <>2011-12-08 12:00:00 +0000
commit227b79b8219eb0879e115d1796d6e62f26eb1a04 (patch)
tree1e494086b2d0a1260faf3b3699bdcc8ab16cdefe
parentfc12b5930ac0e8393f43fa7b78829e19a7a1da20 (diff)
downloadlua-github-5.2.0-rc7.tar.gz
Lua 5.2.0-rc75.2.0-rc7
-rw-r--r--README2
-rw-r--r--doc/manual.html6
-rw-r--r--src/lualib.h5
3 files changed, 5 insertions, 8 deletions
diff --git a/README b/README
index 7d7ded4d..bfdf7b9e 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-This is Lua 5.2, released on 07 Dec 2011.
+This is Lua 5.2, released on 08 Dec 2011.
For installation instructions, license details, and
further information about Lua, see doc/readme.html.
diff --git a/doc/manual.html b/doc/manual.html
index cd7829dd..1ebc21b4 100644
--- a/doc/manual.html
+++ b/doc/manual.html
@@ -33,7 +33,7 @@ Freely available under the terms of the
<!-- ====================================================================== -->
<p>
-<!-- $Id: manual.of,v 1.92 2011/12/06 17:58:43 roberto Exp $ -->
+<!-- $Id: manual.of,v 1.93 2011/12/08 12:12:34 roberto Exp $ -->
@@ -10341,7 +10341,7 @@ Here is the complete syntax of Lua in extended BNF.
explist ::= exp {&lsquo;<b>,</b>&rsquo; exp}
- exp ::= <b>nil</b> | <b>false</b> | <b>true</b> | Number | String | &lsquo;<b>...</b>&rsquo; | function |
+ exp ::= <b>nil</b> | <b>false</b> | <b>true</b> | Number | String | &lsquo;<b>...</b>&rsquo; | functiondef |
prefixexp | tableconstructor | exp binop exp | unop exp
prefixexp ::= var | functioncall | &lsquo;<b>(</b>&rsquo; exp &lsquo;<b>)</b>&rsquo;
@@ -10383,7 +10383,7 @@ Here is the complete syntax of Lua in extended BNF.
<HR>
<SMALL CLASS="footer">
Last update:
-Wed Dec 7 16:31:58 BRST 2011
+Thu Dec 8 10:36:53 BRST 2011
</SMALL>
<!--
Last change: revised for Lua 5.2.0
diff --git a/src/lualib.h b/src/lualib.h
index 8132da6c..9fd126bf 100644
--- a/src/lualib.h
+++ b/src/lualib.h
@@ -1,5 +1,5 @@
/*
-** $Id: lualib.h,v 1.42 2011/05/25 14:12:28 roberto Exp $
+** $Id: lualib.h,v 1.43 2011/12/08 12:11:37 roberto Exp $
** Lua standard libraries
** See Copyright Notice in lua.h
*/
@@ -11,9 +11,6 @@
#include "lua.h"
-/* Key to file-handle type */
-#define LUA_FILEHANDLE "FILE*"
-
LUAMOD_API int (luaopen_base) (lua_State *L);