From 416acb469e9328e89cb276d5f0f65ce78cb65c3f Mon Sep 17 00:00:00 2001 From: Mario Lang Date: Mon, 19 May 2014 00:40:01 +0200 Subject: Add proper file header. --- chess-plain.el | 36 +++++++++++++++++++++++++++++++----- 1 file changed, 31 insertions(+), 5 deletions(-) (limited to 'chess-plain.el') diff --git a/chess-plain.el b/chess-plain.el index 1682533..8517094 100644 --- a/chess-plain.el +++ b/chess-plain.el @@ -1,12 +1,38 @@ -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; -;; Plain ASCII chess display -;; +;;; chess-plain.el --- Plain ASCII chess display -(require 'chess-display) +;; Copyright (C) 2002-2005, 2014 Free Software Foundation, Inc. + +;; Author: John Wiegley +;; Maintainer: Mario Lang +;; Keywords: games + +;; 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 +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program 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 this program. If not, see . + +;;; Commentary: + +;; This chess display module presents a very compact plain character-based +;; view of the chessboard. Contrary to the classic chess-ics1, it does not draw +;; a border around squares. +;; +;; The characters used to display individual pieces can be customized, +;; see `chess-plain-piece-chars' for a number of suggestions. Other aspects of +;; the chessboard are also customizable, see customization group `chess-plain'. ;;; Code: +(require 'chess-display) + (defgroup chess-plain nil "A minimal, customizable ASCII display." :group 'chess-display) -- cgit v1.2.3