diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | src/lfs.c | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -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 | ||
3 | T= lfs | 3 | T= lfs |
4 | V= 1.2 | 4 | V= 1.2.1 |
5 | CONFIG= ./config | 5 | CONFIG= ./config |
6 | 6 | ||
7 | include $(CONFIG) | 7 | include $(CONFIG) |
@@ -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 | ||