src/Pure/Isar/isar_output.ML
changeset 14696 e862cc138e9c
parent 14345 3023d90dc59e
child 14707 2d6350d7b9b7
--- a/src/Pure/Isar/isar_output.ML	Sat May 01 22:08:57 2004 +0200
+++ b/src/Pure/Isar/isar_output.ML	Sat May 01 22:09:45 2004 +0200
@@ -262,8 +262,8 @@
 val _ = add_options
  [("show_types", Library.setmp Syntax.show_types o boolean),
   ("show_sorts", Library.setmp Syntax.show_sorts o boolean),
+  ("long_names", Library.setmp NameSpace.long_names o boolean),
   ("eta_contract", Library.setmp Syntax.eta_contract o boolean),
-  ("long_names", Library.setmp NameSpace.long_names o boolean),
   ("display", Library.setmp display o boolean),
   ("break", Library.setmp break o boolean),
   ("quotes", Library.setmp quotes o boolean),
@@ -331,14 +331,14 @@
       handle Toplevel.UNDEF => error "No proof state")))) src state;
 
 val _ = add_commands
- [("text", args (Scan.lift Args.name) (output_with (K pretty_text))),
-  ("thm", args Attrib.local_thmss (output_seq_with pretty_thm)),
-  ("prf", args Attrib.local_thmss (output_with (pretty_prf false))),
-  ("full_prf", args Attrib.local_thmss (output_with (pretty_prf true))),
+ [("thm", args Attrib.local_thmss (output_seq_with pretty_thm)),
   ("prop", args Args.local_prop (output_with pretty_term)),
   ("term", args Args.local_term (output_with pretty_term)),
   ("typ", args Args.local_typ_no_norm (output_with ProofContext.pretty_typ)),
+  ("text", args (Scan.lift Args.name) (output_with (K pretty_text))),
   ("goals", output_goals true),
-  ("subgoals", output_goals false)];
+  ("subgoals", output_goals false),
+  ("prf", args Attrib.local_thmss (output_with (pretty_prf false))),
+  ("full_prf", args Attrib.local_thmss (output_with (pretty_prf true)))];
 
 end;