Function: life-display-generation
life-display-generation is a byte-compiled function defined in
life.el.gz.
Signature
(life-display-generation STEP-TIME)
Source Code
;; Defined in /usr/src/emacs/lisp/play/life.el.gz
(defun life-display-generation (step-time)
(goto-char life-window-start)
(recenter 0)
;; Redisplay; if the user has hit a key, exit the loop.
(or (and (sit-for step-time) (< 0 step-time))
(not (input-pending-p))
(throw 'life-exit nil)))