diff options
| author | Stefan Monnier | 2001-10-18 20:24:09 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-10-18 20:24:09 +0000 |
| commit | e54030af3091fedcb15c97391e7c30673651c90b (patch) | |
| tree | 6b0250f2b6bc715badf7f2bd01ee93227ce3504b | |
| parent | 97f4db8c94f258ac20234402fd502facfbc87be6 (diff) | |
| download | emacs-e54030af3091fedcb15c97391e7c30673651c90b.tar.gz emacs-e54030af3091fedcb15c97391e7c30673651c90b.zip | |
(xml-parse-tag): Use eq on char-after's return value.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/xml.el | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9242bbd4ec4..c4bfdca03b8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,9 +1,13 @@ | |||
| 1 | 2001-10-18 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * xml.el (xml-parse-tag): Use eq on char-after's return value. | ||
| 4 | |||
| 1 | 2001-10-18 Gerd Moellmann <gerd@gnu.org> | 5 | 2001-10-18 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * isearch.el (isearch-mode-map): Bind `mouse-movement' to nil. | 7 | * isearch.el (isearch-mode-map): Bind `mouse-movement' to nil. |
| 4 | 8 | ||
| 5 | * obsolete/hilit19.el (hilit-lookup-face-create): Call | 9 | * obsolete/hilit19.el (hilit-lookup-face-create): |
| 6 | set-face-font only if display-graphic-p. | 10 | Call set-face-font only if display-graphic-p. |
| 7 | (toplevel): Remove references to window-system. | 11 | (toplevel): Remove references to window-system. |
| 8 | 12 | ||
| 9 | 2001-10-18 Miles Bader <miles@gnu.org> | 13 | 2001-10-18 Miles Bader <miles@gnu.org> |
diff --git a/lisp/xml.el b/lisp/xml.el index 23d4e5d25b1..b2831c6ac54 100644 --- a/lisp/xml.el +++ b/lisp/xml.el | |||
| @@ -230,7 +230,7 @@ Returns one of: | |||
| 230 | (append children '(""))) | 230 | (append children '(""))) |
| 231 | 231 | ||
| 232 | ;; is this a valid start tag ? | 232 | ;; is this a valid start tag ? |
| 233 | (if (= (char-after) ?>) | 233 | (if (eq (char-after) ?>) |
| 234 | (progn | 234 | (progn |
| 235 | (forward-char 1) | 235 | (forward-char 1) |
| 236 | (skip-chars-forward " \t\n") | 236 | (skip-chars-forward " \t\n") |