fixed PARSE for non-file-streams
This commit is contained in:
@ -3113,8 +3113,9 @@
|
|||||||
(make-stream-name
|
(make-stream-name
|
||||||
:entity-name "main document"
|
:entity-name "main document"
|
||||||
:entity-kind :main
|
:entity-kind :main
|
||||||
:uri (pathname-to-uri
|
:uri (if pathname
|
||||||
(merge-pathnames (or pathname (pathname input))))))
|
(pathname-to-uri (merge-pathnames pathname))
|
||||||
|
(safe-stream-sysid input))))
|
||||||
(apply #'parse-xstream xstream handler args))))))
|
(apply #'parse-xstream xstream handler args))))))
|
||||||
|
|
||||||
(defun parse-xstream (xstream handler &rest args)
|
(defun parse-xstream (xstream handler &rest args)
|
||||||
|
|||||||
Reference in New Issue
Block a user