summaryrefslogtreecommitdiff
path: root/lisp/play/life.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1991-03-12 20:00:05 +0000
committerJim Blandy <jimb@redhat.com>1991-03-12 20:00:05 +0000
commite3f99b912245f0b8cf9c0442931a5099fb1e8ad9 (patch)
treee7843f7755ca3e991cc5ca2d5aa2c39e2d7e863f /lisp/play/life.el
parentf30ff39f78474a9e7f28bb7b9ed259aae92760ac (diff)
downloademacs-e3f99b912245f0b8cf9c0442931a5099fb1e8ad9.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp/play/life.el')
-rw-r--r--lisp/play/life.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/play/life.el b/lisp/play/life.el
index e216dbf0b4e..059bf350fd4 100644
--- a/lisp/play/life.el
+++ b/lisp/play/life.el
@@ -97,8 +97,8 @@
(defun life (&optional sleeptime)
"Run Conway's Life simulation.
-The starting pattern is randomly selected. Prefix arg (optional first arg
-non-nil from a program) is the number of seconds to sleep between
+The starting pattern is randomly selected. Prefix arg (optional first
+arg non-nil from a program) is the number of seconds to sleep between
generations (this defaults to 1)."
(interactive "p")
(or sleeptime (setq sleeptime 1))
@@ -272,5 +272,3 @@ generations (this defaults to 1)."
(put 'life-extinct 'error-conditions '(life-extinct quit))
(put 'life-extinct 'error-message "All life has perished")
-
-