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:
Tim Edwards 2016-10-18 10:19:49 -04:00
parent d753e2c208
commit bb07a84ae1
1 changed files with 1 additions and 1 deletions

View File

@ -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;