Function: byte-compile-dynamic-variable-bind

byte-compile-dynamic-variable-bind is a byte-compiled function defined in bytecomp.el.gz.

Signature

(byte-compile-dynamic-variable-bind VAR)

Documentation

Generate code to bind the dynamic variable VAR to the top-of-stack value.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-dynamic-variable-bind (var)
  "Generate code to bind the dynamic variable VAR to the top-of-stack value."
  (byte-compile-check-variable var 'let-bind)
  (push var byte-compile-bound-variables)
  (byte-compile-dynamic-variable-op 'byte-varbind var))