summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2002-03-11 13:32:22 +0000
committerPavel Janík <Pavel@Janik.cz>2002-03-11 13:32:22 +0000
commitee485a83873b03aa98b31e27c7b8224470b46565 (patch)
tree131364fa2d25c7823e09ed96193dc28f37b7fc9c /lisp
parentdaebae3d8c6e8bb309a65b3360066d8ff4d9d642 (diff)
downloademacs-ee485a83873b03aa98b31e27c7b8224470b46565.tar.gz
(image-type-from-file-header): Make temporary buffer unibyte.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/image.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/image.el b/lisp/image.el
index 3c25323853b..b9fcb29cbcd 100644
--- a/lisp/image.el
+++ b/lisp/image.el
@@ -99,6 +99,7 @@ be determined."
(setq file (expand-file-name file data-directory)))
(setq file (expand-file-name file))
(let ((header (with-temp-buffer
+ (set-buffer-multibyte nil)
(insert-file-contents-literally file nil 0 256)
(buffer-string))))
(image-type-from-data header)))