From 0fa6f70c594ddf013872b2d502d9868b152c4de3 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Fri, 14 Feb 2003 09:58:04 +0000 Subject: [PATCH] (xml-parse-elem-type): Fix use of character constant. --- lisp/xml.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))) -- 2.39.2