1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

Minor docfixes in imagemagick_load_image.

This commit is contained in:
Tassilo Horn 2011-01-12 08:35:04 +01:00
parent 529ee9edf2
commit 03d32f1b22

View File

@ -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;