# HG changeset patch # User wenzelm # Date 1460227088 -7200 # Node ID 79f41fbdf74ab39b75d7212f487b62a7592794cb # Parent d5e7a76ec1a62907d5145c6d04d71f497e85d99f clean message more thoroughly; diff -r d5e7a76ec1a6 -r 79f41fbdf74a src/Pure/General/output.scala --- a/src/Pure/General/output.scala Sat Apr 09 20:31:46 2016 +0200 +++ b/src/Pure/General/output.scala Sat Apr 09 20:38:08 2016 +0200 @@ -11,7 +11,7 @@ object Output { def clean_yxml(msg: String): String = - try { XML.content(YXML.parse_body(msg)) } + try { XML.content(Protocol_Message.clean_reports(YXML.parse_body(msg))) } catch { case ERROR(_) => msg } def writeln_text(msg: String): String = clean_yxml(msg)