diff options
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 23d4e5d25b1..b2831c6ac54 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") |