Index: trunk/src_plugins/io_pads/read_high.c =================================================================== --- trunk/src_plugins/io_pads/read_high.c (revision 35126) +++ trunk/src_plugins/io_pads/read_high.c (revision 35127) @@ -307,7 +307,12 @@ else if ((strcmp(ptype, "COPCCO") == 0) || (strcmp(ptype, "COPCIR") == 0) || (strcmp(ptype, "CIRCUR") == 0)) { if ((res = pads_parse_piece_circle(rctx, &lpc, num_crds, 1)) <= 0) return res; } + else if ((strcmp(ptype, "COPCLS") == 0) || (strcmp(ptype, "CLOSED") == 0)) { +TODO("read COPCLS here in another branch of the else if - should be poly"); + goto todo1; + } else { + todo1:; for(n = 0; n < num_crds; n++) if ((res = pads_parse_piece_crd(rctx, &lpc, n)) <= 0) return res; }