Function: comp--byte-frame-size

comp--byte-frame-size is a byte-compiled function defined in comp.el.gz.

Signature

(comp--byte-frame-size BYTE-COMPILED-FUNC)

Documentation

Return the frame size to be allocated for BYTE-COMPILED-FUNC.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defsubst comp--byte-frame-size (byte-compiled-func)
  "Return the frame size to be allocated for BYTE-COMPILED-FUNC."
  (aref byte-compiled-func 3))