Matthew <[email protected]> writes: > Regarding the a-z/A-Z issue, It is the sort function, used with > string<, that will put upper-case letters before lower-case letters.
You can specify a predicate for sort, so:
(sort list (lambda (a b)
(string< (string-downcase a) (string-downcase b))))
Ought to do the trick.
--
Jeremy Hankins <[email protected]>
