src/Pure/ML/ml_thms.ML
changeset 58011 bc6bced136e5
parent 56304 40274e4f5ebf
child 58028 e4250d370657
--- a/src/Pure/ML/ml_thms.ML	Tue Aug 19 18:21:29 2014 +0200
+++ b/src/Pure/ML/ml_thms.ML	Tue Aug 19 23:17:51 2014 +0200
@@ -6,7 +6,7 @@
 
 signature ML_THMS =
 sig
-  val the_attributes: Proof.context -> int -> Args.src list
+  val the_attributes: Proof.context -> int -> Token.src list
   val the_thmss: Proof.context -> thm list list
   val get_stored_thms: unit -> thm list
   val get_stored_thm: unit -> thm
@@ -25,7 +25,7 @@
 
 structure Data = Proof_Data
 (
-  type T = Args.src list Inttab.table * thms list;
+  type T = Token.src list Inttab.table * thms list;
   fun init _ = (Inttab.empty, []);
 );