Function: comp-cstr-union-no-range
comp-cstr-union-no-range is a byte-compiled function defined in
comp-cstr.el.gz.
Signature
(comp-cstr-union-no-range DST &rest SRCS)
Documentation
Combine SRCS by union set operation setting the result in DST.
Do not propagate the range component. DST is returned.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp-cstr.el.gz
(defun comp-cstr-union-no-range (dst &rest srcs)
"Combine SRCS by union set operation setting the result in DST.
Do not propagate the range component.
DST is returned."
(apply #'comp--cstr-union-1 nil dst srcs))