]> git.eshelyaron.com Git - emacs.git/commitdiff
(xml-parse-elem-type): Fix use of character constant.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:58:04 +0000 (09:58 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:58:04 +0000 (09:58 +0000)
lisp/xml.el

index 0464cac92f5108d3e11f91867baa1c78b5bcb7f0..8d0182e9033e0cb130d01e10253fb0330c2c21fb 100644 (file)
@@ -429,7 +429,7 @@ The DTD must end before the position END in the current buffer."
      ((string= modifier "*")
       (list '* elem))
      ((string= modifier "?")
-      (list '? elem))
+      (list '\? elem))
      (t
       elem))))