Function: profiler-fixup-log

profiler-fixup-log is a byte-compiled function defined in profiler.el.gz.

Signature

(profiler-fixup-log LOG)

Source Code

;; Defined in /usr/src/emacs/lisp/profiler.el.gz
(defun profiler-fixup-log (log)
  (let ((newlog (make-hash-table :test 'equal)))
    (maphash (lambda (backtrace count)
               (puthash (profiler-fixup-backtrace backtrace)
                        count newlog))
             log)
    newlog))