From 03d32f1b2263270b75a0b3324c52c39965345665 Mon Sep 17 00:00:00 2001 From: Tassilo Horn Date: Wed, 12 Jan 2011 08:35:04 +0100 Subject: [PATCH] Minor docfixes in imagemagick_load_image. --- src/image.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/image.c b/src/image.c index c39a9ef281..bb2ad20f5f 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; -- 2.20.1