File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3504,7 +3504,7 @@ showsBars :: [String] -> ShowS
3504
3504
showsBars bars
3505
3505
= case bars of
3506
3506
[] -> id
3507
- _ -> showString (concat (reverse ( tail bars) )) . showString node
3507
+ _ : tl -> showString (concat (reverse tl )) . showString node
3508
3508
3509
3509
node :: String
3510
3510
node = " +--"
Original file line number Diff line number Diff line change @@ -1299,7 +1299,7 @@ showWide wide bars
1299
1299
1300
1300
showsBars :: [String ] -> ShowS
1301
1301
showsBars [] = id
1302
- showsBars bars = showString (concat (reverse ( tail bars) )) . showString node
1302
+ showsBars (_ : tl) = showString (concat (reverse tl )) . showString node
1303
1303
1304
1304
showsBitMap :: Word -> ShowS
1305
1305
showsBitMap = showString . showBitMap
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ showsBars :: [String] -> ShowS
91
91
showsBars bars
92
92
= case bars of
93
93
[] -> id
94
- _ -> showString (concat (reverse ( tail bars) )) . showString node
94
+ _ : tl -> showString (concat (reverse tl )) . showString node
95
95
96
96
node :: String
97
97
node = " +--"
Original file line number Diff line number Diff line change @@ -1977,7 +1977,7 @@ showsBars :: [String] -> ShowS
1977
1977
showsBars bars
1978
1978
= case bars of
1979
1979
[] -> id
1980
- _ -> showString (concat (reverse ( tail bars) )) . showString node
1980
+ _ : tl -> showString (concat (reverse tl )) . showString node
1981
1981
1982
1982
node :: String
1983
1983
node = " +--"
You can’t perform that action at this time.
0 commit comments