delay unification with start of term, in case we come up with comments.

This commit is contained in:
Vitor Santos Costa 2011-06-14 08:57:23 +01:00
parent a84b865231
commit 4e5c3b9103

View File

@ -568,11 +568,6 @@ static Int
return FALSE;
}
LOCAL_Error_TYPE = YAP_NO_ERROR;
tpos = Yap_StreamPosition(inp_stream);
if (!Yap_unify(tpos,ARG5)) {
/* do this early so that we do not have to protect it in case of stack expansion */
return FALSE;
}
while (TRUE) {
CELL *old_H;
int64_t cpos = 0;
@ -621,6 +616,10 @@ static Int
break;
}
}
if (!Yap_unify(tpos,ARG5)) {
/* do this early so that we do not have to protect it in case of stack expansion */
return FALSE;
}
LOCAL_Error_TYPE = YAP_NO_ERROR;
/* preserve value of H after scanning: otherwise we may lose strings
and floats */