changeset 112195:0a2b87003c28

Minor docfixes in imagemagick_load_image.
author Tassilo Horn <tassilo@member.fsf.org>
date Wed, 12 Jan 2011 08:35:04 +0100
parents 978fe18f0882
children 7440cd13b8bf c5917804ecad
files src/image.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;