@@ -287,23 +287,23 @@ fun = do
287287 ((4 0 ) 4 )
288288 ((5 0 ) 2 4 ))
289289
290- (hindent-test " 16* Lambda and a \" do\" block" "
291- fun = \x -> do"
290+ (hindent-test " 16 Lambda and a \" do\" block" "
291+ fun = \\ x -> do"
292292 ((1 0 ) 0 )
293293 ((2 0 ) 2 ))
294294
295- (hindent-test " 16a* A lambda" "
296- fun = \x ->"
295+ (hindent-test " 16a A lambda" "
296+ fun = \\ x ->"
297297 ((1 0 ) 0 )
298298 ((2 0 ) 2 ))
299299
300- (hindent-test " 16u* Lambda and a do block" "
301- fun = \x → do"
300+ (hindent-test " 16u Lambda and a do block" "
301+ fun = \\ x → do"
302302 ((1 0 ) 0 )
303303 ((2 0 ) 2 ))
304304
305- (hindent-test " 16au* A lambda" "
306- fun = \x →"
305+ (hindent-test " 16au A lambda" "
306+ fun = \\ x →"
307307 ((1 0 ) 0 )
308308 ((2 0 ) 2 ))
309309
@@ -647,9 +647,9 @@ az = Projection
647647"
648648 ((6 0 ) 2 ))
649649
650- (hindent-test " 35a* parse a backslash properly" "
650+ (hindent-test " 35a parse a backslash properly" "
651651az = Projection
652- { unproject = \x -> do
652+ { unproject = \\ x -> do
653653 case x of
654654 _ -> return
655655 , maxR = pi
@@ -665,25 +665,25 @@ tokOpenTag =
665665"
666666 ((4 0 ) 7 ))
667667(hindent-test " 37* Indent continuation lines in multiline string literal" "
668- a = \" multiline\
668+ a = \" multiline\\
669669"
670670 ((2 0 ) 4 ))
671671
672- (hindent-test " 38* Indent in do block after multiline string literal" "
672+ (hindent-test " 38 Indent in do block after multiline string literal" "
673673s = do
674- a <- " multiline\
675- \ line 2"
674+ a <- \ " multiline\ \
675+ \\ line 2\ "
676676"
677- ((4 0 ) 0 2 4 ))
677+ ((4 0 ) 0 2 7 ))
678678
679- (hindent-test " 39* do not crash after two multiline literals in do block" "
679+ (hindent-test " 39 do not crash after two multiline literals in do block" "
680680servePost = do
681- a <- fun \" line 1\
682- \l ine 2\"
683- b <- queryT \" comma is important: , \
684- \ line 2 \"
681+ a <- fun \" line 1\\
682+ \\ line 2\"
683+ b <- queryT \" comma is important: , \\
684+ \\ line 2 \"
685685"
686- ((6 0 ) 0 2 4 ))
686+ ((6 0 ) 0 2 7 ))
687687
688688(hindent-test " 40 parse error in multiline tuple" "
689689a = ( 1
0 commit comments