1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

* xml.el (xml-parse-tag): Fix parsing of comments.

Fixes: debbugs:10405
This commit is contained in:
Alex Harsanyi 2012-01-27 16:46:10 +08:00 committed by Chong Yidong
parent 9f40220d8e
commit a268160b06
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-01-27 Alex Harsanyi <harsanyi@mac.com>
* xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
2012-01-26 Glenn Morris <rgm@gnu.org>
* dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.

View file

@ -421,7 +421,8 @@ Returns one of:
;; skip comments
((looking-at "<!--")
(search-forward "-->")
nil)
(skip-syntax-forward " ")
(xml-parse-tag parse-dtd xml-ns))
;; end tag
((looking-at "</")
'())