Function: comp-cstr-shallow-copy
comp-cstr-shallow-copy is a byte-compiled function defined in
comp-cstr.el.gz.
Signature
(comp-cstr-shallow-copy DST SRC)
Documentation
Copy the content of SRC into DST.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp-cstr.el.gz
(defsubst comp-cstr-shallow-copy (dst src)
"Copy the content of SRC into DST."
(with-comp-cstr-accessors
(setf (range dst) (range src)
(valset dst) (valset src)
(typeset dst) (typeset src)
(neg dst) (neg src))))