From: Tassilo Horn Date: Wed, 12 Jan 2011 07:35:04 +0000 (+0100) Subject: Minor docfixes in imagemagick_load_image. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~1322^2~236^2~5 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=03d32f1b2263270b75a0b3324c52c39965345665;p=emacs.git Minor docfixes in imagemagick_load_image. --- 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;