Removed the id_enum macro and replaced id_struct by id_tag (better name)

This commit is contained in:
ceriel
1991-07-08 16:49:04 +00:00
parent ca104453ca
commit 240dd55fd9
6 changed files with 15 additions and 23 deletions

View File

@@ -150,11 +150,11 @@ unstack_level()
idf->id_sdef = sdef->next;
free_sdef(sdef);
}
while ( (tag = idf->id_struct)
while ( (tag = idf->id_tag)
&& tag->tg_level >= level
) {
/* unlink it from the struct list under the idf block */
idf->id_struct = tag->next;
idf->id_tag = tag->next;
free_tag(tag);
}
}