diff options
author | Jim Blandy <jimb@redhat.com> | 1993-06-09 11:59:12 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-06-09 11:59:12 +0000 |
commit | eb8c3be94e12644f506b8857e49ffef88046bb0b (patch) | |
tree | 505c4ea5ae59214e4d6e749047d160c98191c9d2 /lisp/play/life.el | |
parent | 16a4a21d0117ef5ed346f340f244fe199d3c8a26 (diff) | |
download | emacs-eb8c3be94e12644f506b8857e49ffef88046bb0b.tar.gz |
Apply typo patches from Paul Eggert.
Diffstat (limited to 'lisp/play/life.el')
-rw-r--r-- | lisp/play/life.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/play/life.el b/lisp/play/life.el index 84dca781fa0..50e76e69cac 100644 --- a/lisp/play/life.el +++ b/lisp/play/life.el @@ -25,7 +25,7 @@ ;; A demonstrator for John Horton Conway's "Life" cellular automaton ;; in Emacs Lisp. Picks a random one of a set of interesting Life -;; patterns and avolves it according to the familiar rules. +;; patterns and evolves it according to the familiar rules. ;;; Code: @@ -75,7 +75,7 @@ (defmacro life-not-void-regexp () (concat "[^" (life-void-string) "\n]")) ;; try to optimize the (goto-char (point-min)) & (goto-char (point-max)) -;; idioms. This depends on goto-char's not griping if we underrshoot +;; idioms. This depends on goto-char's not griping if we undershoot ;; or overshoot beginning or end of buffer. (defmacro goto-beginning-of-buffer () '(goto-char 1)) (defmacro maxint () (lsh (lsh (lognot 0) 1) -1)) |