Function: profiler-read-profile

profiler-read-profile is a byte-compiled function defined in profiler.el.gz.

Signature

(profiler-read-profile FILENAME)

Documentation

Read profile from file FILENAME.

Source Code

;; Defined in /usr/src/emacs/lisp/profiler.el.gz
(defun profiler-read-profile (filename)
  "Read profile from file FILENAME."
  ;; FIXME: tag and version check
  (with-temp-buffer
    (insert-file-contents filename)
    (goto-char (point-min))
    (read (current-buffer))))