diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/gnus-art.el | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 7f2a7536717..df35e998c31 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-08-14 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * gnus-art.el (article-display-face): Handle failure in | ||
| 4 | gnus-create-image (Bug#11802). | ||
| 5 | |||
| 1 | 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups): | 8 | * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups): |
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index bb374fba11b..b9020a40b75 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -2437,9 +2437,10 @@ long lines if and only if arg is positive." | |||
| 2437 | (apply 'gnus-create-image png 'png t | 2437 | (apply 'gnus-create-image png 'png t |
| 2438 | (cdr (assq 'png gnus-face-properties-alist)))) | 2438 | (cdr (assq 'png gnus-face-properties-alist)))) |
| 2439 | (goto-char from) | 2439 | (goto-char from) |
| 2440 | (gnus-add-wash-type 'face) | 2440 | (when image |
| 2441 | (gnus-add-image 'face image) | 2441 | (gnus-add-wash-type 'face) |
| 2442 | (gnus-put-image image nil 'face)))))))))) | 2442 | (gnus-add-image 'face image) |
| 2443 | (gnus-put-image image nil 'face))))))))))) | ||
| 2443 | 2444 | ||
| 2444 | (defun article-display-x-face (&optional force) | 2445 | (defun article-display-x-face (&optional force) |
| 2445 | "Look for an X-Face header and display it if present." | 2446 | "Look for an X-Face header and display it if present." |