Function: rng-c-merge-combine
rng-c-merge-combine is a byte-compiled function defined in
rng-cmpct.el.gz.
Signature
(rng-c-merge-combine DEF COMBINE NAME)
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/rng-cmpct.el.gz
(defun rng-c-merge-combine (def combine name)
(let* ((about (car def))
(current-combine (aref about rng-c-about-combine-slot)))
(if combine
(if current-combine
(or (eq combine current-combine)
(rng-c-error "Inconsistent combine for %s" name))
(aset about rng-c-about-combine-slot combine))
current-combine)))