src/Pure/pure_thy.ML
changeset 35852 4e3fe0b8687b
parent 35429 afa8cf9e63d8
child 35856 f81557a124d5
--- a/src/Pure/pure_thy.ML	Sun Mar 21 19:04:46 2010 +0100
+++ b/src/Pure/pure_thy.ML	Sun Mar 21 19:28:25 2010 +0100
@@ -33,7 +33,6 @@
   val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list
     -> theory -> (string * thm list) list * theory
   val add_axioms: ((binding * term) * attribute list) list -> theory -> thm list * theory
-  val add_axioms_cmd: ((binding * string) * attribute list) list -> theory -> thm list * theory
   val add_defs: bool -> ((binding * term) * attribute list) list ->
     theory -> thm list * theory
   val add_defs_unchecked: bool -> ((binding * term) * attribute list) list ->
@@ -216,7 +215,6 @@
   val add_axioms             = add_axm Theory.add_axioms_i;
   val add_defs_cmd           = add_axm o Theory.add_defs false;
   val add_defs_unchecked_cmd = add_axm o Theory.add_defs true;
-  val add_axioms_cmd         = add_axm Theory.add_axioms;
 end;