Function STREAM-ERROR-STREAM
stream-error-stream condition => stream
condition - 型stream-errorのコンディション
stream - ストリーム
型stream-errorのコンディションの 問題のあるストリームを返却します。
(with-input-from-string (s "(FOO")
(handler-case (read s)
(end-of-file (c)
(format nil "~&End of file on ~S." (stream-error-stream c)))))
"End of file on #<String Stream>."なし。
なし。
なし。
なし。