summaryrefslogtreecommitdiff
path: root/lisp/play/life.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/play/life.el')
-rw-r--r--lisp/play/life.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/play/life.el b/lisp/play/life.el
index a52c5477bb7..a73f3a58e66 100644
--- a/lisp/play/life.el
+++ b/lisp/play/life.el
@@ -290,8 +290,7 @@ generations (this defaults to 1)."
(life-display-generation 0)
(signal 'life-extinct nil))
-(put 'life-extinct 'error-conditions '(life-extinct quit))
-(put 'life-extinct 'error-message "All life has perished")
+(define-error 'life-extinct "All life has perished" 'quit) ;FIXME: quit really?
(provide 'life)