From: qrczak Date: Sun, 11 Feb 2001 09:36:00 +0000 (+0000) Subject: [project @ 2001-02-11 09:36:00 by qrczak] X-Git-Tag: Approximately_9120_patches~2689 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=ff7ae2dba4e7a68850e65afaca05f499457a7abe;p=ghc-hetmet.git [project @ 2001-02-11 09:36:00 by qrczak] Reverse the 'default' list. --- 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] }