From 60f1d850c218aea4adec0af795fc87d93e65cc9b Mon Sep 17 00:00:00 2001 From: Ben Kibbey Date: Wed, 14 Jan 2015 20:28:19 -0500 Subject: [PATCH] Update copyright year to 2015. --- libchess/chess.h | 2 +- libchess/common.h | 2 +- libchess/debug.c | 2 +- libchess/debug.h | 2 +- libchess/move.c | 2 +- libchess/pgn.c | 2 +- src/cboard.c | 4 ++-- src/colors.c | 2 +- src/colors.h | 2 +- src/common.h | 2 +- src/conf.h | 2 +- src/engine.c | 2 +- src/engine.h | 2 +- src/filebrowser.c | 2 +- src/filebrowser.h | 2 +- src/input.c | 2 +- src/input.h | 2 +- src/keys.h | 2 +- src/menu.c | 2 +- src/menu.h | 2 +- src/message.c | 2 +- src/message.h | 2 +- src/misc.c | 2 +- src/misc.h | 2 +- src/rcfile.c | 2 +- src/rcfile.h | 2 +- src/tags.c | 2 +- src/window.c | 2 +- src/window.h | 2 +- 29 files changed, 30 insertions(+), 30 deletions(-) diff --git a/libchess/chess.h b/libchess/chess.h index 9a4ea7b..b0dfea7 100644 --- a/libchess/chess.h +++ b/libchess/chess.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/libchess/common.h b/libchess/common.h index a352c22..65196f6 100644 --- a/libchess/common.h +++ b/libchess/common.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/libchess/debug.c b/libchess/debug.c index dfd550c..c7be254 100644 --- a/libchess/debug.c +++ b/libchess/debug.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/libchess/debug.h b/libchess/debug.h index 96ab229..1c1f2da 100644 --- a/libchess/debug.h +++ b/libchess/debug.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/libchess/move.c b/libchess/move.c index 890a384..0237c4c 100644 --- a/libchess/move.c +++ b/libchess/move.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/libchess/pgn.c b/libchess/pgn.c index 312071d..5bd00ee 100644 --- a/libchess/pgn.c +++ b/libchess/pgn.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/cboard.c b/src/cboard.c index a090a8d..3f0fc68 100644 --- a/src/cboard.c +++ b/src/cboard.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -69,7 +69,7 @@ #include #endif -#define COPYRIGHT "Copyright (C) 2002-2013 " PACKAGE_BUGREPORT +#define COPYRIGHT "Copyright (C) 2002-2015 " PACKAGE_BUGREPORT #define LINE_GRAPHIC(c) ((!config.linegraphics) ? ' ' : c) #define ROWTOMATRIX(r) ((8 - r) * 2 + 2 - 1) #define COLTOMATRIX(c) ((c == 1) ? 1 : c * 4 - 3) diff --git a/src/colors.c b/src/colors.c index 354f096..aa947bf 100644 --- a/src/colors.c +++ b/src/colors.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/colors.h b/src/colors.h index 9ed1f49..1402115 100644 --- a/src/colors.h +++ b/src/colors.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/common.h b/src/common.h index 85d9ba6..eb29718 100644 --- a/src/common.h +++ b/src/common.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/conf.h b/src/conf.h index 19c0c4b..3b954d1 100644 --- a/src/conf.h +++ b/src/conf.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/engine.c b/src/engine.c index 859d560..6c9f34c 100644 --- a/src/engine.c +++ b/src/engine.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/engine.h b/src/engine.h index 03fbbdb..ff5ebcc 100644 --- a/src/engine.h +++ b/src/engine.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/filebrowser.c b/src/filebrowser.c index 7a435a6..5fc26f4 100644 --- a/src/filebrowser.c +++ b/src/filebrowser.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2007-2013 Ben Kibbey + Copyright (C) 2007-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/filebrowser.h b/src/filebrowser.h index 73c90d1..febd79f 100644 --- a/src/filebrowser.h +++ b/src/filebrowser.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2007-2013 Ben Kibbey + Copyright (C) 2007-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/input.c b/src/input.c index 223d049..0da2e74 100644 --- a/src/input.c +++ b/src/input.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/input.h b/src/input.h index 6ecb0bd..f768b60 100644 --- a/src/input.h +++ b/src/input.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/keys.h b/src/keys.h index 2196788..23c7dbf 100644 --- a/src/keys.h +++ b/src/keys.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/menu.c b/src/menu.c index a63c58f..b9c72a3 100644 --- a/src/menu.c +++ b/src/menu.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/menu.h b/src/menu.h index 6e59e3b..7b28a6d 100644 --- a/src/menu.h +++ b/src/menu.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/message.c b/src/message.c index 008eca0..9cb73af 100644 --- a/src/message.c +++ b/src/message.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/message.h b/src/message.h index a78977e..e08ed30 100644 --- a/src/message.h +++ b/src/message.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/misc.c b/src/misc.c index 2a53fad..4ef1d99 100644 --- a/src/misc.c +++ b/src/misc.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/misc.h b/src/misc.h index 8244a53..9ff1843 100644 --- a/src/misc.h +++ b/src/misc.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/rcfile.c b/src/rcfile.c index e4bf406..2ad2b57 100644 --- a/src/rcfile.c +++ b/src/rcfile.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/rcfile.h b/src/rcfile.h index 0760daf..75d0f57 100644 --- a/src/rcfile.h +++ b/src/rcfile.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/tags.c b/src/tags.c index e5ce2af..20e78f6 100644 --- a/src/tags.c +++ b/src/tags.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/window.c b/src/window.c index dffbc40..4cedca0 100644 --- a/src/window.c +++ b/src/window.c @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/window.h b/src/window.h index 97c16da..91888df 100644 --- a/src/window.h +++ b/src/window.h @@ -1,6 +1,6 @@ /* vim:tw=78:ts=8:sw=4:set ft=c: */ /* - Copyright (C) 2002-2013 Ben Kibbey + Copyright (C) 2002-2015 Ben Kibbey This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -- 2.11.4.GIT