Function: comp--spill-lap-function
comp--spill-lap-function is a byte-compiled function defined in
comp.el.gz.
Signature
(comp--spill-lap-function INPUT)
Documentation
Byte-compile INPUT and spill lap for further stages.
Implementations
(comp--spill-lap-function (FILENAME string)) in `comp.el'.
Byte-compile FILENAME, spilling data from the byte compiler.
(comp--spill-lap-function (FUN interpreted-function)) in `comp.el'.
Spill data from the byte compiler for the interpreted-function FUN.
(comp--spill-lap-function (FORM list)) in `comp.el'.
Byte-compile FORM, spilling data from the byte compiler.
(comp--spill-lap-function (FUNCTION-NAME symbol)) in `comp.el'.
Byte-compile FUNCTION-NAME, spilling data from the byte compiler.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(cl-defgeneric comp--spill-lap-function (input)
"Byte-compile INPUT and spill lap for further stages.")