tuned;
authorwenzelm
Fri, 31 Oct 2014 22:48:00 +0100
changeset 58857 b0ccc7e1e7f3
parent 58856 4fced55fc5b7
child 58858 cc1e03929685
tuned;
src/Pure/System/message_channel.ML
--- a/src/Pure/System/message_channel.ML	Fri Oct 31 22:37:22 2014 +0100
+++ b/src/Pure/System/message_channel.ML	Fri Oct 31 22:48:00 2014 +0100
@@ -51,8 +51,7 @@
         [] => (flush channel; continue NONE)
       | msgs => received timeout msgs)
     and received _ (NONE :: _) = flush channel
-      | received timeout (SOME msg :: rest) =
-          (output_message channel msg; received flush_timeout rest)
+      | received _ (SOME msg :: rest) = (output_message channel msg; received flush_timeout rest)
       | received timeout [] = continue timeout;
   in fn () => continue NONE end;