Mercurial > emacs
changeset 109833:5883fc00b976
create-animated-image: Don't add heuristic mask to image (Bug#6839).
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Wed, 18 Aug 2010 07:45:14 +0000 |
parents | 98f2d1d177a5 |
children | aa2bde544453 529971ebf9b1 |
files | lisp/ChangeLog lisp/image.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Aug 18 07:43:30 2010 +0000 +++ b/lisp/ChangeLog Wed Aug 18 07:45:14 2010 +0000 @@ -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
--- a/lisp/image.el Wed Aug 18 07:43:30 2010 +0000 +++ b/lisp/image.el Wed Aug 18 07:45:14 2010 +0000 @@ -616,7 +616,7 @@ (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))