aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruid20006 <uid20006>2005-05-20 18:32:19 +0000
committeruid20006 <uid20006>2005-05-20 18:32:19 +0000
commit646a17acdd37bbe1712f708858470cd1432dc224 (patch)
treee82d12edf08b482c234dac4495286a5e3fc9c90c
parent8db4be836c2147b037cde9f844ce230525067146 (diff)
downloadluafilesystem-646a17acdd37bbe1712f708858470cd1432dc224.tar.gz
luafilesystem-646a17acdd37bbe1712f708858470cd1432dc224.tar.bz2
luafilesystem-646a17acdd37bbe1712f708858470cd1432dc224.zip
changed from 1.1.0 to 1.1
-rw-r--r--Makefile4
-rw-r--r--src/lfs.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 1524559..f9b877c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
1# $Id: Makefile,v 1.15 2005/04/08 18:57:11 tomas Exp $ 1# $Id: Makefile,v 1.16 2005/05/20 18:32:51 uid20006 Exp $
2 2
3T= lfs 3T= lfs
4 4
5include ./config 5include ./config
6 6
7V= 1.1.0 7V= 1.1
8DIST_DIR= luafilesystem-$V 8DIST_DIR= luafilesystem-$V
9TAR_FILE= $(DIST_DIR).tar.gz 9TAR_FILE= $(DIST_DIR).tar.gz
10ZIP_FILE= $(DIST_DIR).zip 10ZIP_FILE= $(DIST_DIR).zip
diff --git a/src/lfs.c b/src/lfs.c
index e11aea7..c0ac046 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -10,7 +10,7 @@
10** lfs.touch (filepath [, atime [, mtime]]) 10** lfs.touch (filepath [, atime [, mtime]])
11** lfs.unlock (fh) 11** lfs.unlock (fh)
12** 12**
13** $Id: lfs.c,v 1.20 2005/04/08 18:57:11 tomas Exp $ 13** $Id: lfs.c,v 1.21 2005/05/20 18:32:19 uid20006 Exp $
14*/ 14*/
15 15
16#include <errno.h> 16#include <errno.h>
@@ -507,7 +507,7 @@ static void set_info (lua_State *L) {
507 lua_pushliteral (L, "LuaFileSystem"); 507 lua_pushliteral (L, "LuaFileSystem");
508 lua_settable (L, -3); 508 lua_settable (L, -3);
509 lua_pushliteral (L, "_VERSION"); 509 lua_pushliteral (L, "_VERSION");
510 lua_pushliteral (L, "1.1.0"); 510 lua_pushliteral (L, "1.1");
511 lua_settable (L, -3); 511 lua_settable (L, -3);
512} 512}
513 513