diff options
-rw-r--r-- | src/lfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ | |||
15 | ** lfs.touch (filepath [, atime [, mtime]]) | 15 | ** lfs.touch (filepath [, atime [, mtime]]) |
16 | ** lfs.unlock (fh) | 16 | ** lfs.unlock (fh) |
17 | ** | 17 | ** |
18 | ** $Id: lfs.c,v 1.41 2007/10/05 02:06:58 carregal Exp $ | 18 | ** $Id: lfs.c,v 1.42 2007/10/26 21:01:07 carregal Exp $ |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <errno.h> | 21 | #include <errno.h> |
@@ -581,7 +581,7 @@ static void set_info (lua_State *L) { | |||
581 | 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"); | 581 | 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"); |
582 | lua_settable (L, -3); | 582 | lua_settable (L, -3); |
583 | lua_pushliteral (L, "_VERSION"); | 583 | lua_pushliteral (L, "_VERSION"); |
584 | lua_pushliteral (L, "LuaFileSystem 1.3.0 (work)"); | 584 | lua_pushliteral (L, "LuaFileSystem 1.3.0"); |
585 | lua_settable (L, -3); | 585 | lua_settable (L, -3); |
586 | } | 586 | } |
587 | 587 | ||