[commit: ghc] master: Formatting only: fix alignment. (22e5b88)
Ian Lynagh
igloo at earth.li
Tue Jun 4 22:12:16 CEST 2013
Repository : http://darcs.haskell.org/ghc.git/
On branch : master
https://github.com/ghc/ghc/commit/22e5b884280c7c62bcea38491018d5a1ec9a7a14
>---------------------------------------------------------------
commit 22e5b884280c7c62bcea38491018d5a1ec9a7a14
Author: usrbincc <usrbincc at yahoo.com>
Date: Tue May 21 13:36:39 2013 -0400
Formatting only: fix alignment.
>---------------------------------------------------------------
ghc/InteractiveUI.hs | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/ghc/InteractiveUI.hs b/ghc/InteractiveUI.hs
index a6b08ea..452e5f1 100644
--- a/ghc/InteractiveUI.hs
+++ b/ghc/InteractiveUI.hs
@@ -1876,18 +1876,18 @@ setCmd "" = showOptions False
setCmd "-a" = showOptions True
setCmd str
= case getCmd str of
- Right ("args", rest) ->
+ Right ("args", rest) ->
case toArgs rest of
Left err -> liftIO (hPutStrLn stderr err)
Right args -> setArgs args
- Right ("prog", rest) ->
+ Right ("prog", rest) ->
case toArgs rest of
Right [prog] -> setProg prog
_ -> liftIO (hPutStrLn stderr "syntax: :set prog <progname>")
- Right ("prompt", rest) -> setPrompt $ dropWhile isSpace rest
+ Right ("prompt", rest) -> setPrompt $ dropWhile isSpace rest
Right ("prompt2", rest) -> setPrompt2 $ dropWhile isSpace rest
- Right ("editor", rest) -> setEditor $ dropWhile isSpace rest
- Right ("stop", rest) -> setStop $ dropWhile isSpace rest
+ Right ("editor", rest) -> setEditor $ dropWhile isSpace rest
+ Right ("stop", rest) -> setStop $ dropWhile isSpace rest
_ -> case toArgs str of
Left err -> liftIO (hPutStrLn stderr err)
Right wds -> setOptions wds
@@ -2067,12 +2067,12 @@ unsetOptions str
(other_opts, rest3) = partition (`elem` map fst defaulters) rest2
defaulters =
- [ ("args" , setArgs default_args)
- , ("prog" , setProg default_progname)
- , ("prompt", setPrompt default_prompt)
+ [ ("args" , setArgs default_args)
+ , ("prog" , setProg default_progname)
+ , ("prompt" , setPrompt default_prompt)
, ("prompt2", setPrompt2 default_prompt2)
- , ("editor", liftIO findEditor >>= setEditor)
- , ("stop" , setStop default_stop)
+ , ("editor" , liftIO findEditor >>= setEditor)
+ , ("stop" , setStop default_stop)
]
no_flag ('-':'f':rest) = return ("-fno-" ++ rest)
More information about the ghc-commits
mailing list