Index: trunk/src/change_act.c =================================================================== --- trunk/src/change_act.c (revision 15609) +++ trunk/src/change_act.c (revision 15610) @@ -544,6 +544,7 @@ pinname = argv[2]; #warning subc TODO: rewrite this +#if 0 PCB_ELEMENT_LOOP(PCB->Data); { if (PCB_NSTRCMP(refdes, PCB_ELEM_NAME_REFDES(element)) == 0) { @@ -579,6 +580,7 @@ } } PCB_END_LOOP; +#endif /* * done with our action so increment the undo # if we actually * changed anything Index: trunk/src/find_debug.c =================================================================== --- trunk/src/find_debug.c (revision 15609) +++ trunk/src/find_debug.c (revision 15610) @@ -35,11 +35,14 @@ static void PrintElementNameList(pcb_element_t *Element, FILE * FP) { fputc('(', FP); +#warning subc TODO: rewrite this +#if 0 pcb_print_quoted_string(FP, (char *) PCB_EMPTY(PCB_ELEM_NAME_DESCRIPTION(Element))); fputc(' ', FP); pcb_print_quoted_string(FP, (char *) PCB_EMPTY(PCB_ELEM_NAME_REFDES(Element))); fputc(' ', FP); pcb_print_quoted_string(FP, (char *) PCB_EMPTY(PCB_ELEM_NAME_VALUE(Element))); +#endif fputc(')', FP); fputc('\n', FP); } Index: trunk/src/select.c =================================================================== --- trunk/src/select.c (revision 15609) +++ trunk/src/select.c (revision 15610) @@ -617,6 +617,7 @@ if (!PCB_FLAG_TEST(PCB_FLAG_LOCK, element) && ((PCB_FLAG_TEST(PCB_FLAG_ONSOLDER, element) != 0) == PCB_SWAP_IDENT || pcb->InvisibleObjectsOn) && PCB_FLAG_TEST(PCB_FLAG_SELECTED, element) != Flag) { +#if 0 const char* name = PCB_ELEM_NAME_VISIBLE(PCB, element); if (name && REGEXEC(name)) { pcb_undo_add_obj_to_flag(element); @@ -633,7 +634,6 @@ PCB_FLAG_ASSIGN(PCB_FLAG_SELECTED, Flag, pad); } PCB_END_LOOP; -#if 0 PCB_ELEMENT_PCB_TEXT_LOOP(element); { pcb_undo_add_obj_to_flag(text); @@ -642,9 +642,9 @@ PCB_END_LOOP; pcb_elem_name_invalidate_draw(element); pcb_elem_invalidate_draw(element); -#endif changed = pcb_true; } +#endif } } PCB_END_LOOP;