Function: comp--call-optim
comp--call-optim is a byte-compiled function defined in comp.el.gz.
Signature
(comp--call-optim _)
Documentation
Try to optimize out funcall trampoline usage when possible.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp--call-optim (_)
"Try to optimize out funcall trampoline usage when possible."
(maphash (lambda (_ f)
(when (and (>= (comp-func-speed f) 2)
(comp-func-l-p f))
(let ((comp-func f))
(comp--call-optim-func))))
(comp-ctxt-funcs-h comp-ctxt)))