fix handling of holds.

This commit is contained in:
Vitor Santos Costa 2009-03-13 21:57:15 +00:00
parent c49661f88c
commit add296ba37
1 changed files with 7 additions and 0 deletions

View File

@ -1338,6 +1338,13 @@ RestoreEntries(PropEntry *pp, int int_key)
ve->ValueOfVE = AtomTermAdjust(tv);
}
break;
case HoldProperty:
{
HoldEntry *he = (HoldEntry *)pp;
he->NextOfPE =
PropAdjust(he->NextOfPE);
}
break;
case ArrayProperty:
{
ArrayEntry *ae = (ArrayEntry *)pp;