]> git.eshelyaron.com Git - emacs.git/commitdiff
(shr-tag-object): Don't bug out on text elements in <object>
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 10 Dec 2014 04:00:22 +0000 (05:00 +0100)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 10 Dec 2014 04:00:32 +0000 (05:00 +0100)
lisp/ChangeLog
lisp/net/shr.el

index 3ab15aab2433f54da3316d2b3ebc5dcc70ee4ee8..20461a654fea73edbc34f1476dbccb1bd8da9a22 100644 (file)
@@ -1,3 +1,8 @@
+2014-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * net/shr.el (shr-tag-object): Don't bug out on text elements in
+       <object>.
+
 2014-12-09  Bozhidar Batsov  <bozhidar@batsov.com>
 
        * progmodes/ruby-mode.el (auto-mode-alist): Add .rabl, Berksfile
index 186c9f5757d7fd0ac3d29fc2489115462e43dee3..695b91dcb1bd230275b75ae1d4e16e69aef51a2a 100644 (file)
@@ -1134,7 +1134,7 @@ ones, in case fg and bg are nil."
        (when (string-match "\\`image/svg" type)
          (setq url (dom-attr dom 'data)
                image t)))
-      (dolist (child (dom-children dom))
+      (dolist (child (dom-non-text-children dom))
        (cond
         ((eq (dom-tag child) 'embed)
          (setq url (or url (dom-attr child 'src))