read-delimited-list
Hi there!:) I had a bit of a trouble with read-delimited-list function. It is supposed to read a bunch of values followed by some endline character after which it returns a list of the values. For example CL-USER 219 > (read-delimited-list #\;) 1 2 3; (1 2 3) which if fine. But when you try to use #\Newline character it just won't work. After entering your values and pressing enter a few times you have to break out. Any ideas?