mirror of
https://github.com/zoriya/applicative-getopt.git
synced 2026-06-02 10:45:26 +00:00
Minor fixes
This commit is contained in:
+3
-3
@@ -73,9 +73,9 @@ main = do
|
||||
Nothing -> exitWith (ExitFailure 84)
|
||||
where
|
||||
post :: Configuration -> [CellList] -> [CellList]
|
||||
post config = drop (start config)
|
||||
. runMaybe (Main.lines config) take
|
||||
. map (rotate $ move config)
|
||||
post config = runMaybe (Main.lines config) take
|
||||
. drop (start config)
|
||||
. map (rotate $ -move config)
|
||||
. map (align $ window config)
|
||||
|
||||
runMaybe :: Maybe a -> (a -> b -> b) -> b -> b
|
||||
|
||||
Reference in New Issue
Block a user