Corrected error that fails to remove property records of any
instance that is deleted because it has been ignored with the 'ignore' command.
This commit is contained in:
parent
d753e2c208
commit
bb07a84ae1
|
|
@ -360,7 +360,7 @@ int deleteclass(struct hashlist *p, int file)
|
||||||
ob = nob;
|
ob = nob;
|
||||||
if (ob == NULL) break;
|
if (ob == NULL) break;
|
||||||
nob = ob->next;
|
nob = ob->next;
|
||||||
if (ob->type <= FIRSTPIN) break;
|
if (ob->type != PROPERTY && ob->type <= FIRSTPIN) break;
|
||||||
}
|
}
|
||||||
if (lob == NULL)
|
if (lob == NULL)
|
||||||
ptr->cell = ob;
|
ptr->cell = ob;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue