1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

gnus-html-rescale-image: Fix up typo in rescaling.

This commit is contained in:
Lars Magne Ingebrigtsen 2010-09-02 14:10:03 +00:00 committed by Katsumi Yamaoka
parent 567efba906
commit 2e23878e5a
2 changed files with 10 additions and 6 deletions

View file

@ -1,3 +1,7 @@
2010-09-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
2010-09-02 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-html.el (gnus-article-html): Make work buffer multibyte for

View file

@ -280,12 +280,12 @@ fit these criteria."
(when (> height window-height)
(setq image (or (create-image file 'imagemagick nil
:height window-height)
image))
(when (> (car (image-size image t)) window-width)
(setq image (or
(create-image file 'imagemagick nil
:width window-width)
image))))
image)))
(when (> (car (image-size image t)) window-width)
(setq image (or
(create-image file 'imagemagick nil
:width window-width)
image)))
image)))
(defun gnus-html-prune-cache ()