(gnus-x-splash): Avoid binding default-enable-multibyte-characters.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 5 Apr 2008 20:08:27 +0000 (20:08 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 5 Apr 2008 20:08:27 +0000 (20:08 +0000)
lisp/gnus/ChangeLog
lisp/gnus/gnus-ems.el

index d5850f7..4fd0615 100644 (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.
 
index 337fc38..550a534 100644 (file)
     (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)))))))