diff options
Diffstat (limited to 'src/pdlua.c')
-rw-r--r-- | src/pdlua.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pdlua.c b/src/pdlua.c index 7feb382..6891bfc 100644 --- a/src/pdlua.c +++ b/src/pdlua.c @@ -2,11 +2,11 @@ /* Reformmatted the code and added some debug messages. Changed the name of the class to pdlua */
/** @file lua.c
* @brief pdlua -- a Lua embedding for Pd.
- * @author Claude Heiland-Allen <claudiusmaximus@goto10.org>
+ * @author Claude Heiland-Allen <claude@mathr.co.uk>
* @date 2008
* @version 0.6~svn
*
- * Copyright (C) 2007,2008 Claude Heiland-Allen <claudiusmaximus@goto10.org>
+ * Copyright (C) 2007,2008 Claude Heiland-Allen <claude@mathr.co.uk>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -1751,7 +1751,7 @@ void pdlua_setup(void) int fd;
int result;
char* pdluaver = "pdlua 0.7.2 (GPL) 2014 Martin Peach, based on";
- char* luaver = "lua 0.6~svn (GPL) 2008 Claude Heiland-Allen <claudiusmaximus@goto10.org>";
+ char* luaver = "lua 0.6~svn (GPL) 2008 Claude Heiland-Allen <claude@mathr.co.uk>";
char compiled[MAXPDSTRING];
char luaversionStr[MAXPDSTRING];
const lua_Number *luaversion = lua_version (NULL);
|