Function: comp-spill-lap

comp-spill-lap is a byte-compiled function defined in comp.el.gz.

Signature

(comp-spill-lap INPUT)

Documentation

Byte-compile and spill the LAP representation for INPUT.

If INPUT is a symbol, it is the function-name to be compiled. If INPUT is a string, it is the filename to be compiled.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp-spill-lap (input)
  "Byte-compile and spill the LAP representation for INPUT.
If INPUT is a symbol, it is the function-name to be compiled.
If INPUT is a string, it is the filename to be compiled."
  (let ((byte-native-compiling t)
        (byte-to-native-lambdas-h (make-hash-table :test #'eq))
        (byte-to-native-top-level-forms ())
        (byte-to-native-plist-environment ()))
    (comp-spill-lap-function input)))