Don't allow whitespace in DTD.
authorChris Hanson <org/chris-hanson/cph>
Sun, 2 Mar 2003 03:48:47 +0000 (03:48 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sun, 2 Mar 2003 03:48:47 +0000 (03:48 +0000)
v7/src/xml/xml-struct.scm

index e908e7f94e3decf6887599eb75ee3998b4c9bb46..9d81688f393a28c8bf085731e771b9a6735c8afe 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: xml-struct.scm,v 1.10 2003/03/01 16:53:39 cph Exp $
+$Id: xml-struct.scm,v 1.11 2003/03/02 03:48:47 cph Exp $
 
 Copyright 2001,2002,2003 Massachusetts Institute of Technology
 
@@ -203,8 +203,7 @@ USA.
    (lambda (object)
      (list-of-type? object
        (lambda (object)
-        (or (xml-whitespace-string? object)
-            (xml-comment? object)
+        (or (xml-comment? object)
             (xml-!element? object)
             (xml-!attlist? object)
             (xml-!entity? object)