parse *.kicad_pcb files with numeric net_names

This commit is contained in:
Dick Hollenbeck 2013-02-28 10:17:24 -06:00
parent 9191f28aeb
commit 43eaba0bb0
1 changed files with 1 additions and 1 deletions

View File

@ -2394,7 +2394,7 @@ ZONE_CONTAINER* PCB_PARSER::parseZONE_CONTAINER() throw( IO_ERROR, PARSE_ERROR )
break; break;
case T_net_name: case T_net_name:
NeedSYMBOL(); NeedSYMBOLorNUMBER();
zone->SetNetName( FromUTF8() ); zone->SetNetName( FromUTF8() );
NeedRIGHT(); NeedRIGHT();
break; break;