From 1d5ecd922d32b492ff1946df50ddf5fc97eb7b51 Mon Sep 17 00:00:00 2001
From: Chris Hanson <org/chris-hanson/cph>
Date: Mon, 11 Sep 1995 21:03:08 +0000
Subject: [PATCH] Add new condition type ILLEGAL-PATHNAME-COMPONENT so that
 pathname parsing errors can be caught.

---
 v7/src/runtime/error.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/v7/src/runtime/error.scm b/v7/src/runtime/error.scm
index 19257ba1a..ebbf51f9c 100644
--- a/v7/src/runtime/error.scm
+++ b/v7/src/runtime/error.scm
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: error.scm,v 14.47 1995/09/11 20:52:26 cph Exp $
+$Id: error.scm,v 14.48 1995/09/11 21:03:08 cph Exp $
 
 Copyright (c) 1988-95 Massachusetts Institute of Technology
 
@@ -894,7 +894,7 @@ MIT in each case. |#
 	    (write-string "The object " port)
 	    (write (access-condition condition 'DATUM) port)
 	    (write-string " is not a valid pathname " port)
-	    (write (access-condition condition 'TYPE) port)
+	    (write-string (access-condition condition 'TYPE) port)
 	    (write-string "." port))))
 
   (set! condition-type:control-error
-- 
2.25.1