#| -*-Scheme-*-
-$Id: xml-parser.scm,v 1.73 2007/01/17 03:43:09 cph Exp $
+$Id: xml-parser.scm,v 1.74 2007/07/23 00:34:02 cph Exp $
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
(if (peek-parser-buffer-char b)
(perror (get-parser-buffer-pointer b) "Unknown content")
(perror p "Unterminated start tag" name)))
- (if (not (xml-name=? (vector-ref ve 0) name))
+ (if (not (eq? (xml-name-qname (vector-ref ve 0))
+ (xml-name-qname name)))
(perror p "Mismatched start tag" (vector-ref ve 0) name))
(let ((content (coalesce-strings! (vector->list vc))))
(if (null? content)