Function: comp-symbol-func-to-fun
comp-symbol-func-to-fun is a byte-compiled function defined in
comp.el.gz.
Signature
(comp-symbol-func-to-fun SYMBOL-FUNCION)
Documentation
Given a function called SYMBOL-FUNCION return its comp-func.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defsubst comp-symbol-func-to-fun (symbol-funcion)
"Given a function called SYMBOL-FUNCION return its `comp-func'."
(gethash (gethash symbol-funcion (comp-ctxt-sym-to-c-name-h
comp-ctxt))
(comp-ctxt-funcs-h comp-ctxt)))