diff options
| author | Lars Magne Ingebrigtsen | 2010-09-02 14:10:03 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-09-02 14:10:03 +0000 |
| commit | 2e23878e5a0c25cff6868db89f852ee48d327824 (patch) | |
| tree | fa7d311be90a6f537ad68debbbe4a9c6c70d12d6 | |
| parent | 567efba906efe327b2cfa6c404fb8bea789a83c5 (diff) | |
| download | emacs-2e23878e5a0c25cff6868db89f852ee48d327824.tar.gz emacs-2e23878e5a0c25cff6868db89f852ee48d327824.zip | |
gnus-html-rescale-image: Fix up typo in rescaling.
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-html.el | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index e2d34f4c739..18c5d55afe0 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-09-02 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling. | ||
| 4 | |||
| 1 | 2010-09-02 Katsumi Yamaoka <yamaoka@jpl.org> | 5 | 2010-09-02 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 6 | ||
| 3 | * gnus-html.el (gnus-article-html): Make work buffer multibyte for | 7 | * gnus-html.el (gnus-article-html): Make work buffer multibyte for |
diff --git a/lisp/gnus/gnus-html.el b/lisp/gnus/gnus-html.el index 3948598d561..a503859aa21 100644 --- a/lisp/gnus/gnus-html.el +++ b/lisp/gnus/gnus-html.el | |||
| @@ -280,12 +280,12 @@ fit these criteria." | |||
| 280 | (when (> height window-height) | 280 | (when (> height window-height) |
| 281 | (setq image (or (create-image file 'imagemagick nil | 281 | (setq image (or (create-image file 'imagemagick nil |
| 282 | :height window-height) | 282 | :height window-height) |
| 283 | image)) | 283 | image))) |
| 284 | (when (> (car (image-size image t)) window-width) | 284 | (when (> (car (image-size image t)) window-width) |
| 285 | (setq image (or | 285 | (setq image (or |
| 286 | (create-image file 'imagemagick nil | 286 | (create-image file 'imagemagick nil |
| 287 | :width window-width) | 287 | :width window-width) |
| 288 | image)))) | 288 | image))) |
| 289 | image))) | 289 | image))) |
| 290 | 290 | ||
| 291 | (defun gnus-html-prune-cache () | 291 | (defun gnus-html-prune-cache () |