- Fixed a bug in output overwrite for de-class code.

This commit is contained in:
ccremers
2006-03-31 12:24:32 +00:00
parent 4d7b744e1b
commit 8c03bba02a
3 changed files with 52 additions and 5 deletions

View File

@@ -520,11 +520,13 @@ termlistAddRealVariables (Termlist tl, Term t)
Termlist
termlistAddBasic (Termlist tl, Term t)
{
t = deVar (t);
if (t == NULL)
return tl;
if (!isTermLeaf (t))
if (!realTermLeaf (t))
{
if (isTermEncrypt (t))
if (realTermEncrypt (t))
return termlistAddBasic (termlistAddBasic (tl, TermOp (t)),
TermKey (t));
else