Observe order of declaration when printing registrations.
authorballarin
Thu, 15 Oct 2009 22:06:43 +0200
changeset 32980 d556a0e04e33
parent 32848 484863ae9b98
child 32981 0114e04a0d64
Observe order of declaration when printing registrations.
src/Pure/Isar/locale.ML
--- a/src/Pure/Isar/locale.ML	Thu Oct 01 23:03:59 2009 +0200
+++ b/src/Pure/Isar/locale.ML	Thu Oct 15 22:06:43 2009 +0200
@@ -427,7 +427,7 @@
   in
     (case these_registrations thy name of
         [] => Pretty.str ("no interpretations")
-      | regs => Pretty.big_list "interpretations:" (map prt_reg regs))
+      | regs => Pretty.big_list "interpretations:" (map prt_reg (rev regs)))
     |> Pretty.writeln
   end;