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

create-animated-image: Don't add heuristic mask to image (Bug#6839).

This commit is contained in:
Katsumi Yamaoka 2010-08-18 07:45:14 +00:00
parent 3b083a0f13
commit 1075cd6169
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
* image.el (create-animated-image): Don't add heuristic mask to image
(Bug#6839).
2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
* term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard): Use

View File

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