diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2006-09-15 01:26:41 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2006-09-15 01:26:41 +0000 |
commit | 5883afc5c4d578137fb9c17e58c5eb038cc6045a (patch) | |
tree | e729fda75a4c726695639cd4f09664a273c1210d /lisp/play | |
parent | 18d55b246b501f4b9f1e0447dbdb67f44cef3611 (diff) | |
download | emacs-5883afc5c4d578137fb9c17e58c5eb038cc6045a.tar.gz |
(life-patterns): Add a few more interesting patterns.
(life-setup): Force `show-trailing-whitespace' to nil.
Diffstat (limited to 'lisp/play')
-rw-r--r-- | lisp/play/life.el | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/lisp/play/life.el b/lisp/play/life.el index a034c387400..ddbbcd70c70 100644 --- a/lisp/play/life.el +++ b/lisp/play/life.el @@ -56,7 +56,28 @@ " @@ " " @@ " " @@ " " @@") ("@@@@@@@@@" "@ @ @" "@ @@@@@ @" "@ @ @ @" "@@@ @@@" - "@ @ @ @" "@ @@@@@ @" "@ @ @" "@@@@@@@@@")] + "@ @ @ @" "@ @@@@@ @" "@ @ @" "@@@@@@@@@") + (" @ " + " @ @ " + " @@ @@ @@" + " @ @ @@ @@" + "@@ @ @ @@ " + "@@ @ @ @@ @ @ " + " @ @ @ " + " @ @ " + " @@ ") + (" @ " + " @ @@" + " @ @ " + " @ " + " @ " + "@ @ ") + ("@@@ @" + "@ " + " @@" + " @@ @" + "@ @ @") + ("@@@@@@@@ @@@@@ @@@ @@@@@@@ @@@@@")] "Vector of rectangles containing some Life startup patterns.") ;; Macros are used macros for manifest constants instead of variables @@ -128,6 +149,7 @@ generations (this defaults to 1)." mode-name "Life" major-mode 'life-mode truncate-lines t + show-trailing-whitespace nil life-current-generation 0 life-generation-string "0" mode-line-buffer-identification '("Life: generation " |