1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

(gnus-x-splash): Avoid binding default-enable-multibyte-characters.

This commit is contained in:
Stefan Monnier 2008-04-05 20:08:27 +00:00
parent d7eb3b362d
commit 2b57967e5c
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
* gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
default-enable-multibyte-characters.
* gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
default-enable-multibyte-characters.

View File

@ -179,9 +179,9 @@
(sit-for 0) ;; Necessary for measuring the window size correctly.
(when (and file
(ignore-errors
(let ((coding-system-for-read 'raw-text)
default-enable-multibyte-characters)
(let ((coding-system-for-read 'raw-text))
(with-temp-buffer
(mm-disable-multibyte)
(insert-file-contents file)
(goto-char (point-min))
(setq pixmap (read (current-buffer)))))))