A fix for trailing slashes in the 'directory?' predicate on Win32. Fixes for TRU64 in 'ends-with' and Solaris 'rand'.
For files and changes notes see: http://newlisp.org/downloads/development/
Lutz
Suggestion for a function enhancement. The example in the documentation for the APPLY function shows that
(apply op '(1 2 3 4 5) 2)
is the same as
(op (op (op (op 1 2) 3) 4) 5)
Could we enhance this to take lists of function names so that
(apply '(op2 op1) '(1 2 3 4 5) 2)
is the same as
(op2 (op1 (op2 (op1 1 2) 3) 4) 5)?
By the way, Froliche Weinachten Lutz!