Function: mpuz-paint-statistics
mpuz-paint-statistics is a byte-compiled function defined in
mpuz.el.gz.
Signature
(mpuz-paint-statistics)
Documentation
Paint statistics about previous games on the puzzle screen.
Source Code
;; Defined in /usr/src/emacs/lisp/play/mpuz.el.gz
(defun mpuz-paint-statistics ()
"Paint statistics about previous games on the puzzle screen."
(goto-char (point-min))
(forward-line 6)
(mpuz-paint-number (prin1-to-string mpuz-nb-completed-games))
(mpuz-paint-number
(format "%.2f"
(if (zerop mpuz-nb-completed-games)
0
(/ (+ 0.0 mpuz-nb-cumulated-errors)
mpuz-nb-completed-games)))
3 2))