Edi Weitz edi@agharta.de writes:
I had to replace the form
(loop for key = (read-line *hunchentoot-stream* nil nil) while (and key (string-not-equal key "end")) for value = (read-line *hunchentoot-stream* t) collect (cons (make-keyword key) value) do (maybe-write-to-header-stream key value)))
by some tagbody-go-form, because ECL doesnt support it.
ECL doesn't support LOOP?!?
The use of the FOR clause after WHILE is (unfortunately, IMO) not allowed by the standard.
Nicolas