From 1075cd6169a81e8865714b26f7691cb9e1bc28db Mon Sep 17 00:00:00 2001 From: Katsumi Yamaoka Date: Wed, 18 Aug 2010 07:45:14 +0000 Subject: [PATCH] create-animated-image: Don't add heuristic mask to image (Bug#6839). --- lisp/ChangeLog | 5 +++++ lisp/image.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e9712bd80dd..6a92ea844aa 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-08-18 Katsumi Yamaoka + + * image.el (create-animated-image): Don't add heuristic mask to image + (Bug#6839). + 2010-08-18 Jan Djärv * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard): Use diff --git a/lisp/image.el b/lisp/image.el index 287cca81570..4a68b4999ea 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -616,7 +616,7 @@ Images should not be larger than specified by `max-image-size'." (let* ((animate (memq type image-animated-types)) (image (append (list 'image :type type (if data-p :data :file) file-or-data) - (if animate '(:index 0 :mask heuristic)) + (if animate '(:index 0)) props))) (if animate (image-animate-start image)) -- 2.39.5