src/Pure/Isar/isar_syn.ML
changeset 56887 1ca814da47ae
parent 56869 6e26ae897bad
child 56893 62d237cdc341
--- a/src/Pure/Isar/isar_syn.ML	Tue May 06 22:55:44 2014 +0200
+++ b/src/Pure/Isar/isar_syn.ML	Tue May 06 23:08:18 2014 +0200
@@ -998,9 +998,7 @@
 val _ =
   Outer_Syntax.improper_command @{command_spec "print_state"}
     "print current proof state (if present)"
-    (opt_modes >> (fn modes =>
-      Toplevel.keep (fn state =>
-        Print_Mode.with_modes modes (Toplevel.print_state true) state)));
+    (opt_modes >> (fn modes => Toplevel.keep (Print_Mode.with_modes modes Toplevel.print_state)));
 
 val _ = (*Proof General legacy, e.g. for ProofGeneral-3.7.x*)
   Outer_Syntax.improper_command @{command_spec "pr"} "print current proof state (if present)"
@@ -1009,7 +1007,7 @@
        (if Isabelle_Process.is_active () then error "Illegal TTY command" else ();
         case limit of NONE => () | SOME n => Options.default_put_int @{system_option goals_limit} n;
         Toplevel.quiet := false;
-        Print_Mode.with_modes modes (Toplevel.print_state true) state))));
+        Print_Mode.with_modes modes Toplevel.print_state state))));
 
 val _ = (*Proof General legacy*)
   Outer_Syntax.improper_command @{command_spec "disable_pr"}