src/Pure/Thy/syntax.ML
changeset 123 0a2f744e008a
parent 81 4cc5a34292a9
child 201 9e41c6cec27c
--- a/src/Pure/Thy/syntax.ML	Tue Nov 16 14:13:11 1993 +0100
+++ b/src/Pure/Thy/syntax.ML	Tue Nov 16 14:23:19 1993 +0100
@@ -7,7 +7,7 @@
 
 signature THYSYN =
  sig
-  datatype BaseType = Thy  of string
+  datatype basetype = Thy  of string
                     | File of string
 
    val read: string list -> string
@@ -115,8 +115,7 @@
     axs ^ "\n\n" ^ vals
   end;
 
-fun mk_struct (id, s) = "structure " ^ id ^ " =\nstruct\n" ^ s ^ "\nend;\n"
-                        ^ "store_theory " ^ quote id ^ " " ^ id ^ ".thy;\n";
+fun mk_struct (id, s) = "structure " ^ id ^ " =\nstruct\n" ^ s ^ "\nend;\n";
 
 
 fun mk_sext mfix trans =
@@ -164,7 +163,7 @@
   | mk_structure ((name, base), None) =
       mk_struct (name, "\nval thy = " ^ base ^ (quote name));
 
-datatype BaseType = Thy  of string
+datatype basetype = Thy  of string
                   | File of string;
 
 fun merge thys =