print_antiquotations: sort_strings;
authorwenzelm
Tue, 05 Jun 2007 22:46:59 +0200
changeset 23272 25c84ca5e9a9
parent 23271 3f9ef4bf3f31
child 23273 c6d5ab154c7c
print_antiquotations: sort_strings;
src/Pure/Thy/thy_output.ML
--- a/src/Pure/Thy/thy_output.ML	Tue Jun 05 22:46:58 2007 +0200
+++ b/src/Pure/Thy/thy_output.ML	Tue Jun 05 22:46:59 2007 +0200
@@ -84,8 +84,9 @@
 
 fun print_antiquotations () =
  [Pretty.big_list "text antiquotation commands:"
-    (map Pretty.str (Symtab.keys (! global_commands))),
-  Pretty.big_list "text antiquotation options:" (map Pretty.str (Symtab.keys (! global_options)))]
+    (map Pretty.str (sort_strings (Symtab.keys (! global_commands)))),
+  Pretty.big_list "text antiquotation options:"
+    (map Pretty.str (sort_strings (Symtab.keys (! global_options))))]
  |> Pretty.chunks |> Pretty.writeln;
 
 end;