summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradley Smith2008-10-14 23:18:45 +0100
committerBradley Smith2008-10-14 23:18:45 +0100
commit5f49910529e62ff0ead4a892e7988efb8a29bc78 (patch)
treea2fc2caeb26991608ed52dc5a3e79e8e5d1389e4
parentCorrect scheme file installation so that the files are not executable. (diff)
downloadgnurobots-5f49910529e62ff0ead4a892e7988efb8a29bc78.tar.gz
Change email address for Jim Hall, upon request.
Signed-off-by: Bradley Smith <brad@brad-smith.co.uk>
-rw-r--r--AUTHORS2
-rw-r--r--COPYING2
-rw-r--r--configure.ac2
-rw-r--r--doc/Robots-HOWTO2
-rw-r--r--doc/contrib2
-rw-r--r--include/api.h2
-rw-r--r--include/configs.h2
-rw-r--r--scheme/beep.scm2
-rw-r--r--scheme/simple.scm2
-rw-r--r--scheme/stop.scm2
-rw-r--r--scheme/zap.scm2
-rw-r--r--src/api.c2
-rw-r--r--src/grobot.c2
-rw-r--r--src/main.c2
-rw-r--r--src/map.c2
15 files changed, 15 insertions, 15 deletions
diff --git a/AUTHORS b/AUTHORS
index ba745ba..837c4f6 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -3,7 +3,7 @@ Authors of GNU Robots
Bradley Smith <brad@brad-smith.co.uk>
Daniel M. B. Fortes Manoel <dmbfm2@uol.com.br>
-James Hall <jhall@gnu.org>
+James Hall <jhall@freedos.org>
Tim Northover <tim@pnorthover.freeserve.co.uk>
Zeeshan Ali Khattak <zeenix@gmail.com>
diff --git a/COPYING b/COPYING
index 6b98111..a329bba 100644
--- a/COPYING
+++ b/COPYING
@@ -5,7 +5,7 @@ the GPL below is copyrighted by the Free Software Foundation, but the
instance of code that it refers to (the GNU Robots game) is
copyrighted by me and others who actually wrote it.
- -Jim Hall <jhall1@isd.net>
+ -Jim Hall <jhall@freedos.org>
------------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index f69de6a..e49789e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-## Copyright (C) 1998 Jim Hall <jhall1@isd.net>
+## Copyright (C) 1998 Jim Hall <jhall@freedos.org>
## Copyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>
##
## configure.ac for GNU Robots
diff --git a/doc/Robots-HOWTO b/doc/Robots-HOWTO
index 017d803..2920842 100644
--- a/doc/Robots-HOWTO
+++ b/doc/Robots-HOWTO
@@ -2,7 +2,7 @@ Robots-HOWTO
Writing programs for GNU Robots
-Jim Hall <jhall1@isd.net>
+Jim Hall <jhall@freedos.org>
_____________________________________________________________________
diff --git a/doc/contrib b/doc/contrib
index e528b55..3dc77c2 100644
--- a/doc/contrib
+++ b/doc/contrib
@@ -4,7 +4,7 @@ _____________________________________________________________________
* Bradley Smith <brad@brad-smith.co.uk>
Current author
-* Jim Hall, <jhall1@isd.net>
+* Jim Hall, <jhall@freedos.org>
Author
* Eric P. Hutchins <hutchiep190@potsdam.edu>
diff --git a/include/api.h b/include/api.h
index 8bb3b29..240312d 100644
--- a/include/api.h
+++ b/include/api.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998 Jim Hall <jhall1@isd.net>
+/* Copyright (C) 1998 Jim Hall <jhall@freedos.org>
* Copyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>
*
* Robot API for the GNU Robots game
diff --git a/include/configs.h b/include/configs.h
index 2447b15..b850700 100644
--- a/include/configs.h
+++ b/include/configs.h
@@ -76,6 +76,6 @@
#define DEFAULT_MAP_ROWS 20
#define PKGINFO PACKAGE_NAME " " VERSION
-#define COPYRIGHT "Copyright (C) 1998,1999,2000 Jim Hall <jhall1@isd.net>\nCopyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>"
+#define COPYRIGHT "Copyright (C) 1998,1999,2000 Jim Hall <jhall@freedos.org>\nCopyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>"
#endif /* CONFIGS_H */
diff --git a/scheme/beep.scm b/scheme/beep.scm
index 72b462b..2b40b07 100644
--- a/scheme/beep.scm
+++ b/scheme/beep.scm
@@ -1,5 +1,5 @@
;;; beep.scm
-;;; Sample robot provided by Jim Hall <jhall1@isd.net>
+;;; Sample robot provided by Jim Hall <jhall@freedos.org>
;;; This robot will just turn around 360-degrees, and will beep if it finds
;;; a prize item. This is similar to a radar.
diff --git a/scheme/simple.scm b/scheme/simple.scm
index 66f3591..eccabaf 100644
--- a/scheme/simple.scm
+++ b/scheme/simple.scm
@@ -1,5 +1,5 @@
;;; simple.scm
-;;; Sample robot provided by Jim Hall <jhall1@isd.net>
+;;; Sample robot provided by Jim Hall <jhall@freedos.org>
;;; This robot will simply hunt down and grab any prizes in its direct
;;; line of sight. If it runs into an obstacle, it turns right and
;;; continues from there. When it has turned 360-degrees, it stops.
diff --git a/scheme/stop.scm b/scheme/stop.scm
index 511988b..b8c5360 100644
--- a/scheme/stop.scm
+++ b/scheme/stop.scm
@@ -1,5 +1,5 @@
;;; stop.scm
-;;; Sample robot provided by Jim Hall <jhall1@isd.net>
+;;; Sample robot provided by Jim Hall <jhall@freedos.org>
;;; THIS ROBOT IS NOT REALLY INTENDED FOR PUBLIC CONSUMPTION!
;;; Tests my new `stop' and `quit' primitives for GNU Robots
diff --git a/scheme/zap.scm b/scheme/zap.scm
index 67e8d4d..1d00357 100644
--- a/scheme/zap.scm
+++ b/scheme/zap.scm
@@ -1,5 +1,5 @@
;;; zap.scm
-;;; Sample robot provided by Jim Hall <jhall1@isd.net>
+;;; Sample robot provided by Jim Hall <jhall@freedos.org>
;;; This is an agressive little robot that will just turn 360-degrees,
;;; and will immediately zap anything that isn't a space. This builds
;;; on the beep.scm robot program, so it will also beep if it finds a
diff --git a/src/api.c b/src/api.c
index ee62e32..c6ec1a7 100644
--- a/src/api.c
+++ b/src/api.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998 Jim Hall <jhall1@isd.net>
+/* Copyright (C) 1998 Jim Hall <jhall@freedos.org>
* Copyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>
*
* Robot API for the GNU Robots game
diff --git a/src/grobot.c b/src/grobot.c
index bf3c394..6971bb8 100644
--- a/src/grobot.c
+++ b/src/grobot.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998 Jim Hall <jhall1@isd.net>
+/* Copyright (C) 1998 Jim Hall <jhall@freedos.org>
* Copyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>
*
* Robot object for the GNU Robots game
diff --git a/src/main.c b/src/main.c
index 3e24e78..71a0fe6 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998 Jim Hall <jhall1@isd.net>
+/* Copyright (C) 1998 Jim Hall <jhall@freedos.org>
* Copyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>
*
* GNU Robots game engine. This is the main() program, using GNU
diff --git a/src/map.c b/src/map.c
index 857ac48..be3ead6 100644
--- a/src/map.c
+++ b/src/map.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998 Jim Hall <jhall1@isd.net>
+/* Copyright (C) 1998 Jim Hall <jhall@freedos.org>
* Copyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>
*
* GNU Robots Map object.