export write_graph;
authorwenzelm
Thu, 27 Jul 2000 18:25:28 +0200
changeset 9452 fc02c5bacaab
parent 9451 5c25ed3c10a0
child 9453 4b37161f2b2e
export write_graph;
src/Pure/Thy/present.ML
--- a/src/Pure/Thy/present.ML	Thu Jul 27 18:25:01 2000 +0200
+++ b/src/Pure/Thy/present.ML	Thu Jul 27 18:25:28 2000 +0200
@@ -14,6 +14,8 @@
 signature PRESENT =
 sig
   include BASIC_PRESENT
+  val write_graph: {name: string, ID: string, dir: string, unfold: bool,
+   path: string, parents: string list} list -> Path.T -> unit
   val init: bool -> string -> string list -> string -> Path.T option -> Url.T option * bool -> unit
   val finish: unit -> unit
   val init_theory: string -> unit
@@ -68,7 +70,7 @@
 
   val empty = {name = "Pure", session = [], is_local = false};
   val copy = I;
-  fun prep_ext _ = empty;
+  fun prep_ext _ = {name = "", session = [], is_local = false};
   fun merge _ = empty;
   fun print _ _ = ();
 end;