In the following function in emacs Lisp,
(defun show-life ()
(interactive)
(switch-to-buffer "*Life-Window*") ; show how life goes on while living
(live)) ; it takes 70 years to finish and return!
I'd like to create the buffer "Life-Window", and have the life event generated by (live) displayed continuously while live goes on.
Unfortunately, the buffer only becomes visible after the (live) returns (when it's over!)
I also tried pop-to-buffer, the behavior is the same.