summaryrefslogtreecommitdiff
path: root/lisp/play
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1992-05-30 22:12:04 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1992-05-30 22:12:04 +0000
commit6594deb0dcec8f1a663fc47b0588a7b4c935a6c5 (patch)
tree29925fd14277477ef3fa88270c19785985926c04 /lisp/play
parentc88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d (diff)
downloademacs-6594deb0dcec8f1a663fc47b0588a7b4c935a6c5.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp/play')
-rw-r--r--lisp/play/life.el4
-rw-r--r--lisp/play/meese.el4
-rw-r--r--lisp/play/mpuz.el6
3 files changed, 10 insertions, 4 deletions
diff --git a/lisp/play/life.el b/lisp/play/life.el
index 0aceb065609..3ce585d9f16 100644
--- a/lisp/play/life.el
+++ b/lisp/play/life.el
@@ -1,4 +1,5 @@
-;; Conway's `Life' for GNU Emacs
+;;; life.el --- John Horton Conway's `Life' game for GNU Emacs
+
;; Copyright (C) 1988 Free Software Foundation, Inc.
;; Contributed by Kyle Jones, talos!kjones@uunet.uu.net
@@ -273,3 +274,4 @@ generations (this defaults to 1)."
(provide 'life)
+;;; life.el ends here
diff --git a/lisp/play/meese.el b/lisp/play/meese.el
index 5ba9dfd2ad2..5bbe3b1a07b 100644
--- a/lisp/play/meese.el
+++ b/lisp/play/meese.el
@@ -1,3 +1,5 @@
+;; meese.el --- protect the impressionable young minds of America...NOT!
+
(defun protect-innocence-hook ()
(if (and (equal (file-name-nondirectory buffer-file-name) "sex.6")
(not (y-or-n-p "Are you over 18? ")))
@@ -12,3 +14,5 @@
(or (memq 'protect-innocence-hook find-file-hooks)
(setq find-file-hooks (cons 'protect-innocence-hook find-file-hooks)))
+
+;;; meese.el ends here
diff --git a/lisp/play/mpuz.el b/lisp/play/mpuz.el
index f4d622ad819..01b44c1d356 100644
--- a/lisp/play/mpuz.el
+++ b/lisp/play/mpuz.el
@@ -1,4 +1,5 @@
-;;; Multiplication puzzle for GNU Emacs
+;;; mpuz.el --- multiplication puzzle for GNU Emacs
+
;;; by Philippe Schnoebelen <phs@lifia.imag.fr>
;;; Last modified on 11 Nov 1990
;;; Copyright (C) 1990 Free Software Foundation, Inc.
@@ -444,5 +445,4 @@ You may abort a game by hitting \\[keyboard-quit]."
(setq list (cons digit list))))
(mapcar 'mpuz-correct-guess list)))
-;;; End of mult-puzzle
-
+;;; mpuz.el ends here