src/Pure/drule.ML
changeset 28674 08a77c495dc1
parent 28618 fa09f7b8ffca
child 28713 135317cd34d6
--- a/src/Pure/drule.ML	Thu Oct 23 14:22:16 2008 +0200
+++ b/src/Pure/drule.ML	Thu Oct 23 15:28:01 2008 +0200
@@ -681,10 +681,10 @@
 
 local
   val A = certify (Free ("A", propT));
-  val get_axiom = Thm.unvarify o Thm.get_axiom (Context.the_theory (Context.the_thread_data ()));
-  val prop_def = get_axiom "prop_def";
-  val term_def = get_axiom "term_def";
-  val sort_constraint_def = get_axiom "sort_constraint_def";
+  val axiom = Thm.unvarify o Thm.axiom (Context.the_theory (Context.the_thread_data ()));
+  val prop_def = axiom "Pure.prop_def";
+  val term_def = axiom "Pure.term_def";
+  val sort_constraint_def = axiom "Pure.sort_constraint_def";
   val C = Thm.lhs_of sort_constraint_def;
   val T = Thm.dest_arg C;
   val CA = mk_implies (C, A);