From f6fa79f02e58929fcb52d68e111274718d306e53 Mon Sep 17 00:00:00 2001 From: sof Date: Mon, 24 Nov 1997 20:34:53 +0000 Subject: [PATCH] [project @ 1997-11-24 20:34:53 by sof] Make monadic operators (>>) and (>>=) left-assoc (as per Report.) --- ghc/lib/ghc/PrelBase.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/lib/ghc/PrelBase.lhs b/ghc/lib/ghc/PrelBase.lhs index 7e780c9..87fd4d0 100644 --- a/ghc/lib/ghc/PrelBase.lhs +++ b/ghc/lib/ghc/PrelBase.lhs @@ -24,7 +24,7 @@ infixr 5 ++, : infix 4 ==, /=, <, <=, >=, > infixr 3 && infixr 2 || -infixr 1 >>, >>= +infixl 1 >>, >>= infixr 0 $ \end{code} -- 1.7.10.4