aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/xml.el
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2001-10-18 20:24:09 +0000
committerStefan Monnier <[email protected]>2001-10-18 20:24:09 +0000
commite54030af3091fedcb15c97391e7c30673651c90b (patch)
tree6b0250f2b6bc715badf7f2bd01ee93227ce3504b /lisp/xml.el
parent97f4db8c94f258ac20234402fd502facfbc87be6 (diff)
(xml-parse-tag): Use eq on char-after's return value.
Diffstat (limited to 'lisp/xml.el')
-rw-r--r--lisp/xml.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/xml.el b/lisp/xml.el
index 23d4e5d25b..b2831c6ac5 100644
--- a/lisp/xml.el
+++ b/lisp/xml.el
@@ -230,7 +230,7 @@ Returns one of:
(append children '("")))
;; is this a valid start tag ?
- (if (= (char-after) ?>)
+ (if (eq (char-after) ?>)
(progn
(forward-char 1)
(skip-chars-forward " \t\n")