mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(xml-parse-tag): Use eq on char-after's return value.
This commit is contained in:
parent
97f4db8c94
commit
e54030af30
2 changed files with 7 additions and 3 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue