# HG changeset patch # User Tassilo Horn # Date 1294817704 -3600 # Node ID 0a2b87003c282c982ff9b05a906d97fb838ccedd # Parent 978fe18f088214446f65792ed8c1c3edcc75f004 Minor docfixes in imagemagick_load_image. diff -r 978fe18f0882 -r 0a2b87003c28 src/image.c --- a/src/image.c Tue Jan 11 20:28:12 2011 -0800 +++ b/src/image.c Wed Jan 12 08:35:04 2011 +0100 @@ -7522,7 +7522,7 @@ 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 @@ /* Final cleanup. image_wand should be the only resource left. */ DestroyMagickWand (image_wand); + /* `MagickWandTerminus' terminates the imagemagick environment. */ MagickWandTerminus (); return 1;