diff --git a/magick/coder.c b/magick/coder.c
index 584fed5..436b7f7 100644
--- a/magick/coder.c
+++ b/magick/coder.c
@@ -238,20 +238,20 @@
% %
% %
% %
-+ D e s t r o y C o d e r L i s t %
++ D e s t r o y C o d e r F a c i l i t y %
% %
% %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
-% DestroyCoderList() deallocates memory associated with the font list.
+% DestroyCoderFacility() destroys the coder facility.
%
-% The format of the DestroyCoderList method is:
+% The format of the DestroyCoderFacility method is:
%
-% DestroyCoderList(void)
+% DestroyCoderFacility(void)
%
*/
-MagickExport void DestroyCoderList(void)
+MagickExport void DestroyCoderFacility(void)
{
AcquireSemaphoreInfo(&coder_semaphore);
if (coder_list != (SplayTreeInfo *) NULL)
@@ -520,6 +520,31 @@
% %
% %
% %
++ I n s t a n t i a t e C o d e r F a c i l i t y %
+% %
+% %
+% %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+% InstantiateCoderFacility() instantiates the coder facility.
+%
+% The format of the InstantiateCoderFacility method is:
+%
+% MagickBooleanType InstantiateCoderFacility(void)
+%
+*/
+MagickExport MagickBooleanType InstantiateCoderFacility(void)
+{
+ AcquireSemaphoreInfo(&coder_semaphore);
+ RelinquishSemaphoreInfo(coder_semaphore);
+ return(MagickTrue);
+}
+
+/*
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% %
+% %
+% %
% L i s t C o d e r I n f o %
% %
% %