Function: ad-compiled-code

ad-compiled-code is a byte-compiled function defined in advice.el.gz.

Signature

(ad-compiled-code COMPILED-DEFINITION)

Documentation

Return the byte-code object of a COMPILED-DEFINITION.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/advice.el.gz
(defsubst ad-compiled-code (compiled-definition)
  "Return the byte-code object of a COMPILED-DEFINITION."
  (if (macrop compiled-definition)
    (ad-lambdafy compiled-definition)
    compiled-definition))