mirror of
https://github.com/lunarmodules/luafilesystem.git
synced 2026-07-22 02:53:06 +00:00
versao beta, e nao alfa
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user