diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-02-14 09:58:04 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-02-14 09:58:04 +0000 |
commit | 0fa6f70c594ddf013872b2d502d9868b152c4de3 (patch) | |
tree | 8c5cc87644fdd7e3c282c4d479eb725ff7c50fbc /lisp/xml.el | |
parent | b5cb36acaa9eb077e83c019bc68bf007d13d728f (diff) | |
download | emacs-0fa6f70c594ddf013872b2d502d9868b152c4de3.tar.gz |
(xml-parse-elem-type): Fix use of character constant.
Diffstat (limited to 'lisp/xml.el')
-rw-r--r-- | lisp/xml.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)))) |