diff options
| author | Juanma Barranquero | 2003-02-14 09:58:04 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2003-02-14 09:58:04 +0000 |
| commit | 0fa6f70c594ddf013872b2d502d9868b152c4de3 (patch) | |
| tree | 8c5cc87644fdd7e3c282c4d479eb725ff7c50fbc | |
| parent | b5cb36acaa9eb077e83c019bc68bf007d13d728f (diff) | |
| download | emacs-0fa6f70c594ddf013872b2d502d9868b152c4de3.tar.gz emacs-0fa6f70c594ddf013872b2d502d9868b152c4de3.zip | |
(xml-parse-elem-type): Fix use of character constant.
| -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." | |||
| 429 | ((string= modifier "*") | 429 | ((string= modifier "*") |
| 430 | (list '* elem)) | 430 | (list '* elem)) |
| 431 | ((string= modifier "?") | 431 | ((string= modifier "?") |
| 432 | (list '? elem)) | 432 | (list '\? elem)) |
| 433 | (t | 433 | (t |
| 434 | elem)))) | 434 | elem)))) |
| 435 | 435 | ||