src/Pure/PIDE/markup.ML
changeset 59369 7090199d3f78
parent 59364 3b5da177ae6b
child 59795 d453c69596cc
--- a/src/Pure/PIDE/markup.ML	Thu Jan 15 11:39:58 2015 +0100
+++ b/src/Pure/PIDE/markup.ML	Thu Jan 15 12:54:08 2015 +0100
@@ -186,7 +186,7 @@
   val command_timing: Properties.entry
   val loading_theory: string -> Properties.T
   val dest_loading_theory: Properties.T -> string option
-  val build_theories_result: string -> bool -> Properties.T
+  val build_theories_result: string -> Properties.T
   val print_operationsN: string
   val print_operations: Properties.T
   val simp_trace_panelN: string
@@ -597,8 +597,7 @@
 fun dest_loading_theory [("function", "loading_theory"), ("name", name)] = SOME name
   | dest_loading_theory _ = NONE;
 
-fun build_theories_result id ok =
-  [("function", "build_theories_result"), ("id", id), ("ok", print_bool ok)];
+fun build_theories_result id = [("function", "build_theories_result"), ("id", id)];
 
 val print_operationsN = "print_operations";
 val print_operations = [(functionN, print_operationsN)];