src/Pure/Thy/context.ML
changeset 5049 bde086cfa597
parent 5042 1f077d63a909
child 5059 dcdb21e53537
--- a/src/Pure/Thy/context.ML	Thu Jun 18 11:20:54 1998 +0200
+++ b/src/Pure/Thy/context.ML	Thu Jun 18 11:22:45 1998 +0200
@@ -8,7 +8,7 @@
 signature BASIC_CONTEXT =
 sig
   val context: theory -> unit
-  val Thy: unit -> theory
+  val the_context: unit -> theory
   val Thm: xstring -> thm
   val Thms: xstring -> thm list
   val Goal: string -> thm list
@@ -24,7 +24,6 @@
   val welcome: unit -> string
   val get_context: unit -> theory option
   val set_context: theory option -> unit
-  val the_context: unit -> theory
   val reset_context: unit -> unit
   val >> : (theory -> theory) -> unit
 end;
@@ -62,8 +61,6 @@
     Some thy => thy
   | _ => error "Unknown theory context");
 
-val Thy = the_context;
-
 fun context thy = set_context (Some thy);
 fun reset_context () = set_context None;