Function: comp-cstr-union-make
comp-cstr-union-make is a byte-compiled function defined in
comp-cstr.el.gz.
Signature
(comp-cstr-union-make &rest SRCS)
Documentation
Combine SRCS by union set operation and return a new constraint.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp-cstr.el.gz
(defun comp-cstr-union-make (&rest srcs)
"Combine SRCS by union set operation and return a new constraint."
(apply #'comp-cstr-union (make-comp-cstr) srcs))