src/Pure/tctical.ML
changeset 5956 ab4d13e9e77a
parent 5906 1f58694fc3e2
child 5957 9c0c69ab7d02
--- a/src/Pure/tctical.ML	Wed Nov 25 13:57:17 1998 +0100
+++ b/src/Pure/tctical.ML	Wed Nov 25 13:57:44 1998 +0100
@@ -198,9 +198,9 @@
 
 (*Pause until a line is typed -- if non-empty then fail. *)
 fun pause_tac st =  
-  (prs"** Press RETURN to continue: ";
+  (writeln "** Press RETURN to continue: ";
    if TextIO.inputLine TextIO.stdIn = "\n" then Seq.single st
-   else (prs"Goodbye\n";  Seq.empty));
+   else (writeln "Goodbye";  Seq.empty));
 
 exception TRACE_EXIT of thm
 and TRACE_QUIT;
@@ -216,9 +216,9 @@
      | "f\n" => Seq.empty
      | "o\n" => (flag:=false;  tac st)
      | "s\n" => (suppress_tracing:=true;  tac st)
-     | "x\n" => (prs"Exiting now\n";  raise (TRACE_EXIT st))
+     | "x\n" => (writeln "Exiting now";  raise (TRACE_EXIT st))
      | "quit\n" => raise TRACE_QUIT
-     | _     => (prs
+     | _     => (writeln
 "Type RETURN to continue or...\n\
 \     f    - to fail here\n\
 \     o    - to switch tracing off\n\
@@ -232,7 +232,7 @@
 fun tracify flag tac st =
   if !flag andalso not (!suppress_tracing)
            then (print_goals (!goals_limit) st;
-                 prs"** Press RETURN to continue: ";
+                 writeln "** Press RETURN to continue: ";
                  exec_trace_command flag (tac,st))
   else tac st;