src/Pure/old_goals.ML
changeset 32089 568a23753e3a
parent 29606 fedb8be05f24
child 32091 30e2ffbba718
--- a/src/Pure/old_goals.ML	Mon Jul 20 20:03:19 2009 +0200
+++ b/src/Pure/old_goals.ML	Mon Jul 20 21:20:09 2009 +0200
@@ -135,7 +135,7 @@
 (*Default action is to print an error message; could be suppressed for
   special applications.*)
 fun result_error_default state msg : thm =
-  Pretty.str "Bad final proof state:" :: Display.pretty_goals (!goals_limit) state @
+  Pretty.str "Bad final proof state:" :: Display_Goal.pretty_goals (!goals_limit) state @
     [Pretty.str msg, Pretty.str "Proof failed!"] |> Pretty.chunks |> Pretty.string_of |> error;
 
 val result_error_fn = ref result_error_default;
@@ -277,7 +277,7 @@
       (if ngoals > 0 then " (" ^ string_of_int ngoals ^ " subgoal" ^
         (if ngoals <> 1 then "s" else "") ^ ")"
       else ""))] @
-    Display.pretty_goals m th
+    Display_Goal.pretty_goals m th
   end |> Pretty.chunks |> Pretty.writeln;
 
 (*Printing can raise exceptions, so the assignment occurs last.