src/Pure/Isar/proof_context.ML
changeset 14643 130076a81b84
parent 14564 3667b4616e9a
child 14665 d2e5df3d1201
--- a/src/Pure/Isar/proof_context.ML	Thu Apr 22 10:49:30 2004 +0200
+++ b/src/Pure/Isar/proof_context.ML	Thu Apr 22 10:52:32 2004 +0200
@@ -19,7 +19,6 @@
   val prems_of: context -> thm list
   val print_proof_data: theory -> unit
   val init: theory -> context
-  val add_syntax: (string * typ option * mixfix option) list -> context -> context
   val is_fixed: context -> string -> bool
   val default_type: context -> string -> typ option
   val used_types: context -> string list
@@ -105,7 +104,7 @@
   val fix: (string list * string option) list -> context -> context
   val fix_i: (string list * typ option) list -> context -> context
   val fix_direct: (string list * typ option) list -> context -> context
-  val add_fixes: (string * typ option * mixfix option) list -> context -> context
+  val add_fixes: (string * typ option * Syntax.mixfix option) list -> context -> context
   val fix_frees: term list -> context -> context
   val bind_skolem: context -> string list -> term -> term
   val get_case: context -> string -> string option list -> RuleCases.T
@@ -1223,8 +1222,6 @@
 
 end;
 
-(* CB: fix free variables occuring in ts, unless already fixed. *)
-
 fun fix_frees ts ctxt =
   let
     val frees = foldl Term.add_frees ([], ts);