> (setq boxlist > (sort > (directory-files jv-mail-tree t > "^INBOX.[12][0-9][0-9][0-9][0-9][0-9]$") > '(lambda (a b) (string< b a))))
I recommend you don't quote lambda. Quoted as above, it tells Emacs
"this is a list" whereas without the quote Emacs knows it's a piece
of code.
Stefan
