From bb07a84ae1ad9b40d7583bc49c1e82319bd716ac Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Tue, 18 Oct 2016 10:19:49 -0400 Subject: [PATCH] Corrected error that fails to remove property records of any instance that is deleted because it has been ignored with the 'ignore' command. --- base/objlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/objlist.c b/base/objlist.c index 804a963..dd28cc7 100644 --- a/base/objlist.c +++ b/base/objlist.c @@ -360,7 +360,7 @@ int deleteclass(struct hashlist *p, int file) ob = nob; if (ob == NULL) break; nob = ob->next; - if (ob->type <= FIRSTPIN) break; + if (ob->type != PROPERTY && ob->type <= FIRSTPIN) break; } if (lob == NULL) ptr->cell = ob;