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:
parent
567efba906
commit
2e23878e5a
2 changed files with 10 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue