Reindenting code.

This commit is contained in:
Cas Cremers
2011-01-25 17:33:12 +01:00
parent 68409e14ad
commit fea2bcf477
4 changed files with 22 additions and 17 deletions

View File

@@ -926,12 +926,13 @@ tuple_to_termlist (Term t)
}
//! Get the leftmost term of a tuple (e.g. a non-tuple)
Term termLeft(Term t)
Term
termLeft (Term t)
{
t = deVar(t);
t = deVar (t);
if (realTermTuple (t))
{
return termLeft(TermOp1 (t));
return termLeft (TermOp1 (t));
}
return t;
}