diff options
| author | Andreas Schwab | 2010-09-04 10:23:09 +0200 |
|---|---|---|
| committer | Andreas Schwab | 2010-09-04 10:23:09 +0200 |
| commit | dbfe4532cba587de47d8c20348a2c01d7b801dad (patch) | |
| tree | 98beb8aff29a5dcb040fed4f881244fdab7e9fe9 /src/image.c | |
| parent | dd0c613c9ff9395e9830f53e22e3bc600f3de3a6 (diff) | |
| download | emacs-dbfe4532cba587de47d8c20348a2c01d7b801dad.tar.gz emacs-dbfe4532cba587de47d8c20348a2c01d7b801dad.zip | |
* image.c (imagemagick_image_p): Replace bcopy by memcpy.
Diffstat (limited to 'src/image.c')
| -rw-r--r-- | src/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c index ae4bf2fd937..e6e1605b024 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -7413,7 +7413,7 @@ static int | |||
| 7413 | imagemagick_image_p (Lisp_Object object) | 7413 | imagemagick_image_p (Lisp_Object object) |
| 7414 | { | 7414 | { |
| 7415 | struct image_keyword fmt[IMAGEMAGICK_LAST]; | 7415 | struct image_keyword fmt[IMAGEMAGICK_LAST]; |
| 7416 | bcopy (imagemagick_format, fmt, sizeof fmt); | 7416 | memcpy (fmt, imagemagick_format, sizeof fmt); |
| 7417 | 7417 | ||
| 7418 | if (!parse_image_spec (object, fmt, IMAGEMAGICK_LAST, Qimagemagick)) | 7418 | if (!parse_image_spec (object, fmt, IMAGEMAGICK_LAST, Qimagemagick)) |
| 7419 | return 0; | 7419 | return 0; |