Function: macroexp-copyable-p
macroexp-copyable-p is a byte-compiled function defined in
macroexp.el.gz.
Signature
(macroexp-copyable-p EXP)
Documentation
Return non-nil if EXP can be copied without extra cost.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/macroexp.el.gz
(defun macroexp-copyable-p (exp)
"Return non-nil if EXP can be copied without extra cost."
(or (symbolp exp) (macroexp-const-p exp)))