Function: rng-possible-type-ids

rng-possible-type-ids is a byte-compiled function defined in rng-loc.el.gz.

Signature

(rng-possible-type-ids)

Documentation

Return a list of the known type IDs.

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/rng-loc.el.gz
(defun rng-possible-type-ids ()
  "Return a list of the known type IDs."
  (let ((files rng-schema-locating-files)
	type-ids)
    (while files
      (setq type-ids (rng-possible-type-ids-using (car files) type-ids))
      (setq files (cdr files)))
    (seq-uniq (sort type-ids 'string<))))