summaryrefslogtreecommitdiff
path: root/compiler/parser
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2013-02-01 14:14:59 +0000
committerIan Lynagh <ian@well-typed.com>2013-02-01 15:34:33 +0000
commit8760cf35f0603b939c34224fa391c8ee5a61e095 (patch)
treebfcc2a8e4912824990ce723964d4475e39f0dcb7 /compiler/parser
parentdc7549a170aa531c50f15383f39a856d2ad94d8e (diff)
downloadhaskell-8760cf35f0603b939c34224fa391c8ee5a61e095.tar.gz
Whitespace only
Diffstat (limited to 'compiler/parser')
-rw-r--r--compiler/parser/Parser.y.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/parser/Parser.y.pp b/compiler/parser/Parser.y.pp
index c552b6aec7..623ae79565 100644
--- a/compiler/parser/Parser.y.pp
+++ b/compiler/parser/Parser.y.pp
@@ -1789,12 +1789,12 @@ maybe_stmt :: { Maybe (LStmt RdrName (LHsExpr RdrName)) }
| {- nothing -} { Nothing }
stmt :: { LStmt RdrName (LHsExpr RdrName) }
- : qual { $1 }
+ : qual { $1 }
| 'rec' stmtlist { LL $ mkRecStmt (unLoc $2) }
qual :: { LStmt RdrName (LHsExpr RdrName) }
: pat '<-' exp { LL $ mkBindStmt $1 $3 }
- | exp { L1 $ mkBodyStmt $1 }
+ | exp { L1 $ mkBodyStmt $1 }
| 'let' binds { LL $ LetStmt (unLoc $2) }
-----------------------------------------------------------------------------