From: Juanma Barranquero Date: Fri, 14 Feb 2003 09:58:04 +0000 (+0000) Subject: (xml-parse-elem-type): Fix use of character constant. X-Git-Tag: ttn-vms-21-2-B4~11196 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0fa6f70c594ddf013872b2d502d9868b152c4de3;p=emacs.git (xml-parse-elem-type): Fix use of character constant. --- diff --git a/lisp/xml.el b/lisp/xml.el index 0464cac92f5..8d0182e9033 100644 --- a/lisp/xml.el +++ b/lisp/xml.el @@ -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))))