aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortuler <tuler>2005-06-09 16:22:37 +0000
committertuler <tuler>2005-06-09 16:22:37 +0000
commit82926a72edd9de0204dcf48d280fb3433dbe05f1 (patch)
tree414e56c85d6b540be534da2aba1fdb21d2031a77 /src
parent7446e3148678a840512a23c569593597ffb76ea9 (diff)
downloadluafilesystem-82926a72edd9de0204dcf48d280fb3433dbe05f1.tar.gz
luafilesystem-82926a72edd9de0204dcf48d280fb3433dbe05f1.tar.bz2
luafilesystem-82926a72edd9de0204dcf48d280fb3433dbe05f1.zip
version update
Diffstat (limited to 'src')
-rw-r--r--src/lfs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lfs.c b/src/lfs.c
index c39e296..54df4ce 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -11,7 +11,7 @@
11** lfs.touch (filepath [, atime [, mtime]]) 11** lfs.touch (filepath [, atime [, mtime]])
12** lfs.unlock (fh) 12** lfs.unlock (fh)
13** 13**
14** $Id: lfs.c,v 1.22 2005/06/03 21:50:59 tuler Exp $ 14** $Id: lfs.c,v 1.23 2005/06/09 16:22:37 tuler Exp $
15*/ 15*/
16 16
17#include <errno.h> 17#include <errno.h>
@@ -516,7 +516,7 @@ static int file_info (lua_State *L) {
516*/ 516*/
517static void set_info (lua_State *L) { 517static void set_info (lua_State *L) {
518 lua_pushliteral (L, "_COPYRIGHT"); 518 lua_pushliteral (L, "_COPYRIGHT");
519 lua_pushliteral (L, "Copyright (C) 2004-2005 Kepler Project"); 519 lua_pushliteral (L, "Copyright (C) 2003-2005 Kepler Project");
520 lua_settable (L, -3); 520 lua_settable (L, -3);
521 lua_pushliteral (L, "_DESCRIPTION"); 521 lua_pushliteral (L, "_DESCRIPTION");
522 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"); 522 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");
@@ -525,7 +525,7 @@ static void set_info (lua_State *L) {
525 lua_pushliteral (L, "LuaFileSystem"); 525 lua_pushliteral (L, "LuaFileSystem");
526 lua_settable (L, -3); 526 lua_settable (L, -3);
527 lua_pushliteral (L, "_VERSION"); 527 lua_pushliteral (L, "_VERSION");
528 lua_pushliteral (L, "1.1"); 528 lua_pushliteral (L, "1.2");
529 lua_settable (L, -3); 529 lua_settable (L, -3);
530} 530}
531 531