From: Chris Hanson Date: Mon, 11 Sep 1995 21:03:08 +0000 (+0000) Subject: Add new condition type ILLEGAL-PATHNAME-COMPONENT so that pathname X-Git-Tag: 20090517-FFI~5960 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=1d5ecd922d32b492ff1946df50ddf5fc97eb7b51;p=mit-scheme.git Add new condition type ILLEGAL-PATHNAME-COMPONENT so that pathname parsing errors can be caught. --- 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