diff options
author | tomas <tomas> | 2006-06-08 18:06:18 +0000 |
---|---|---|
committer | tomas <tomas> | 2006-06-08 18:06:18 +0000 |
commit | e10a4bc816c5401ec43a707d724db4730c8b9f4f (patch) | |
tree | 870fbbc64766af21ba79e0d4333f10827415f57e /src | |
parent | c182bab5f9bfae9dfa2d44e3ca46783f52e1a915 (diff) | |
download | luafilesystem-e10a4bc816c5401ec43a707d724db4730c8b9f4f.tar.gz luafilesystem-e10a4bc816c5401ec43a707d724db4730c8b9f4f.tar.bz2 luafilesystem-e10a4bc816c5401ec43a707d724db4730c8b9f4f.zip |
Correcting version number
Diffstat (limited to 'src')
-rw-r--r-- | src/lfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||