]> git.eshelyaron.com Git - emacs.git/commitdiff
* image.c (imagemagick_image_p): Replace bcopy by memcpy.
authorAndreas Schwab <schwab@linux-m68k.org>
Sat, 4 Sep 2010 08:23:09 +0000 (10:23 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Sat, 4 Sep 2010 08:23:09 +0000 (10:23 +0200)
src/ChangeLog
src/image.c

index c70db2ad69af1f9a5e99b817ffc3d498c8a3f30d..ce5e139f49cd75d8b9dac3cdc99c48e8772e5bca 100644 (file)
@@ -1,3 +1,7 @@
+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.
index ae4bf2fd937b31f98941126c82fd723c23e3b419..e6e1605b024861c725251bbc314dfcf3ca521ea0 100644 (file)
@@ -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;