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 e4d5f0b6b6d..b62065eb48f 100644 --- a/lisp/xml.el +++ b/lisp/xml.el @@ -538,7 +538,7 @@ Return one of: (forward-char 1) ;; Now check that we have the right end-tag. (let ((end (concat "</" node-name "\\s-*>"))) - (while (not (looking-at-p end)) + (while (not (looking-at end)) (cond ((eobp) (error "XML: (Not Well-Formed) End of document while reading element `%s'" |