From: Chris Hanson Date: Mon, 15 Sep 2003 20:22:49 +0000 (+0000) Subject: Fix bug in handling of namespace declarations. X-Git-Tag: 20090517-FFI~1810 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=f576a9d1aa17d88180691d9186f725f2758a0fa6;p=mit-scheme.git Fix bug in handling of namespace declarations. --- diff --git a/v7/src/xml/xml-parser.scm b/v7/src/xml/xml-parser.scm index 57f5cf9f8..fb795104f 100644 --- a/v7/src/xml/xml-parser.scm +++ b/v7/src/xml/xml-parser.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: xml-parser.scm,v 1.38 2003/09/11 18:38:13 cph Exp $ +$Id: xml-parser.scm,v 1.39 2003/09/15 20:22:49 cph Exp $ Copyright 2001,2002,2003 Massachusetts Institute of Technology @@ -507,7 +507,9 @@ USA. (if (not (and uri (string=? uri xml-uri))) (forbidden-uri uri)) (guarantee-legal-uri uri)) - (cons (cons (string-tail s 6) uri) tail))) + (cons (cons (string->symbol (string-tail s 6)) + uri) + tail))) (else tail)))))) *prefix-bindings*))) unspecific)