# HG changeset patch # User Gerd Moellmann # Date 991297051 0 # Node ID d1fdbba91c71e21562898d34246866638879e6d8 # Parent 492899458b0bcd8af2f1564961966be3a44ca007 (xml-parse-tag): The document may contain invalid characters. From ShengHuo ZHU diff -r 492899458b0b -r d1fdbba91c71 lisp/xml.el --- a/lisp/xml.el Thu May 31 08:09:47 2001 +0000 +++ b/lisp/xml.el Thu May 31 08:17:31 2001 +0000 @@ -1,6 +1,6 @@ ;; @(#) xml.el --- XML parser -;; Copyright (C) 2000 Free Software Foundation, Inc. +;; Copyright (C) 2000, 2001 Free Software Foundation, Inc. ;; Author: Emmanuel Briot ;; Maintainer: Emmanuel Briot @@ -272,6 +272,8 @@ ;; This was an invalid start tag (error "XML: Invalid attribute list") )))) + (t ;; This is not a tag. + (error "XML: Invalid character.")) )) (defun xml-parse-attlist (end)