Function: profiler-format-percent
profiler-format-percent is a byte-compiled function defined in
profiler.el.gz.
Signature
(profiler-format-percent NUMBER DIVISOR)
Source Code
;; Defined in /usr/src/emacs/lisp/profiler.el.gz
(defun profiler-format-percent (number divisor)
(format "%d%%" (floor (* 100.0 number) divisor)))