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

Re: MCL 2.0b1p3 sort problems



I have observed the same problem with sort.  Copying the list before you
sort it is wasteful of space, but eliminates sort's weird behavior.
This will always do what you wanted it to do:

(sort (copy-list foo) <predicate>)

-- Amy