+2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
+
+ * net/shr.el (shr-make-table-1): Add a sanity check that allows
+ progression on degenerate tables.
+ (shr-rescale-image): ImageMagick animated images currently doesn't
+ work.
+
2013-06-30 Juanma Barranquero <lekktu@gmail.com>
Some fixes and improvements for desktop frame restoration.
"Rescale DATA, if too big, to fit the current buffer.
If FORCE, rescale the image anyway."
(if (or (not (fboundp 'imagemagick-types))
+ (eq (image-type-from-data data) 'gif)
(not (get-buffer-window (current-buffer))))
(create-image data nil t :ascent 100)
(let ((edges (window-inside-pixel-edges
(setq width
(if column
(aref widths width-column)
- 0))
+ 10))
+ ;; Sanity check for degenerate tables.
+ (when (zerop width)
+ (setq width 10))
(when (and fill
(setq colspan (cdr (assq :colspan (cdr column)))))
(setq colspan (string-to-number colspan))