From a0bf5cbc2894f421dfa9f8858b57a970f7b7731e Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Sat, 9 Oct 2004 14:41:01 +0000 Subject: [PATCH] Signal a type-error instead of an error when we cannot determine the file associated with a stream that has no file (like broadcast streams, etc.). Fixes ANSI test logical-pathname.error.4 and friends. --- code/pathname.lisp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/code/pathname.lisp b/code/pathname.lisp index e83c56315..acb083dc1 100644 --- a/code/pathname.lisp +++ b/code/pathname.lisp @@ -4,7 +4,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.69 2004/09/09 17:13:43 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.70 2004/10/09 14:41:01 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -972,8 +972,11 @@ a host-structure or string." (stream (let ((name (file-name thing))) (unless name - (error "Can't figure out the file associated with stream:~% ~S" - thing)) + (error 'simple-type-error + :datum thing + :expected-type 'pathname + :format-control "Can't figure out the file associated with stream:~% ~S" + :format-arguments (list thing))) (values name nil)))))) -- GitLab