aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--src/lfs.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index ffbcd81..2c11b58 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
1# $Id: Makefile,v 1.27 2006/06/08 16:23:25 tomas Exp $ 1# $Id: Makefile,v 1.28 2006/06/08 18:06:18 tomas Exp $
2 2
3T= lfs 3T= lfs
4V= 1.2 4V= 1.2.1
5CONFIG= ./config 5CONFIG= ./config
6 6
7include $(CONFIG) 7include $(CONFIG)
diff --git a/src/lfs.c b/src/lfs.c
index 068fd7f..43d5e9e 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -14,7 +14,7 @@
14** lfs.touch (filepath [, atime [, mtime]]) 14** lfs.touch (filepath [, atime [, mtime]])
15** lfs.unlock (fh) 15** lfs.unlock (fh)
16** 16**
17** $Id: lfs.c,v 1.33 2006/06/08 16:16:23 tomas Exp $ 17** $Id: lfs.c,v 1.34 2006/06/08 18:06:18 tomas Exp $
18*/ 18*/
19 19
20#include <errno.h> 20#include <errno.h>
@@ -564,7 +564,7 @@ static void set_info (lua_State *L) {
564 lua_pushliteral (L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution"); 564 lua_pushliteral (L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution");
565 lua_settable (L, -3); 565 lua_settable (L, -3);
566 lua_pushliteral (L, "_VERSION"); 566 lua_pushliteral (L, "_VERSION");
567 lua_pushliteral (L, "LuaFileSystem 1.2"); 567 lua_pushliteral (L, "LuaFileSystem 1.2.1");
568 lua_settable (L, -3); 568 lua_settable (L, -3);
569} 569}
570 570