Function: comp--callref
comp--callref is a byte-compiled function defined in comp.el.gz.
Signature
(comp--callref FUNC NARGS STACK-OFF)
Documentation
Emit a call using narg abi for FUNC.
NARGS is the number of arguments. STACK-OFF is the index of the first slot frame involved.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp--callref (func nargs stack-off)
"Emit a call using narg abi for FUNC.
NARGS is the number of arguments.
STACK-OFF is the index of the first slot frame involved."
`(callref ,func ,@(cl-loop repeat nargs
for sp from stack-off
collect (comp--slot-n sp))))