Function: erc-sort-strings
erc-sort-strings is a byte-compiled function defined in erc.el.gz.
Signature
(erc-sort-strings LIST-OF-STRINGS)
Documentation
Sort LIST-OF-STRINGS in lexicographic order.
Side-effect free.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-sort-strings (list-of-strings)
"Sort LIST-OF-STRINGS in lexicographic order.
Side-effect free."
(sort (copy-sequence list-of-strings) #'string<))