]> git.eshelyaron.com Git - emacs.git/commitdiff
(xml-parse-tag): The document may contain invalid characters.
authorGerd Moellmann <gerd@gnu.org>
Thu, 31 May 2001 08:17:31 +0000 (08:17 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 31 May 2001 08:17:31 +0000 (08:17 +0000)
From ShengHuo ZHU  <zsh@cs.rochester.edu>

lisp/xml.el

index 25851e2a9ea174d9eb7cf7f99b4134a94fe133cb..a07f449b3176df7c1f979a07914d5c591d70e1d4 100644 (file)
@@ -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  <briot@gnat.com>
 ;; Maintainer: Emmanuel Briot <briot@gnat.com>
@@ -272,6 +272,8 @@ Returns one of:
          ;;  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)