Mercurial > emacs
changeset 109834:aa2bde544453
create-animated-image: Don't add heuristic mask to image (Bug#6839).
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Wed, 18 Aug 2010 07:46:27 +0000 |
parents | 2110ce0ca5bc (current diff) 5883fc00b976 (diff) |
children | 58e44f7a82d5 |
files | |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Tue Aug 17 23:54:26 2010 -0700 +++ b/lisp/ChangeLog Wed Aug 18 07:46:27 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 Tue Aug 17 23:54:26 2010 -0700 +++ b/lisp/image.el Wed Aug 18 07:46:27 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))