Add new condition type ILLEGAL-PATHNAME-COMPONENT so that pathname
authorChris Hanson <org/chris-hanson/cph>
Mon, 11 Sep 1995 20:52:26 +0000 (20:52 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 11 Sep 1995 20:52:26 +0000 (20:52 +0000)
parsing errors can be caught.

v7/src/runtime/error.scm

index 700fe4fb6938f810e30387c94c557051f2529f47..19257ba1a64d63ef8d19322c1626a6087cb4a1cf 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: error.scm,v 14.46 1995/09/11 19:05:26 cph Exp $
+$Id: error.scm,v 14.47 1995/09/11 20:52:26 cph Exp $
 
 Copyright (c) 1988-95 Massachusetts Institute of Technology
 
@@ -889,7 +889,7 @@ MIT in each case. |#
 
   (set! condition-type:illegal-pathname-component
        (make-condition-type 'ILLEGAL-PATHNAME-COMPONENT
-           condition-type:wrong-type-datum
+           condition-type:wrong-type-datum '()
          (lambda (condition port)
            (write-string "The object " port)
            (write (access-condition condition 'DATUM) port)