From f576a9d1aa17d88180691d9186f725f2758a0fa6 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 15 Sep 2003 20:22:49 +0000 Subject: [PATCH] Fix bug in handling of namespace declarations. --- v7/src/xml/xml-parser.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) -- 2.25.1