Function: byte-compile-constant
byte-compile-constant is a byte-compiled function defined in
bytecomp.el.gz.
Signature
(byte-compile-constant CONST)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
;; Use this when the value of a form is a constant.
;; This obeys byte-compile--for-effect.
(defun byte-compile-constant (const)
(if byte-compile--for-effect
(setq byte-compile--for-effect nil)
(inline (byte-compile-push-constant const))))