Richard M Kreuter <kreuter@...> writes:
> Can anybody say what's going wrong in this code?
>
> (let* ((socket (make-instance 'sb-bsd-sockets:inet-socket
> :type :stream :protocol :tcp))
> (stream (sb-bsd-sockets:socket-make-stream socket
> :input t :output t)))
> (format t ">> ~S~%" (ignore-errors (pathname stream)))
> (if (ignore-errors (pathname stream))
> :pathname
> :no-pathname))
>>> NIL
> :PATHNAME
Fixed in 0.9.15.13, thanks for the report.
(PATHNAME was UNSAFELY-FLUSHABLE, so the call was elided.)
Cheers,
-- Nikodemus Schemer: "Buddha is small, clean, and serious."
Lispnik: "Buddha is big, has hairy armpits, and laughs."
|