versao beta, e nao alfa

This commit is contained in:
tuler
2004-11-10 15:30:00 +00:00
parent 19fe539ed1
commit 3234fcd2da
2 changed files with 5 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ as Lua 5.0.
<a name="version"></a>
<h2>Current version</h2>
<p>
Current version is 1.0 alpha.
Current version is 1.0 beta.
It was developed for Lua 5.0.
</p>
<p>
@@ -132,7 +132,7 @@ Comments are welcome!
<p>
<hr>
<small>
$Id: index.html,v 1.4 2004/11/10 14:18:45 tuler Exp $
$Id: index.html,v 1.5 2004/11/10 15:30:00 tuler Exp $
</small>
</body>

View File

@@ -9,7 +9,7 @@
** lfs.lock (fh, mode)
** lfs.unlock (fh)
**
** $Id: lfs.c,v 1.12 2004/11/05 10:54:28 tomas Exp $
** $Id: lfs.c,v 1.13 2004/11/10 15:30:53 tuler Exp $
*/
#include <errno.h>
@@ -350,7 +350,7 @@ static int dir_create_meta (lua_State *L) {
#define S_ISLNK(mode) (0)
#define S_ISSOCK(mode) (0)
#define S_ISFIFO(mode) (0)
#define S_ISCHR(mode) (0)
#define S_ISCHR(mode) (mode&_S_IFCHR)
#define S_ISBLK(mode) (0)
#endif
/*
@@ -466,7 +466,7 @@ static void set_info (lua_State *L) {
lua_pushliteral (L, "LuaFileSystem");
lua_settable (L, -3);
lua_pushliteral (L, "_VERSION");
lua_pushliteral (L, "1.0a");
lua_pushliteral (L, "1.0b");
lua_settable (L, -3);
}