1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(gnus-display-x-face-in-from): Remove unnecessary use of

default-enable-multibyte-characters.
This commit is contained in:
Stefan Monnier 2008-04-05 20:07:27 +00:00
parent 7ab0253ddb
commit d7eb3b362d
2 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
* gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
default-enable-multibyte-characters.
* mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
* nnweb.el (nnweb-init): Avoid nn-with-unibyte.

View File

@ -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