summaryrefslogtreecommitdiff
path: root/lisp/play/gamegrid.el
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-07-16 09:10:19 +0000
committerPavel Janík <Pavel@Janik.cz>2001-07-16 09:10:19 +0000
commitc17451cc3aa36ce53a36d9a10a9514065e124ac5 (patch)
treebee21e5167b5d74d9281634a953ca6aadda11a5e /lisp/play/gamegrid.el
parent45f3c80fd15f1d97b80c01b1bc08855af738c31d (diff)
downloademacs-c17451cc3aa36ce53a36d9a10a9514065e124ac5.tar.gz
Some fixes to follow coding conventions.
Diffstat (limited to 'lisp/play/gamegrid.el')
-rw-r--r--lisp/play/gamegrid.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/play/gamegrid.el b/lisp/play/gamegrid.el
index c2320a7b8c6..27f489613e8 100644
--- a/lisp/play/gamegrid.el
+++ b/lisp/play/gamegrid.el
@@ -1,4 +1,4 @@
-;;; gamegrid.el -- Library for implementing grid-based games on Emacs
+;;; gamegrid.el --- library for implementing grid-based games on Emacs
;; Copyright (C) 1997, 1998 Free Software Foundation, Inc.
@@ -26,6 +26,8 @@
;;; Commentary:
+;;; Code:
+
(eval-when-compile
(require 'cl))
@@ -425,3 +427,5 @@ static char *noname[] = {
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(provide 'gamegrid)
+
+;;; gamegrid.el ends here