Function: byte-compile-make-local-variable

byte-compile-make-local-variable is a byte-compiled function defined in bytecomp.el.gz.

Signature

(byte-compile-make-local-variable FORM)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-make-local-variable (form)
  (pcase form (`(,_ ',var) (byte-compile--declare-var var)))
  (byte-compile-normal-call form))