improved previous fix

This commit is contained in:
ceriel 1987-10-05 16:17:51 +00:00
parent 34a7f6a008
commit faa22c0da8

View File

@ -74,7 +74,7 @@ MkDef(id, scope, kind)
df->df_kind = kind;
df->df_next = id->id_def;
id->id_def = df;
if (kind == D_ERROR) df->df_type = error_type;
if (kind == D_ERROR || kind == D_FORWARD) df->df_type = error_type;
/* enter the definition in the list of definitions in this scope
*/