--- a/src/Pure/System/progress.scala Thu Nov 19 21:23:12 2020 +0100
+++ b/src/Pure/System/progress.scala Thu Nov 19 21:59:17 2020 +0100
@@ -32,7 +32,7 @@
def echo_warning(msg: String) { echo(Output.warning_text(msg)) }
def echo_error_message(msg: String) { echo(Output.error_message_text(msg)) }
- def echo_document(msg: String) { echo(Output.error_message_text(msg)) }
+ def echo_document(msg: String) { echo(msg) }
def timeit[A](message: String = "", enabled: Boolean = true)(e: => A): A =
Timing.timeit(message, enabled, echo)(e)