# HG changeset patch # User wenzelm # Date 1350412524 -7200 # Node ID d3053a55bfcbbe695fd7ccca9654a5434356adc3 # Parent 619acbd7266443758fa22713d83665109a00c320 tuned messages; diff -r 619acbd72664 -r d3053a55bfcb src/Pure/Isar/proof.ML --- a/src/Pure/Isar/proof.ML Tue Oct 16 20:23:00 2012 +0200 +++ b/src/Pure/Isar/proof.ML Tue Oct 16 20:35:24 2012 +0200 @@ -338,7 +338,7 @@ fun pretty_facts _ _ NONE = [] | pretty_facts s ctxt (SOME ths) = - [Pretty.chunks + [(Pretty.block o Pretty.fbreaks) (Pretty.block [Pretty.command s, Pretty.brk 1, Pretty.str "this:"] :: map (Display.pretty_thm ctxt) ths), Pretty.str ""]; diff -r 619acbd72664 -r d3053a55bfcb src/Pure/Isar/proof_display.ML --- a/src/Pure/Isar/proof_display.ML Tue Oct 16 20:23:00 2012 +0200 +++ b/src/Pure/Isar/proof_display.ML Tue Oct 16 20:35:24 2012 +0200 @@ -120,10 +120,9 @@ val pr_facts = if null facts then "" else - Pretty.string_of - (Pretty.chunks - (Pretty.block [Pretty.command "using", Pretty.brk 1, Pretty.str "this:"] :: - map (Display.pretty_thm ctxt) facts)) ^ "\n"; + (Pretty.string_of o Pretty.block o Pretty.fbreaks) + (Pretty.block [Pretty.command "using", Pretty.brk 1, Pretty.str "this:"] :: + map (Display.pretty_thm ctxt) facts) ^ "\n"; val pr_goal = string_of_goal ctxt goal; in pr_header ^ pr_facts ^ pr_goal end);