src/Pure/tctical.ML
changeset 32089 568a23753e3a
parent 31945 d5f186aa0bed
child 32145 220c9e439d39
--- a/src/Pure/tctical.ML	Mon Jul 20 20:03:19 2009 +0200
+++ b/src/Pure/tctical.ML	Mon Jul 20 21:20:09 2009 +0200
@@ -195,7 +195,7 @@
     (fn st =>
      (tracing msg;
       tracing ((Pretty.string_of o Pretty.chunks o
-                 Display.pretty_goals (! Display.goals_limit)) st);
+                 Display_Goal.pretty_goals (! Display_Goal.goals_limit)) st);
       Seq.single st));
 
 (*Pause until a line is typed -- if non-empty then fail. *)
@@ -233,7 +233,7 @@
 (*Extract from a tactic, a thm->thm seq function that handles tracing*)
 fun tracify flag tac st =
   if !flag andalso not (!suppress_tracing)
-           then (Display.print_goals (! Display.goals_limit) st;
+           then (Display_Goal.print_goals (! Display_Goal.goals_limit) st;
                  tracing "** Press RETURN to continue:";
                  exec_trace_command flag (tac,st))
   else tac st;