aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Peach <mrpeach@users.sourceforge.net>2014-08-25 04:26:59 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 14:28:31 +0200
commit11e1881badf80f7eacd99a55c5536e45e36b9e48 (patch)
tree1167940bc4a8dc1ac60e449756f44b84d12ccb88
parentfc14ab9fc93aaa9931dbbd704cf9200a3d87e9e0 (diff)
Changed Claude Heiland-Allen's email as requested inHEADsvn2git-headmaster
http://lists.puredata.info/pipermail/pd-dev/2014-08/019935.html svn path=/trunk/externals/loaders/pdlua/; revision=17339
-rw-r--r--README2
-rw-r--r--doc/pdlua.tex2
-rw-r--r--src/pd.lua2
-rw-r--r--src/pdlua.c6
4 files changed, 6 insertions, 6 deletions
diff --git a/README b/README
index f062239..07a8dbd 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
pdlua -- a Lua embedding for Pd
-Copyright (C) 2007,2008,2009 Claude Heiland-Allen <claudiusmaximus@goto10.org>
+Copyright (C) 2007,2008,2009 Claude Heiland-Allen <claude@mathr.co.uk>
This program is free software; you can redistribute it and/or
diff --git a/doc/pdlua.tex b/doc/pdlua.tex
index becceb9..c37e23d 100644
--- a/doc/pdlua.tex
+++ b/doc/pdlua.tex
@@ -3,7 +3,7 @@
\title{pdlua}
\author{Claude Heiland-Allen
\\
-\tt{claudiusmaximus@goto10.org}}
+\tt{claude@mathr.co.uk}}
\begin{document}
diff --git a/src/pd.lua b/src/pd.lua
index 7ad18e9..fdd1c4a 100644
--- a/src/pd.lua
+++ b/src/pd.lua
@@ -1,6 +1,6 @@
--[[
pdlua -- a Lua embedding for Pd
-Copyright (C) 2007,2008 Claude Heiland-Allen <claudiusmaximus@goto10.org>
+Copyright (C) 2007,2008 Claude Heiland-Allen <claude@mathr.co.uk>
Copyright (C) 2012 Martin Peach martin.peach@sympatico.ca
This program is free software; you can redistribute it and/or
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);