Re: apps-menu



Matthew <matth love gmail com> 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 <nowan nowan org>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]