Index: obj_common.c =================================================================== --- obj_common.c (revision 19716) +++ obj_common.c (revision 19717) @@ -144,8 +144,6 @@ } } -#define istrue(s) ((*(s) == '1') || (*(s) == 'y') || (*(s) == 'Y') || (*(s) == 't') || (*(s) == 'T')) - void pcb_obj_attrib_post_change(pcb_attribute_list_t *list, const char *name, const char *value) { pcb_any_obj_t *obj = (pcb_any_obj_t *)(((char *)list) - offsetof(pcb_any_obj_t, Attributes)); @@ -156,9 +154,6 @@ if (inv != NULL) pcb_message(PCB_MSG_ERROR, "Invalid character '%c' in terminal name (term attribute) '%s'\n", *inv, obj->term); } - else if (strcmp(name, "intcut") == 0) { - obj->intcut = istrue(value); - } else if (strcmp(name, "intconn") == 0) { long cid = 0; if (value != NULL) {