diff options
author | Tassilo Horn <tassilo@member.fsf.org> | 2011-01-12 08:35:04 +0100 |
---|---|---|
committer | Tassilo Horn <tassilo@member.fsf.org> | 2011-01-12 08:35:04 +0100 |
commit | 03d32f1b2263270b75a0b3324c52c39965345665 (patch) | |
tree | 373cda296d39acda12bcb1603e489a2691290220 | |
parent | 529ee9edf2fd51f3e53f1fc4f7a9ba1859b0af99 (diff) | |
download | emacs-03d32f1b2263270b75a0b3324c52c39965345665.tar.gz |
Minor docfixes in imagemagick_load_image.
-rw-r--r-- | src/image.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c index c39a9ef2817..bb2ad20f5ff 100644 --- a/src/image.c +++ b/src/image.c @@ -7522,7 +7522,7 @@ imagemagick_load_image (/* Pointer to emacs frame structure. */ image to see how many sub-images it contains. Pinging is faster than loading the image to find out things about it. */ - /* MagickWandGenesis() initializes the imagemagick library. */ + /* `MagickWandGenesis' initializes the imagemagick environment. */ MagickWandGenesis (); image = image_spec_value (img->spec, QCindex, NULL); ino = INTEGERP (image) ? XFASTINT (image) : 0; @@ -7810,6 +7810,7 @@ imagemagick_load_image (/* Pointer to emacs frame structure. */ /* Final cleanup. image_wand should be the only resource left. */ DestroyMagickWand (image_wand); + /* `MagickWandTerminus' terminates the imagemagick environment. */ MagickWandTerminus (); return 1; |