Index: trunk/src_plugins/io_lihata/read.c =================================================================== --- trunk/src_plugins/io_lihata/read.c (revision 8089) +++ trunk/src_plugins/io_lihata/read.c (revision 8090) @@ -1207,12 +1207,14 @@ lht_doc_t *doc = lht_dom_load(Filename, &errmsg); if (doc == NULL) { - pcb_message(PCB_MSG_ERROR, "Error loading '%s': %s\n", Filename, errmsg); + if (!pcb_io_err_inhibit) + pcb_message(PCB_MSG_ERROR, "Error loading '%s': %s\n", Filename, errmsg); return -1; } if ((doc->root->type != LHT_LIST) || (strcmp(doc->root->name, "pcb-rnd-font-v1"))) { - pcb_message(PCB_MSG_ERROR, "Not a font lihata.\n"); + if (!pcb_io_err_inhibit) + pcb_message(PCB_MSG_ERROR, "Not a font lihata.\n"); return -1; }