]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix previous merge from Gnus trunk.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 31 Aug 2010 00:51:08 +0000 (00:51 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 31 Aug 2010 00:51:08 +0000 (00:51 +0000)
lisp/gnus/gnus-ems.el
lisp/gnus/gnus-html.el

index ab9782ab36c4edef283c327667c91db300321dd9..efa74146a91595cd036570317232f7f57e195739 100644 (file)
       (setq props (plist-put props :background (face-background face))))
     (apply 'create-image file type data-p props)))
 
-(defun gnus-put-image (glyph &optional string category point)
-  (let ((point (or point (point))))
-    (save-excursion
-      (goto-char point)
-      (insert-image glyph (or string " "))
-      (put-text-property point (point) 'gnus-image-category category)
-      (unless string
-       (put-text-property (1- (point)) (point)
-                          'gnus-image-text-deletable t)))
+(defun gnus-put-image (glyph &optional string category)
+  (let ((point (point)))
+    (insert-image glyph (or string " "))
+    (put-text-property point (point) 'gnus-image-category category)
+    (unless string
+      (put-text-property (1- (point)) (point)
+                        'gnus-image-text-deletable t))
     glyph))
 
 (defun gnus-remove-image (image &optional category)
index ba1420fb8ac5b952c2f0a283b273fd4bf5089ae0..e82fee839d0f0000449e76348763bb532ea1b3f6 100644 (file)
        (if (and image
                 ;; Kludge to avoid displaying 30x30 gif images, which
                 ;; seems to be a signal of a broken image.
-                (not (and (eq (getf (cdr image) :type) 'gif)
+                (not (and (listp image)
+                          (eq (getf (cdr image) :type) 'gif)
                           (= (car (image-size image t)) 30)
                           (= (cdr (image-size image t)) 30))))
            (progn