Index: src_plugins/io_pcb/file.c =================================================================== --- src_plugins/io_pcb/file.c (revision 5874) +++ src_plugins/io_pcb/file.c (revision 5875) @@ -632,6 +632,8 @@ return 1; if ((strncmp(s, "PCB", 3) == 0) && ((s[3] == '(') || (s[3] == '['))) return 1; + if ((strncmp(s, "Element", 7) == 0) && ((s[7] == '(') || (s[7] == '['))) + return 1; if ((*s == '\r') || (*s == '\n') || (*s == '#') || (*s == '\0')) /* ignore empty lines and comments */ continue; /* non-comment, non-empty line: tolerate at most 16 of these before giving up */