(xml-parse-elem-type): Fix use of character constant.

This commit is contained in:
Juanma Barranquero 2003-02-14 09:58:04 +00:00
parent b5cb36acaa
commit 0fa6f70c59

View 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))))