Function: byte-compile-make-variable-buffer-local

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

Signature

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

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-make-variable-buffer-local (form)
  (if (and (eq (car-safe (car-safe (cdr-safe form))) 'quote)
           (byte-compile-warning-enabled-p 'make-local))
      (byte-compile-warn-x
       form
       "`make-variable-buffer-local' not called at toplevel"))
  (byte-compile-normal-call form))