From 3234fcd2da7557f96bc2e92d130b33c7ee5c9735 Mon Sep 17 00:00:00 2001 From: tuler Date: Wed, 10 Nov 2004 15:30:00 +0000 Subject: versao beta, e nao alfa --- doc/us/index.html | 4 ++-- src/lfs.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/us/index.html b/doc/us/index.html index ef3751f..bbaea92 100644 --- a/doc/us/index.html +++ b/doc/us/index.html @@ -57,7 +57,7 @@ as Lua 5.0.

Current version

-Current version is 1.0 alpha. +Current version is 1.0 beta. It was developed for Lua 5.0.

@@ -132,7 +132,7 @@ Comments are welcome!


-$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 $ diff --git a/src/lfs.c b/src/lfs.c index 6366aab..97e4f38 100644 --- a/src/lfs.c +++ b/src/lfs.c @@ -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 @@ -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); } -- cgit v1.2.3-55-g6feb