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
			
			
									
									
						development release newLISP v.9.2.11
- 
				Jeremy Dunn
 - Posts: 95
 - Joined: Wed Oct 13, 2004 8:02 pm
 - Location: Bellingham WA
 
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!
			
			
									
									
						(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!