Thanks to you both. At some time during my experimentation process, the
file was overwritten and lost the PLUG_IN_INFO (along with everything
else), and I hadn't thought to look at the file again, since I hadn't
edited it. Thank goodness for CVS!
Thanks again,
Cindy
looks as if your plug-in doesn't specify PLUG_IN_INFO. Every plug-in
needs to setup a global array of function pointers like this:
GimpPlugInInfo PLUG_IN_INFO =
{
NULL, /* init_proc */
NULL, /* quit_proc */
query, /* query_proc */
run /* run_proc */
};