aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/us/index.html4
-rw-r--r--src/lfs.c6
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.
57<a name="version"></a> 57<a name="version"></a>
58<h2>Current version</h2> 58<h2>Current version</h2>
59<p> 59<p>
60Current version is 1.0 alpha. 60Current version is 1.0 beta.
61It was developed for Lua 5.0. 61It was developed for Lua 5.0.
62</p> 62</p>
63<p> 63<p>
@@ -132,7 +132,7 @@ Comments are welcome!
132<p> 132<p>
133<hr> 133<hr>
134<small> 134<small>
135$Id: index.html,v 1.4 2004/11/10 14:18:45 tuler Exp $ 135$Id: index.html,v 1.5 2004/11/10 15:30:00 tuler Exp $
136</small> 136</small>
137 137
138</body> 138</body>
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 @@
9** lfs.lock (fh, mode) 9** lfs.lock (fh, mode)
10** lfs.unlock (fh) 10** lfs.unlock (fh)
11** 11**
12** $Id: lfs.c,v 1.12 2004/11/05 10:54:28 tomas Exp $ 12** $Id: lfs.c,v 1.13 2004/11/10 15:30:53 tuler Exp $
13*/ 13*/
14 14
15#include <errno.h> 15#include <errno.h>
@@ -350,7 +350,7 @@ static int dir_create_meta (lua_State *L) {
350 #define S_ISLNK(mode) (0) 350 #define S_ISLNK(mode) (0)
351 #define S_ISSOCK(mode) (0) 351 #define S_ISSOCK(mode) (0)
352 #define S_ISFIFO(mode) (0) 352 #define S_ISFIFO(mode) (0)
353 #define S_ISCHR(mode) (0) 353 #define S_ISCHR(mode) (mode&_S_IFCHR)
354 #define S_ISBLK(mode) (0) 354 #define S_ISBLK(mode) (0)
355#endif 355#endif
356/* 356/*
@@ -466,7 +466,7 @@ static void set_info (lua_State *L) {
466 lua_pushliteral (L, "LuaFileSystem"); 466 lua_pushliteral (L, "LuaFileSystem");
467 lua_settable (L, -3); 467 lua_settable (L, -3);
468 lua_pushliteral (L, "_VERSION"); 468 lua_pushliteral (L, "_VERSION");
469 lua_pushliteral (L, "1.0a"); 469 lua_pushliteral (L, "1.0b");
470 lua_settable (L, -3); 470 lua_settable (L, -3);
471} 471}
472 472