# HG changeset patch # User wenzelm # Date 1152613019 -7200 # Node ID b4d0b545df01e3f9067767bdba8362fcd2639d19 # Parent da82b545d2de904bbea63a5fcba1424b9073d2cf Name.is_bound; diff -r da82b545d2de -r b4d0b545df01 src/Provers/hypsubst.ML --- 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;