Allow wide strings as content in elements.
authorChris Hanson <org/chris-hanson/cph>
Sat, 12 Jul 2003 04:34:43 +0000 (04:34 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 12 Jul 2003 04:34:43 +0000 (04:34 +0000)
v7/src/xml/xml-struct.scm

index bc277966967eb14e65079a96fe32392793d7c523..9f0ae88063a892cae7e4ae3adcc8e538bf4cac78 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: xml-struct.scm,v 1.12 2003/03/08 02:14:25 cph Exp $
+$Id: xml-struct.scm,v 1.13 2003/07/12 04:34:43 cph Exp $
 
 Copyright 2001,2002,2003 Massachusetts Institute of Technology
 
@@ -171,6 +171,7 @@ USA.
      (list-of-type? object
        (lambda (object)
         (or (string? object)
+            (wide-string? object)
             (xml-comment? object)
             (xml-element? object)
             (xml-processing-instructions? object)