Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
dbfe4532
Commit
dbfe4532
authored
Sep 04, 2010
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* image.c (imagemagick_image_p): Replace bcopy by memcpy.
parent
dd0c613c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/image.c
src/image.c
+1
-1
No files found.
src/ChangeLog
View file @
dbfe4532
2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
* image.c (imagemagick_image_p): Replace bcopy by memcpy.
2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
* xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
...
...
src/image.c
View file @
dbfe4532
...
...
@@ -7413,7 +7413,7 @@ static int
imagemagick_image_p (Lisp_Object object)
{
struct image_keyword fmt[IMAGEMAGICK_LAST];
bcopy (
imagemagick_format,
fmt,
sizeof fmt);
memcpy (fmt,
imagemagick_format, sizeof fmt);
if (!parse_image_spec (object, fmt, IMAGEMAGICK_LAST, Qimagemagick))
return 0;
...
...
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