]> git.eshelyaron.com Git - emacs.git/commitdiff
(shr-rescale-image): Clarify logic slightly
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 3 May 2016 15:26:54 +0000 (17:26 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 3 May 2016 15:27:04 +0000 (17:27 +0200)
* lisp/net/shr.el (shr-rescale-image): Clarify logic slightly.

lisp/net/shr.el

index bf05fe93baeef8ec44a9ba6acf3f2e0d6f91a47c..1bc9105de94957d533a31983560a2b3b5d14ce8f 100644 (file)
@@ -1008,8 +1008,8 @@ element is the data blob and the second element is the content-type."
 (defun shr-rescale-image (data content-type width height)
   "Rescale DATA, if too big, to fit the current buffer.
 WIDTH and HEIGHT are the sizes given in the HTML data, if any."
-  (if (not (and (fboundp 'imagemagick-types)
-                (get-buffer-window (current-buffer))))
+  (if (or (not (fboundp 'imagemagick-types))
+          (not (get-buffer-window (current-buffer))))
       (create-image data nil t :ascent 100)
     (let* ((edges (window-inside-pixel-edges
                    (get-buffer-window (current-buffer))))