From ff7ae2dba4e7a68850e65afaca05f499457a7abe Mon Sep 17 00:00:00 2001 From: qrczak Date: Sun, 11 Feb 2001 09:36:00 +0000 Subject: [PATCH] [project @ 2001-02-11 09:36:00 by qrczak] Reverse the 'default' list. --- ghc/compiler/parser/Parser.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/compiler/parser/Parser.y b/ghc/compiler/parser/Parser.y index 06b2ca6..5264cad 100644 --- a/ghc/compiler/parser/Parser.y +++ b/ghc/compiler/parser/Parser.y @@ -1,6 +1,6 @@ {- ----------------------------------------------------------------------------- -$Id: Parser.y,v 1.51 2001/01/30 12:13:34 simonmar Exp $ +$Id: Parser.y,v 1.52 2001/02/11 09:36:00 qrczak Exp $ Haskell grammar. @@ -535,7 +535,7 @@ inst_type :: { RdrNameHsType } : ctype {% checkInstType $1 } types0 :: { [RdrNameHsType] } - : types { $1 } + : types { reverse $1 } | {- empty -} { [] } types :: { [RdrNameHsType] } -- 1.7.10.4