Function: speedbar-sort-tag-hierarchy

speedbar-sort-tag-hierarchy is a byte-compiled function defined in speedbar.el.gz.

Signature

(speedbar-sort-tag-hierarchy LST)

Documentation

Sort all elements of tag hierarchy LST.

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-sort-tag-hierarchy (lst)
  "Sort all elements of tag hierarchy LST."
  (sort (copy-alist lst)
	(lambda (a b) (string< (car a) (car b)))))