Function: byte-compile-dynamic-variable-op
byte-compile-dynamic-variable-op is a byte-compiled function defined
in bytecomp.el.gz.
Signature
(byte-compile-dynamic-variable-op BASE-OP VAR)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defsubst byte-compile-dynamic-variable-op (base-op var)
(let ((tmp (assq var byte-compile-variables)))
(unless tmp
(setq tmp (list var))
(push tmp byte-compile-variables))
(byte-compile-out base-op tmp)))