summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chess-autosave.el22
-rw-r--r--chess-chat.el27
-rw-r--r--chess-kibitz.el26
-rw-r--r--chess-ucb.el26
4 files changed, 91 insertions, 10 deletions
diff --git a/chess-autosave.el b/chess-autosave.el
index 96dbdf2..2708d24 100644
--- a/chess-autosave.el
+++ b/chess-autosave.el
@@ -1,7 +1,25 @@
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;; chess-autosave.el --- A special kind of display that merely autosaves the game
;;
-;; A special kind of display that merely autosaves the game
+;; Copyright (C) 2002, 2004, 2014 Free Software Foundation, Inc.
+
+;; Author: John Wiegley <johnw@gnu.org>
+;; Maintainer: Mario Lang <mlang@delysid.org>
+;; Keywords: games
+
+;; This is free software; you can redistribute it and/or modify it under
+;; the terms of the GNU General Public License as published by the Free
+;; Software Foundation; either version 3, or (at your option) any later
+;; version.
;;
+;; This is distributed in the hope that it will be useful, but WITHOUT
+;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+;; for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Code:
(require 'chess-game)
(require 'chess-database)
diff --git a/chess-chat.el b/chess-chat.el
index dd6f694..339a73d 100644
--- a/chess-chat.el
+++ b/chess-chat.el
@@ -1,8 +1,29 @@
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;; chess-chat.el --- Very much like kibitzing, but not saved.
+
+;; Copyright (C) 2002, 2014 Free Software Foundation, Inc.
+
+;; Author: John Wiegley <johnw@gnu.org>
+;; Maintainer: Mario Lang <mlang@delysid.org>
+;; Keywords: games
+
+;; This is free software; you can redistribute it and/or modify it under
+;; the terms of the GNU General Public License as published by the Free
+;; Software Foundation; either version 3, or (at your option) any later
+;; version.
;;
-;; Implements chess chat, which is very much like kibitzing, but not
-;; saved. RET is used to send each chat line.
+;; This is distributed in the hope that it will be useful, but WITHOUT
+;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+;; for more details.
;;
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; RET is used to send each chat line.
+
+;;; Code:
(require 'chess-module)
diff --git a/chess-kibitz.el b/chess-kibitz.el
index 07b5600..ff02265 100644
--- a/chess-kibitz.el
+++ b/chess-kibitz.el
@@ -1,8 +1,30 @@
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;; chess-kibitz.el --- Chess kibitzing, stored as annotations
+
+;; Copyright (C) 2002, 2014 Free Software Foundation, Inc.
+
+;; Author: John Wiegley <johnw@gnu.org>
+;; Maintainer: Mario Lang <mlang@delysid.org>
+;; Keywords: games
+
+;; This is free software; you can redistribute it and/or modify it under
+;; the terms of the GNU General Public License as published by the Free
+;; Software Foundation; either version 3, or (at your option) any later
+;; version.
+;;
+;; This is distributed in the hope that it will be useful, but WITHOUT
+;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+;; for more details.
;;
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
;; Implements chess kibitzing, stored as annotations to the game being
;; viewed or played. C-c C-c is used to save a kibitzing comment.
-;;
+
+;;; Code:
(require 'chess-game)
diff --git a/chess-ucb.el b/chess-ucb.el
index b553428..4ca2bf1 100644
--- a/chess-ucb.el
+++ b/chess-ucb.el
@@ -1,11 +1,31 @@
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;; chess-ucb.el --- Engine interface to the Novag Universal Chess Board
+
+;; Copyright (C) 2002, 2014 Free Software Foundation, Inc.
+
+;; Author: John Wiegley <johnw@gnu.org>
+;; Maintainer: Mario Lang <mlang@delysid.org>
+;; Keywords: games
+
+;; This is free software; you can redistribute it and/or modify it under
+;; the terms of the GNU General Public License as published by the Free
+;; Software Foundation; either version 3, or (at your option) any later
+;; version.
;;
-;; Engine interface to the Novag Universal Chess Board
+;; This is distributed in the hope that it will be useful, but WITHOUT
+;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+;; for more details.
;;
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
;; jww (2002-04-25): This code has not been tested yet, since I don't
;; have access to a UCB. If anybody wants to donate one, or the money
;; for one ($300), I would be happy to correct this module. :)
-;;
+
+;;; Code:
(require 'chess-common)