diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-05 20:07:27 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-05 20:07:27 +0000 |
commit | d7eb3b362d86cd14a1e1541f1fb6a651f973e337 (patch) | |
tree | 481f0cc12b9f48f5b127d3c7a26d6f82827b19b3 /lisp/gnus/gnus-fun.el | |
parent | 7ab0253ddb614d46a54f7d858c620c11ea81b2e0 (diff) | |
download | emacs-d7eb3b362d86cd14a1e1541f1fb6a651f973e337.tar.gz |
(gnus-display-x-face-in-from): Remove unnecessary use of
default-enable-multibyte-characters.
Diffstat (limited to 'lisp/gnus/gnus-fun.el')
-rw-r--r-- | lisp/gnus/gnus-fun.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/gnus/gnus-fun.el b/lisp/gnus/gnus-fun.el index 72627f27e3e..b4d71b1a6c6 100644 --- a/lisp/gnus/gnus-fun.el +++ b/lisp/gnus/gnus-fun.el @@ -217,8 +217,7 @@ colors of the displayed X-Faces." (defun gnus-display-x-face-in-from (data) "Display the X-Face DATA in the From header." (require 'gnus-art) - (let ((default-enable-multibyte-characters nil) - pbm) + (let (pbm) (when (or (gnus-image-type-available-p 'xface) (and (gnus-image-type-available-p 'pbm) (setq pbm (uncompface data)))) @@ -293,5 +292,5 @@ colors of the displayed X-Faces." (provide 'gnus-fun) -;;; arch-tag: 9d000a69-15cc-4491-9dc0-4627484f50c1 +;; arch-tag: 9d000a69-15cc-4491-9dc0-4627484f50c1 ;;; gnus-fun.el ends here |