src/Pure/drule.ML
changeset 29579 cb520b766e00
parent 29344 fc4a04a2970a
child 30342 d32daa6aba3c
--- a/src/Pure/drule.ML	Wed Jan 21 16:47:03 2009 +0100
+++ b/src/Pure/drule.ML	Wed Jan 21 16:47:04 2009 +0100
@@ -460,10 +460,10 @@
 val read_prop = certify o SimpleSyntax.read_prop;
 
 fun store_thm name th =
-  Context.>>> (Context.map_theory_result (PureThy.store_thm (name, th)));
+  Context.>>> (Context.map_theory_result (PureThy.store_thm (Binding.name name, th)));
 
 fun store_thm_open name th =
-  Context.>>> (Context.map_theory_result (PureThy.store_thm_open (name, th)));
+  Context.>>> (Context.map_theory_result (PureThy.store_thm_open (Binding.name name, th)));
 
 fun store_standard_thm name th = store_thm name (standard th);
 fun store_standard_thm_open name thm = store_thm_open name (standard' thm);