Function: comp-normalize-typeset

comp-normalize-typeset is a byte-compiled function defined in comp-cstr.el.gz.

Signature

(comp-normalize-typeset TYPESET)

Documentation

Sort TYPESET and return it.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp-cstr.el.gz
;;; Type handling.

(defun comp-normalize-typeset (typeset)
  "Sort TYPESET and return it."
  (cl-sort (cl-remove-duplicates typeset)
           (lambda (x y)
             (string-lessp (symbol-name x)
                           (symbol-name y)))))