From: Chris Hanson Date: Thu, 12 Aug 2004 06:31:01 +0000 (+0000) Subject: Fix bug: the root name of a DTD must be a qname; it may not have an X-Git-Tag: 20090517-FFI~1599 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=d11e5ed1f9ad2492bd9f21189e6fa5a7ed723908;p=mit-scheme.git Fix bug: the root name of a DTD must be a qname; it may not have an associated IRI. --- diff --git a/v7/src/xml/xml-struct.scm b/v7/src/xml/xml-struct.scm index 2bc037d9a..2aca64af6 100644 --- a/v7/src/xml/xml-struct.scm +++ b/v7/src/xml/xml-struct.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: xml-struct.scm,v 1.45 2004/08/10 01:09:41 cph Exp $ +$Id: xml-struct.scm,v 1.46 2004/08/12 06:31:01 cph Exp $ Copyright 2001,2002,2003,2004 Massachusetts Institute of Technology @@ -238,7 +238,7 @@ USA. (text canonicalize canonicalize-char-data)) (define-xml-type dtd - (root xml-name?) + (root xml-qname?) (external (lambda (object) (or (not object) (xml-external-id? object))))