Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2547adb1
Commit
2547adb1
authored
Jun 10, 2011
by
Chong Yidong
Browse files
* image.c (gif_load): Fix omitted cast error introduced by 2011-06-06 change.
parent
2c8e37d4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/image.c
src/image.c
+1
-1
No files found.
src/ChangeLog
View file @
2547adb1
2011-06-10 Chong Yidong <cyd@stupidchicken.com>
* image.c (gif_load): Fix omitted cast error introduced by
2011-06-06 change.
2011-06-10 Martin Rudalics <rudalics@gmx.at>
* window.h (resize_proportionally, orig_total_lines)
...
...
src/image.c
View file @
2547adb1
...
...
@@ -7238,7 +7238,7 @@ gif_load (struct frame *f, struct image *img)
/* From gif89a spec: 1 = "keep in place", 2 = "restore
to background". Treat any other value like 2. */
disposal = (extblock->Bytes[0] >> 2) & 7;
transparency_color_index = extblock->Bytes[3];
transparency_color_index =
(unsigned char)
extblock->Bytes[3];
break;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment