author | wenzelm |
Tue, 11 Jul 2006 12:16:59 +0200 | |
changeset 20074 | b4d0b545df01 |
parent 20073 | da82b545d2de |
child 20075 | a7e183bfebef |
--- a/src/Provers/hypsubst.ML Tue Jul 11 12:16:58 2006 +0200 +++ b/src/Provers/hypsubst.ML Tue Jul 11 12:16:59 2006 +0200 @@ -74,7 +74,7 @@ change it back (any Bound variable will do)*) fun contract t = (case Pattern.eta_contract_atom t of - Free (a, T) => if Term.is_bound a then Bound 0 else Free (a, T) + Free (a, T) => if Name.is_bound a then Bound 0 else Free (a, T) | t' => t'); fun has_vars t = maxidx_of_term t <> ~1;